diff --git a/.github/FUNDING.yml b/.github/FUNDING.yaml similarity index 100% rename from .github/FUNDING.yml rename to .github/FUNDING.yaml diff --git a/.github/workflows/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md similarity index 100% rename from .github/workflows/ISSUE_TEMPLATE/bug_report.md rename to .github/ISSUE_TEMPLATE/bug_report.md diff --git a/.github/workflows/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md similarity index 100% rename from .github/workflows/ISSUE_TEMPLATE/feature_request.md rename to .github/ISSUE_TEMPLATE/feature_request.md diff --git a/.github/workflows/build.yml b/.github/workflows/build.yaml similarity index 92% rename from .github/workflows/build.yml rename to .github/workflows/build.yaml index 1941519..6448383 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yaml @@ -6,9 +6,8 @@ name: build on: push: - branches: - - 1.[0-9]+ - - 1.[0-9]+.[0-9]+ + tags: + - v[0-9]+.[0-9]+.[0-9]+* pull_request: branches: - 1.[0-9]+ @@ -20,7 +19,6 @@ jobs: matrix: # Use these Java versions java: [ - 16, # Minimum supported by Minecraft 17, # Current Java LTS ] # and run on both Linux and Windows diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml new file mode 100644 index 0000000..ea84115 --- /dev/null +++ b/.github/workflows/publish.yaml @@ -0,0 +1,48 @@ +name: publish +on: + push: + tags: + - v[0-9]+.[0-9]+.[0-9]+* + +jobs: + publish: + runs-on: ubuntu-latest + env: + JAVA_VERSION: 17 + + steps: + - name: checkout repository + uses: actions/checkout@v2 + + - name: checkout mcmod repository + uses: actions/checkout@v2 + with: + repository: Aton-Kish/mcmod + ref: maven + token: ${{ secrets.API_TOKEN_GITHUB }} + path: build/maven + + - name: validate gradle wrapper + uses: gradle/wrapper-validation-action@v1 + + - name: setup jdk ${{ env.JAVA_VERSION }} + uses: actions/setup-java@v1 + with: + java-version: ${{ env.JAVA_VERSION }} + + - name: make gradle wrapper executable + run: chmod +x ./gradlew + + - name: publish + run: ./gradlew publish + + - name: push to mcmod repository + uses: cpina/github-action-push-to-another-repository@main + env: + API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }} + with: + source-directory: build/maven + destination-github-username: Aton-Kish + destination-repository-name: mcmod + user-email: 38515249+Aton-Kish@users.noreply.github.com + target-branch: maven diff --git a/README.md b/README.md index 85cd916..354013b 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ ![Mod Environment](https://img.shields.io/static/v1?label=environment&message=client%2Fserver&color=yellow) [![Downloads](https://raw.githubusercontent.com/Aton-Kish/mcmod-stats/main/reinforced-shulker-boxes/downloads.svg)](https://www.curseforge.com/minecraft/mc-mods/reinforced-shulker-boxes) [![MIT License](https://img.shields.io/static/v1?label=licence&message=MIT&color=blue)](./LICENSE) -[![build](https://github.com/Aton-Kish/reinforced-shulker-boxes/actions/workflows/build.yml/badge.svg?branch=1.17)](https://github.com/Aton-Kish/reinforced-shulker-boxes/actions/workflows/build.yml?query=branch:1.17) +[![build](https://github.com/Aton-Kish/reinforced-shulker-boxes/actions/workflows/build.yaml/badge.svg?branch=1.17)](https://github.com/Aton-Kish/reinforced-shulker-boxes/actions/workflows/build.yaml?query=branch:1.17) # Reinforced Shulker Boxes @@ -45,6 +45,34 @@ The Reinforced Shulker Boxes mod adds reinforced shulker boxes. Dyed reinforced shulker boxes can be undyed using a cauldron. +## Configure + +[The Reinforced Core lib](https://github.com/Aton-Kish/reinforced-core) has been integrated with [Mod Menu](https://www.curseforge.com/minecraft/mc-mods/modmenu) since version 3.0.0. + +![Mod Menu](./images/modmenu/modmenu.png) + +### Screen Type + +_Available in Reinforced Shulker Boxes mod version 2.1.0+._ + +Screen type is `SINGLE` or `SCROLL`. (default: `SINGLE`) + +| `SINGLE` screen | `SCROLL` screen | +| --------------------------------------------- | ---------------------------------------------- | +| ![Single Screen](./images/modmenu/single.png) | ![Scroll Screen](./images/modmenu/scroll6.png) | + +### Scroll Screen + +#### Rows + +_Available in Reinforced Shulker Boxes mod version 2.1.0+._ + +Rows is an integer in the range from `6` to `9`. (default: `6`) + +| Rows: `6` | Rows: `9` | +| ------------------------------------------------------ | ------------------------------------------------------ | +| ![Scroll Screen: 6 rows](./images/modmenu/scroll6.png) | ![Scroll Screen: 9 rows](./images/modmenu/scroll9.png) | + ## License The Reinforced Shulker Boxes mod is licensed under the MIT License, see [LICENSE](./LICENSE). diff --git a/build.gradle b/build.gradle index 36f2b9c..b420d5f 100644 --- a/build.gradle +++ b/build.gradle @@ -1,5 +1,5 @@ plugins { - id 'fabric-loom' version '0.10-SNAPSHOT' + id 'fabric-loom' version '0.12-SNAPSHOT' id 'maven-publish' } @@ -17,29 +17,29 @@ repositories { // See https://docs.gradle.org/current/userguide/declaring_repositories.html // for more information about repositories. - // Reinforced Core + // Reinforced Storage maven { url "https://raw.githubusercontent.com/Aton-Kish/mcmod/maven" } - // Quick Shulker + // ModMenu (Reinforced Core deps) maven { - url "https://maven.kyrptonaught.dev" + url "https://maven.terraformersmc.com/releases/" } - // Shulker Box Tooltip + // Cloth Config (Reinforced Core deps) maven { - url "https://maven.misterpemodder.com/libs-release" + url "https://maven.shedaniel.me/" } - // Mod Menu (Shulker Box Tooltip deps) + // Quick Shulker maven { - url "https://maven.terraformersmc.com/releases/" + url "https://maven.kyrptonaught.dev" } - // Cloth Config (Shulker Box Tooltip deps) + // Shulker Box Tooltip maven { - url "https://maven.shedaniel.me" + url "https://maven.misterpemodder.com/libs-release" } // Fabric ASM (Shulker Box Tooltip deps) @@ -61,6 +61,9 @@ dependencies { modImplementation "atonkish.reinfcore:reinforced-core:${project.reinforced_core_version}" include "atonkish.reinfcore:reinforced-core:${project.reinforced_core_version}" + // Reinforced Chests + modImplementation "atonkish.reinfchest:reinforced-chests:${project.reinforced_chests_version}" + // Quick Shulker modImplementation "net.kyrptonaught:quickshulker:${project.quick_shulker_version}" diff --git a/gradle.properties b/gradle.properties index a886e9a..aedf628 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,15 +5,16 @@ org.gradle.jvmargs=-Xmx1G # check these on https://fabricmc.net/versions.html minecraft_version=1.17.1 yarn_mappings=1.17.1+build.65 - loader_version=0.12.12 + loader_version=0.14.9 # Mod Properties - mod_version = 1.1.8+1.17 + mod_version = 2.1.1+1.17 maven_group = atonkish.reinfshulker archives_base_name = reinforced-shulker-boxes # Dependencies fabric_version=0.46.1+1.17 - reinforced_core_version=1.1.3+1.17 + reinforced_core_version=3.0.2+1.17 + reinforced_chests_version=2.1.2+1.17 quick_shulker_version=1.3.0-1.17 - shulker_box_tooltip_version=3.0.4+1.17.1 + shulker_box_tooltip_version=3.0.6+1.17.1 diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index e750102..41dfb87 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-7.3-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/images/modmenu/modmenu.png b/images/modmenu/modmenu.png new file mode 100644 index 0000000..b13baf0 Binary files /dev/null and b/images/modmenu/modmenu.png differ diff --git a/images/modmenu/scroll6.png b/images/modmenu/scroll6.png new file mode 100644 index 0000000..0a83516 Binary files /dev/null and b/images/modmenu/scroll6.png differ diff --git a/images/modmenu/scroll9.png b/images/modmenu/scroll9.png new file mode 100644 index 0000000..e3a55c1 Binary files /dev/null and b/images/modmenu/scroll9.png differ diff --git a/images/modmenu/single.png b/images/modmenu/single.png new file mode 100644 index 0000000..d87737e Binary files /dev/null and b/images/modmenu/single.png differ diff --git a/settings.gradle b/settings.gradle index f91a4fe..b02216b 100644 --- a/settings.gradle +++ b/settings.gradle @@ -4,6 +4,7 @@ pluginManagement { name = 'Fabric' url = 'https://maven.fabricmc.net/' } + mavenCentral() gradlePluginPortal() } } diff --git a/src/main/java/atonkish/reinfshulker/ReinforcedShulkerBoxesClientMod.java b/src/main/java/atonkish/reinfshulker/ReinforcedShulkerBoxesClientMod.java index 5054f2f..45bd44f 100644 --- a/src/main/java/atonkish/reinfshulker/ReinforcedShulkerBoxesClientMod.java +++ b/src/main/java/atonkish/reinfshulker/ReinforcedShulkerBoxesClientMod.java @@ -1,52 +1,77 @@ package atonkish.reinfshulker; -import java.util.HashMap; - -import net.fabricmc.api.ClientModInitializer; import net.fabricmc.api.EnvType; import net.fabricmc.api.Environment; import net.fabricmc.fabric.api.client.rendering.v1.BlockEntityRendererRegistry; import net.fabricmc.fabric.api.client.rendering.v1.BuiltinItemRendererRegistry; +import net.fabricmc.loader.api.FabricLoader; import net.minecraft.block.Block; import net.minecraft.block.entity.BlockEntity; -import net.minecraft.block.entity.BlockEntityType; import net.minecraft.client.MinecraftClient; import net.minecraft.client.render.VertexConsumerProvider; import net.minecraft.client.render.model.json.ModelTransformation; import net.minecraft.client.util.math.MatrixStack; import net.minecraft.item.ItemStack; -import net.minecraft.util.DyeColor; import net.minecraft.util.math.BlockPos; +import atonkish.reinfcore.api.ReinforcedCoreClientModInitializer; +import atonkish.reinfcore.api.ReinforcedCoreClientRegistry; import atonkish.reinfcore.util.ReinforcingMaterial; +import atonkish.reinfshulker.api.ReinforcedShulkerBoxesClientModInitializer; +import atonkish.reinfshulker.api.ReinforcedShulkerBoxesClientRegistry; import atonkish.reinfshulker.block.ModBlocks; -import atonkish.reinfshulker.block.ReinforcedShulkerBoxBlock; import atonkish.reinfshulker.block.entity.ModBlockEntityType; import atonkish.reinfshulker.block.entity.ReinforcedShulkerBoxBlockEntity; import atonkish.reinfshulker.client.render.block.entity.ReinforcedShulkerBoxBlockEntityRenderer; +import atonkish.reinfshulker.util.ReinforcingMaterialSettings; @Environment(EnvType.CLIENT) -public class ReinforcedShulkerBoxesClientMod implements ClientModInitializer { +public class ReinforcedShulkerBoxesClientMod implements ReinforcedCoreClientModInitializer { @Override - public void onInitializeClient() { - // Block Entity Renderer - registerBlockEntityRenderer(); + public void onInitializeReinforcedCoreClient() { + // init Reinforced Core + initializeReinforcedCoreClient(); + + // init Reinforced Shulker Boxes + initializeReinforcedShulkerBoxesClient(); - // Item Renderer - registerBuiltinItemRenderer(); + // entrypoint: "reinfshulkerclient" + FabricLoader.getInstance() + .getEntrypoints(ReinforcedShulkerBoxesMod.MOD_ID + "client", + ReinforcedShulkerBoxesClientModInitializer.class) + .forEach(ReinforcedShulkerBoxesClientModInitializer::onInitializeReinforcedShulkerBoxesClient); } - private static void registerBlockEntityRenderer() { - for (BlockEntityType blockEntityType : ModBlockEntityType.REINFORCED_SHULKER_BOX_MAP - .values()) { - BlockEntityRendererRegistry.register(blockEntityType, ReinforcedShulkerBoxBlockEntityRenderer::new); + private static void initializeReinforcedCoreClient() { + for (ReinforcingMaterialSettings materialSettings : ReinforcingMaterialSettings.values()) { + ReinforcingMaterial material = materialSettings.getMaterial(); + + // Reinforced Storage Screen + ReinforcedCoreClientRegistry.registerMaterialShulkerBoxScreen(material); } } - private static void registerBuiltinItemRenderer() { - for (HashMap materialShulkerBoxMap : ModBlocks.REINFORCED_SHULKER_BOX_MAP.values()) { - for (Block block : materialShulkerBoxMap.values()) { - ReinforcingMaterial material = ((ReinforcedShulkerBoxBlock) block).getMaterial(); + private static void initializeReinforcedShulkerBoxesClient() { + for (ReinforcingMaterialSettings materialSettings : ReinforcingMaterialSettings.values()) { + ReinforcingMaterial material = materialSettings.getMaterial(); + + // Textured Render Layers + ReinforcedShulkerBoxesClientRegistry.registerMaterialAtlasTexture(ReinforcedShulkerBoxesMod.MOD_ID, + material); + ReinforcedShulkerBoxesClientRegistry.registerMaterialRenderLayer(ReinforcedShulkerBoxesMod.MOD_ID, + material); + ReinforcedShulkerBoxesClientRegistry.registerMaterialDefaultSprite(ReinforcedShulkerBoxesMod.MOD_ID, + material); + ReinforcedShulkerBoxesClientRegistry.registerMaterialColoringSprites(ReinforcedShulkerBoxesMod.MOD_ID, + material); + + // Block Entity Renderer + BlockEntityRendererRegistry + .register(ModBlockEntityType.REINFORCED_SHULKER_BOX_MAP.get(material), + ReinforcedShulkerBoxBlockEntityRenderer::new); + + // Item Renderer + for (Block block : ModBlocks.REINFORCED_SHULKER_BOX_MAP.get(material).values()) { BuiltinItemRendererRegistry.INSTANCE.register(block, (ItemStack stack, ModelTransformation.Mode mode, MatrixStack matrices, VertexConsumerProvider vertexConsumers, int light, int overlay) -> { BlockEntity blockEntity = new ReinforcedShulkerBoxBlockEntity(material, BlockPos.ORIGIN, diff --git a/src/main/java/atonkish/reinfshulker/ReinforcedShulkerBoxesMod.java b/src/main/java/atonkish/reinfshulker/ReinforcedShulkerBoxesMod.java index 0d8d812..2d667e9 100644 --- a/src/main/java/atonkish/reinfshulker/ReinforcedShulkerBoxesMod.java +++ b/src/main/java/atonkish/reinfshulker/ReinforcedShulkerBoxesMod.java @@ -1,33 +1,46 @@ package atonkish.reinfshulker; import net.fabricmc.api.ModInitializer; +import net.fabricmc.loader.api.FabricLoader; +import net.minecraft.util.DyeColor; -import org.apache.logging.log4j.LogManager; -import org.apache.logging.log4j.Logger; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; -import atonkish.reinfshulker.block.ModBlocks; +import atonkish.reinfcore.api.ReinforcedCoreModInitializer; +import atonkish.reinfcore.api.ReinforcedCoreRegistry; +import atonkish.reinfcore.util.ReinforcingMaterial; +import atonkish.reinfchest.ReinforcedChestsMod; +import atonkish.reinfshulker.api.ReinforcedShulkerBoxesModInitializer; +import atonkish.reinfshulker.api.ReinforcedShulkerBoxesRegistry; import atonkish.reinfshulker.block.cauldron.ModCauldronBehavior; import atonkish.reinfshulker.block.dispenser.ModDispenserBehavior; -import atonkish.reinfshulker.block.entity.ModBlockEntityType; -import atonkish.reinfshulker.item.ModItems; import atonkish.reinfshulker.recipe.ModRecipeSerializer; -import atonkish.reinfshulker.stat.ModStats; +import atonkish.reinfshulker.util.ReinforcingMaterialSettings; -public class ReinforcedShulkerBoxesMod implements ModInitializer { +public class ReinforcedShulkerBoxesMod implements ModInitializer, ReinforcedCoreModInitializer { public static final String MOD_ID = "reinfshulker"; - public static final Logger LOGGER = LogManager.getLogger(MOD_ID); + public static final Logger LOGGER = LoggerFactory.getLogger(MOD_ID); + + public static boolean IS_REINFCHEST_LOADED = false; @Override public void onInitialize() { - // Stats - ModStats.init(); + IS_REINFCHEST_LOADED = FabricLoader.getInstance().isModLoaded(ReinforcedChestsMod.MOD_ID); + } + + @Override + public void onInitializeReinforcedCore() { + // init Reinforced Core + initializeReinforcedCore(); - // Blocks - ModBlocks.init(); - ModBlockEntityType.init(); + // init Reinforced Shulker Boxes + initializeReinforcedShulkerBoxes(); - // Items - ModItems.init(); + // entrypoint: "reinfshulker" + FabricLoader.getInstance() + .getEntrypoints(MOD_ID, ReinforcedShulkerBoxesModInitializer.class) + .forEach(ReinforcedShulkerBoxesModInitializer::onInitializeReinforcedShulkerBoxes); // Recipe Serializer ModRecipeSerializer.init(); @@ -36,4 +49,47 @@ public void onInitialize() { ModCauldronBehavior.init(); ModDispenserBehavior.init(); } + + private static void initializeReinforcedCore() { + for (ReinforcingMaterialSettings materialSettings : ReinforcingMaterialSettings.values()) { + ReinforcingMaterial material = materialSettings.getMaterial(); + + // Reinforced Storage Screen Model + ReinforcedCoreRegistry.registerMaterialSingleBlockScreenModel(material); + + // Reinforced Storage Screen Handler + ReinforcedCoreRegistry.registerMaterialShulkerBoxScreenHandler(material); + } + } + + private static void initializeReinforcedShulkerBoxes() { + for (ReinforcingMaterialSettings materialSettings : ReinforcingMaterialSettings.values()) { + ReinforcingMaterial material = materialSettings.getMaterial(); + + // Stats + ReinforcedShulkerBoxesRegistry.registerMaterialCleanStat(MOD_ID, material); + ReinforcedShulkerBoxesRegistry.registerMaterialOpenStat(MOD_ID, material); + + // Blocks + ReinforcedShulkerBoxesRegistry.registerMaterialDyeColorBlock(MOD_ID, material, (DyeColor) null, + materialSettings.getBlockSettings()); + for (DyeColor color : DyeColor.values()) { + ReinforcedShulkerBoxesRegistry.registerMaterialDyeColorBlock(MOD_ID, material, color, + materialSettings.getBlockSettings()); + } + ReinforcedShulkerBoxesRegistry.registerMaterialBlockEntityType(MOD_ID, material); + + // Items + ReinforcedShulkerBoxesRegistry.registerMaterialDyeColorItem(MOD_ID, material, (DyeColor) null, + materialSettings.getItemSettings()); + for (DyeColor color : DyeColor.values()) { + ReinforcedShulkerBoxesRegistry.registerMaterialDyeColorItem(MOD_ID, material, color, + materialSettings.getItemSettings()); + } + } + + // Item Group Icon + ReinforcedShulkerBoxesRegistry.registerMaterialDyeColorItemGroupIcon(MOD_ID, + ReinforcingMaterialSettings.NETHERITE.getMaterial(), (DyeColor) null); + } } diff --git a/src/main/java/atonkish/reinfshulker/api/ReinforcedShulkerBoxesClientModInitializer.java b/src/main/java/atonkish/reinfshulker/api/ReinforcedShulkerBoxesClientModInitializer.java new file mode 100644 index 0000000..d6d39f2 --- /dev/null +++ b/src/main/java/atonkish/reinfshulker/api/ReinforcedShulkerBoxesClientModInitializer.java @@ -0,0 +1,9 @@ +package atonkish.reinfshulker.api; + +import net.fabricmc.api.EnvType; +import net.fabricmc.api.Environment; + +@Environment(EnvType.CLIENT) +public interface ReinforcedShulkerBoxesClientModInitializer { + void onInitializeReinforcedShulkerBoxesClient(); +} diff --git a/src/main/java/atonkish/reinfshulker/api/ReinforcedShulkerBoxesClientRegistry.java b/src/main/java/atonkish/reinfshulker/api/ReinforcedShulkerBoxesClientRegistry.java new file mode 100644 index 0000000..8696959 --- /dev/null +++ b/src/main/java/atonkish/reinfshulker/api/ReinforcedShulkerBoxesClientRegistry.java @@ -0,0 +1,32 @@ +package atonkish.reinfshulker.api; + +import java.util.List; + +import net.fabricmc.api.EnvType; +import net.fabricmc.api.Environment; +import net.minecraft.client.render.RenderLayer; +import net.minecraft.client.util.SpriteIdentifier; +import net.minecraft.util.Identifier; + +import atonkish.reinfcore.util.ReinforcingMaterial; +import atonkish.reinfshulker.client.render.ModTexturedRenderLayers; + +@Environment(EnvType.CLIENT) +public class ReinforcedShulkerBoxesClientRegistry { + public static Identifier registerMaterialAtlasTexture(String namespace, ReinforcingMaterial material) { + return ModTexturedRenderLayers.registerMaterialAtlasTexture(namespace, material); + } + + public static RenderLayer registerMaterialRenderLayer(String namespace, ReinforcingMaterial material) { + return ModTexturedRenderLayers.registerMaterialRenderLayer(material); + } + + public static SpriteIdentifier registerMaterialDefaultSprite(String namespace, ReinforcingMaterial material) { + return ModTexturedRenderLayers.registerMaterialDefaultSprite(namespace, material); + } + + public static List registerMaterialColoringSprites(String namespace, + ReinforcingMaterial material) { + return ModTexturedRenderLayers.registerMaterialColoringSprites(namespace, material); + } +} diff --git a/src/main/java/atonkish/reinfshulker/api/ReinforcedShulkerBoxesModInitializer.java b/src/main/java/atonkish/reinfshulker/api/ReinforcedShulkerBoxesModInitializer.java new file mode 100644 index 0000000..baa332e --- /dev/null +++ b/src/main/java/atonkish/reinfshulker/api/ReinforcedShulkerBoxesModInitializer.java @@ -0,0 +1,5 @@ +package atonkish.reinfshulker.api; + +public interface ReinforcedShulkerBoxesModInitializer { + void onInitializeReinforcedShulkerBoxes(); +} diff --git a/src/main/java/atonkish/reinfshulker/api/ReinforcedShulkerBoxesRegistry.java b/src/main/java/atonkish/reinfshulker/api/ReinforcedShulkerBoxesRegistry.java new file mode 100644 index 0000000..48a5ddb --- /dev/null +++ b/src/main/java/atonkish/reinfshulker/api/ReinforcedShulkerBoxesRegistry.java @@ -0,0 +1,44 @@ +package atonkish.reinfshulker.api; + +import net.minecraft.block.Block; +import net.minecraft.block.entity.BlockEntityType; +import net.minecraft.item.Item; +import net.minecraft.util.DyeColor; +import net.minecraft.util.Identifier; + +import atonkish.reinfcore.util.ReinforcingMaterial; +import atonkish.reinfshulker.block.ModBlocks; +import atonkish.reinfshulker.block.entity.ModBlockEntityType; +import atonkish.reinfshulker.block.entity.ReinforcedShulkerBoxBlockEntity; +import atonkish.reinfshulker.item.ModItems; +import atonkish.reinfshulker.stat.ModStats; + +public class ReinforcedShulkerBoxesRegistry { + public static Identifier registerMaterialCleanStat(String namespace, ReinforcingMaterial material) { + return ModStats.registerMaterialClean(namespace, material); + } + + public static Identifier registerMaterialOpenStat(String namespace, ReinforcingMaterial material) { + return ModStats.registerMaterialOpen(namespace, material); + } + + public static Block registerMaterialDyeColorBlock(String namespace, ReinforcingMaterial material, DyeColor color, + Block.Settings settings) { + return ModBlocks.registerMaterialDyeColor(namespace, material, color, settings); + } + + public static BlockEntityType registerMaterialBlockEntityType(String namespace, + ReinforcingMaterial material) { + return ModBlockEntityType.registerMaterial(namespace, material); + } + + public static Item registerMaterialDyeColorItem(String namespace, ReinforcingMaterial material, DyeColor color, + Item.Settings settings) { + return ModItems.registerMaterialDyeColor(material, color, settings); + } + + public static void registerMaterialDyeColorItemGroupIcon(String namespace, ReinforcingMaterial material, + DyeColor color) { + ModItems.registerMaterialDyeColorItemGroupIcon(material, color); + } +} diff --git a/src/main/java/atonkish/reinfshulker/block/ModBlocks.java b/src/main/java/atonkish/reinfshulker/block/ModBlocks.java index a78829d..f05de2d 100644 --- a/src/main/java/atonkish/reinfshulker/block/ModBlocks.java +++ b/src/main/java/atonkish/reinfshulker/block/ModBlocks.java @@ -1,76 +1,45 @@ package atonkish.reinfshulker.block; -import java.util.HashMap; +import java.util.LinkedHashMap; +import java.util.Map; -import net.fabricmc.fabric.api.object.builder.v1.block.FabricBlockSettings; -import net.minecraft.block.AbstractBlock; import net.minecraft.block.Block; -import net.minecraft.block.Material; -import net.minecraft.block.entity.BlockEntity; -import net.minecraft.block.entity.ShulkerBoxBlockEntity; -import net.minecraft.sound.BlockSoundGroup; import net.minecraft.util.DyeColor; import net.minecraft.util.Identifier; import net.minecraft.util.registry.Registry; import atonkish.reinfcore.util.ReinforcingMaterial; -import atonkish.reinfshulker.ReinforcedShulkerBoxesMod; public class ModBlocks { - public static final HashMap> REINFORCED_SHULKER_BOX_MAP; + public static final Map> REINFORCED_SHULKER_BOX_MAP = new LinkedHashMap<>(); + public static final Map> REINFORCED_SHULKER_BOX_SETTINGS_MAP = new LinkedHashMap<>(); - public static void init() { - } + public static Block registerMaterialDyeColor(String namespace, ReinforcingMaterial material, DyeColor color, + Block.Settings settings) { + if (!REINFORCED_SHULKER_BOX_SETTINGS_MAP.containsKey(material)) { + REINFORCED_SHULKER_BOX_SETTINGS_MAP.put(material, new LinkedHashMap<>()); + } - private static Block register(String id, Block block) { - return Registry.register(Registry.BLOCK, new Identifier(ReinforcedShulkerBoxesMod.MOD_ID, id), block); - } + if (!REINFORCED_SHULKER_BOX_MAP.containsKey(material)) { + REINFORCED_SHULKER_BOX_MAP.put(material, new LinkedHashMap<>()); + } - private static FabricBlockSettings createMaterialSettings(ReinforcingMaterial material) { - AbstractBlock.ContextPredicate contextPredicate = (state, world, pos) -> { - BlockEntity blockEntity = world.getBlockEntity(pos); - if (!(blockEntity instanceof ShulkerBoxBlockEntity)) { - return true; - } else { - ShulkerBoxBlockEntity shulkerBoxBlockEntity = (ShulkerBoxBlockEntity) blockEntity; - return shulkerBoxBlockEntity.suffocates(); - } - }; - FabricBlockSettings settings = FabricBlockSettings.of(Material.SHULKER_BOX).dynamicBounds().nonOpaque() - .suffocates(contextPredicate).blockVision(contextPredicate); - switch (material) { - case COPPER: - settings = settings.strength(2.0F, 6.0F).sounds(BlockSoundGroup.COPPER); - break; - case IRON: - case GOLD: - case DIAMOND: - settings = settings.strength(2.0F, 6.0F).sounds(BlockSoundGroup.METAL); - break; - case NETHERITE: - settings = settings.strength(2.0F, 1200.0F).sounds(BlockSoundGroup.NETHERITE); - break; - default: - settings = settings.strength(2.0F); + if (!REINFORCED_SHULKER_BOX_SETTINGS_MAP.get(material).containsKey(color)) { + REINFORCED_SHULKER_BOX_SETTINGS_MAP.get(material).put(color, settings); } - return settings; - } - static { - REINFORCED_SHULKER_BOX_MAP = new HashMap<>(); - for (ReinforcingMaterial material : ReinforcingMaterial.values()) { - HashMap materialShulkerBoxMap = new HashMap<>(); - // Non-Color - Block nonColoredBlock = register(material.getName() + "_shulker_box", - new ReinforcedShulkerBoxBlock(material, (DyeColor) null, createMaterialSettings(material))); - materialShulkerBoxMap.put((DyeColor) null, nonColoredBlock); - // Color - for (DyeColor color : DyeColor.values()) { - Block coloredBlock = register(color.getName() + "_" + material.getName() + "_shulker_box", - new ReinforcedShulkerBoxBlock(material, color, createMaterialSettings(material))); - materialShulkerBoxMap.put(color, coloredBlock); - } - REINFORCED_SHULKER_BOX_MAP.put(material, materialShulkerBoxMap); + if (!REINFORCED_SHULKER_BOX_MAP.get(material).containsKey(color)) { + String id = color == null + ? material.getName() + "_shulker_box" + : color.getName() + "_" + material.getName() + "_shulker_box"; + Block block = register(namespace, id, new ReinforcedShulkerBoxBlock(material, color, settings)); + REINFORCED_SHULKER_BOX_MAP.get(material).put(color, block); } + + return REINFORCED_SHULKER_BOX_MAP.get(material).get(color); + } + + private static Block register(String namespace, String id, Block block) { + return Registry.register(Registry.BLOCK, new Identifier(namespace, id), block); } } diff --git a/src/main/java/atonkish/reinfshulker/block/ReinforcedShulkerBoxBlock.java b/src/main/java/atonkish/reinfshulker/block/ReinforcedShulkerBoxBlock.java index 3cd765d..9eec362 100644 --- a/src/main/java/atonkish/reinfshulker/block/ReinforcedShulkerBoxBlock.java +++ b/src/main/java/atonkish/reinfshulker/block/ReinforcedShulkerBoxBlock.java @@ -38,10 +38,12 @@ public ReinforcedShulkerBoxBlock(ReinforcingMaterial material, @Nullable DyeColo this.material = material; } + @Override public BlockEntity createBlockEntity(BlockPos pos, BlockState state) { return new ReinforcedShulkerBoxBlockEntity(this.material, this.getColor(), pos, state); } + @Override @Nullable public BlockEntityTicker getTicker(World world, BlockState state, BlockEntityType type) { @@ -49,6 +51,7 @@ public BlockEntityTicker getTicker(World world, Block ReinforcedShulkerBoxBlockEntity::tick); } + @Override public ActionResult onUse(BlockState state, World world, BlockPos pos, PlayerEntity player, Hand hand, BlockHitResult hit) { if (world.isClient) { @@ -82,6 +85,7 @@ private static boolean canOpen(BlockState state, World world, BlockPos pos, Shul } } + @Override public void onBreak(World world, BlockPos pos, BlockState state, PlayerEntity player) { BlockEntity blockEntity = world.getBlockEntity(pos); if (blockEntity instanceof ReinforcedShulkerBoxBlockEntity) { diff --git a/src/main/java/atonkish/reinfshulker/block/cauldron/ModCauldronBehavior.java b/src/main/java/atonkish/reinfshulker/block/cauldron/ModCauldronBehavior.java index 13de9d3..2698570 100644 --- a/src/main/java/atonkish/reinfshulker/block/cauldron/ModCauldronBehavior.java +++ b/src/main/java/atonkish/reinfshulker/block/cauldron/ModCauldronBehavior.java @@ -2,7 +2,6 @@ import it.unimi.dsi.fastutil.objects.Object2ObjectOpenHashMap; -import java.util.HashMap; import java.util.Map; import net.minecraft.block.Block; @@ -59,7 +58,7 @@ static Object2ObjectOpenHashMap createMap() { }; CLEAN_REINFORCED_SHULKER_BOX_MAP = createMap(); - for (HashMap materialShulkerBoxMap : ModItems.REINFORCED_SHULKER_BOX_MAP.values()) { + for (Map materialShulkerBoxMap : ModItems.REINFORCED_SHULKER_BOX_MAP.values()) { for (DyeColor color : DyeColor.values()) { CLEAN_REINFORCED_SHULKER_BOX_MAP.put(materialShulkerBoxMap.get(color), CLEAN_REINFORCED_SHULKER_BOX); } diff --git a/src/main/java/atonkish/reinfshulker/block/dispenser/ModDispenserBehavior.java b/src/main/java/atonkish/reinfshulker/block/dispenser/ModDispenserBehavior.java index 58fcb82..cab9e76 100644 --- a/src/main/java/atonkish/reinfshulker/block/dispenser/ModDispenserBehavior.java +++ b/src/main/java/atonkish/reinfshulker/block/dispenser/ModDispenserBehavior.java @@ -1,6 +1,6 @@ package atonkish.reinfshulker.block.dispenser; -import java.util.HashMap; +import java.util.Map; import net.minecraft.block.DispenserBlock; import net.minecraft.block.dispenser.BlockPlacementDispenserBehavior; @@ -11,7 +11,7 @@ public interface ModDispenserBehavior { public static void init() { - for (HashMap materialShulkerBoxMap : ModItems.REINFORCED_SHULKER_BOX_MAP.values()) { + for (Map materialShulkerBoxMap : ModItems.REINFORCED_SHULKER_BOX_MAP.values()) { for (Item item : materialShulkerBoxMap.values()) { DispenserBlock.registerBehavior(item, new BlockPlacementDispenserBehavior()); } diff --git a/src/main/java/atonkish/reinfshulker/block/entity/BlockEntityInterface.java b/src/main/java/atonkish/reinfshulker/block/entity/BlockEntityInterface.java deleted file mode 100644 index d153a3c..0000000 --- a/src/main/java/atonkish/reinfshulker/block/entity/BlockEntityInterface.java +++ /dev/null @@ -1,7 +0,0 @@ -package atonkish.reinfshulker.block.entity; - -import net.minecraft.block.entity.BlockEntityType; - -public interface BlockEntityInterface { - public void setType(BlockEntityType type); -} diff --git a/src/main/java/atonkish/reinfshulker/block/entity/ModBlockEntityType.java b/src/main/java/atonkish/reinfshulker/block/entity/ModBlockEntityType.java index 2bdeaf6..74d43f6 100644 --- a/src/main/java/atonkish/reinfshulker/block/entity/ModBlockEntityType.java +++ b/src/main/java/atonkish/reinfshulker/block/entity/ModBlockEntityType.java @@ -1,6 +1,7 @@ package atonkish.reinfshulker.block.entity; -import java.util.HashMap; +import java.util.LinkedHashMap; +import java.util.Map; import net.fabricmc.fabric.api.object.builder.v1.block.entity.FabricBlockEntityTypeBuilder; import net.minecraft.block.Block; @@ -11,18 +12,28 @@ import net.minecraft.util.registry.Registry; import atonkish.reinfcore.util.ReinforcingMaterial; -import atonkish.reinfshulker.ReinforcedShulkerBoxesMod; import atonkish.reinfshulker.block.ModBlocks; public class ModBlockEntityType { - public static final HashMap> REINFORCED_SHULKER_BOX_MAP; + public static final Map> REINFORCED_SHULKER_BOX_MAP = new LinkedHashMap<>(); - public static void init() { + public static BlockEntityType registerMaterial(String namespace, + ReinforcingMaterial material) { + if (!REINFORCED_SHULKER_BOX_MAP.containsKey(material)) { + String id = material.getName() + "_shulker_box"; + Block[] blocks = ModBlocks.REINFORCED_SHULKER_BOX_MAP.get(material).values().toArray(new Block[0]); + FabricBlockEntityTypeBuilder builder = FabricBlockEntityTypeBuilder + .create(createBlockEntityTypeFactory(material), blocks); + BlockEntityType blockEntityType = create(namespace, id, builder); + REINFORCED_SHULKER_BOX_MAP.put(material, blockEntityType); + } + + return REINFORCED_SHULKER_BOX_MAP.get(material); } - private static BlockEntityType create(String id, + private static BlockEntityType create(String namespace, String id, FabricBlockEntityTypeBuilder builder) { - return Registry.register(Registry.BLOCK_ENTITY_TYPE, new Identifier(ReinforcedShulkerBoxesMod.MOD_ID, id), + return Registry.register(Registry.BLOCK_ENTITY_TYPE, new Identifier(namespace, id), builder.build(null)); } @@ -31,15 +42,4 @@ private static FabricBlockEntityTypeBuilder.Factory new ReinforcedShulkerBoxBlockEntity(material, blockPos, blockState); } - - static { - REINFORCED_SHULKER_BOX_MAP = new HashMap<>(); - for (ReinforcingMaterial material : ReinforcingMaterial.values()) { - Block[] blocks = ModBlocks.REINFORCED_SHULKER_BOX_MAP.get(material).values().toArray(new Block[0]); - BlockEntityType blockEntityType = create( - material.getName() + "_shulker_box", - FabricBlockEntityTypeBuilder.create(createBlockEntityTypeFactory(material), blocks)); - REINFORCED_SHULKER_BOX_MAP.put(material, blockEntityType); - } - } } diff --git a/src/main/java/atonkish/reinfshulker/block/entity/ReinforcedShulkerBoxBlockEntity.java b/src/main/java/atonkish/reinfshulker/block/entity/ReinforcedShulkerBoxBlockEntity.java index 4c182c2..918044e 100644 --- a/src/main/java/atonkish/reinfshulker/block/entity/ReinforcedShulkerBoxBlockEntity.java +++ b/src/main/java/atonkish/reinfshulker/block/entity/ReinforcedShulkerBoxBlockEntity.java @@ -3,6 +3,7 @@ import java.util.stream.IntStream; import net.minecraft.block.BlockState; +import net.minecraft.block.entity.BlockEntityType; import net.minecraft.block.entity.ShulkerBoxBlockEntity; import net.minecraft.entity.player.PlayerInventory; import net.minecraft.item.ItemStack; @@ -18,7 +19,7 @@ import atonkish.reinfcore.screen.ReinforcedStorageScreenHandler; import atonkish.reinfcore.util.ReinforcingMaterial; -import atonkish.reinfshulker.ReinforcedShulkerBoxesMod; +import atonkish.reinfshulker.mixin.BlockEntityAccessor; public class ReinforcedShulkerBoxBlockEntity extends ShulkerBoxBlockEntity { private final ReinforcingMaterial cachedMaterial; @@ -26,23 +27,25 @@ public class ReinforcedShulkerBoxBlockEntity extends ShulkerBoxBlockEntity { public ReinforcedShulkerBoxBlockEntity(ReinforcingMaterial material, @Nullable DyeColor color, BlockPos pos, BlockState state) { super(color, pos, state); - ((BlockEntityInterface) this).setType(ModBlockEntityType.REINFORCED_SHULKER_BOX_MAP.get(material)); + ((BlockEntityAccessor) this).setType(ModBlockEntityType.REINFORCED_SHULKER_BOX_MAP.get(material)); this.setInvStackList(DefaultedList.ofSize(material.getSize(), ItemStack.EMPTY)); this.cachedMaterial = material; } public ReinforcedShulkerBoxBlockEntity(ReinforcingMaterial material, BlockPos pos, BlockState state) { super(pos, state); - ((BlockEntityInterface) this).setType(ModBlockEntityType.REINFORCED_SHULKER_BOX_MAP.get(material)); + ((BlockEntityAccessor) this).setType(ModBlockEntityType.REINFORCED_SHULKER_BOX_MAP.get(material)); this.setInvStackList(DefaultedList.ofSize(material.getSize(), ItemStack.EMPTY)); this.cachedMaterial = material; } + @Override protected Text getContainerName() { - return new TranslatableText( - "container." + ReinforcedShulkerBoxesMod.MOD_ID + "." + this.cachedMaterial.getName() + "ShulkerBox"); + String namespace = BlockEntityType.getId(this.getType()).getNamespace(); + return new TranslatableText("container." + namespace + "." + this.cachedMaterial.getName() + "ShulkerBox"); } + @Override public int[] getAvailableSlots(Direction side) { return IntStream.range(0, this.size()).toArray(); } @@ -51,6 +54,7 @@ public ReinforcingMaterial getMaterial() { return this.cachedMaterial; } + @Override protected ScreenHandler createScreenHandler(int syncId, PlayerInventory playerInventory) { return ReinforcedStorageScreenHandler.createShulkerBoxScreen(this.cachedMaterial, syncId, playerInventory, this); diff --git a/src/main/java/atonkish/reinfshulker/client/render/ModTexturedRenderLayers.java b/src/main/java/atonkish/reinfshulker/client/render/ModTexturedRenderLayers.java index ba0353f..0130cf2 100644 --- a/src/main/java/atonkish/reinfshulker/client/render/ModTexturedRenderLayers.java +++ b/src/main/java/atonkish/reinfshulker/client/render/ModTexturedRenderLayers.java @@ -2,60 +2,85 @@ import com.google.common.collect.ImmutableList; -import java.util.HashMap; +import java.util.LinkedHashMap; import java.util.List; +import java.util.Map; import java.util.stream.Stream; import net.fabricmc.api.EnvType; import net.fabricmc.api.Environment; +import net.fabricmc.fabric.api.event.client.ClientSpriteRegistryCallback; import net.minecraft.client.render.RenderLayer; import net.minecraft.client.util.SpriteIdentifier; import net.minecraft.util.DyeColor; import net.minecraft.util.Identifier; import atonkish.reinfcore.util.ReinforcingMaterial; -import atonkish.reinfshulker.ReinforcedShulkerBoxesMod; @Environment(EnvType.CLIENT) public class ModTexturedRenderLayers { public static final Identifier SHULKER_BOXES_ATLAS_TEXTURE = new Identifier("textures/atlas/shulker_boxes.png"); - public static final HashMap REINFORCED_SHULKER_BOXES_ATLAS_TEXTURE_MAP; - private static final HashMap REINFORCED_SHULKER_BOXES_RENDER_LAYER_MAP; - public static final HashMap REINFORCED_SHULKER_TEXTURE_ID_MAP; - public static final HashMap> COLORED_REINFORCED_SHULKER_BOXES_TEXTURES_MAP; + public static final Map REINFORCED_SHULKER_BOXES_ATLAS_TEXTURE_MAP = new LinkedHashMap<>(); + private static final Map REINFORCED_SHULKER_BOXES_RENDER_LAYER_MAP = new LinkedHashMap<>(); + public static final Map REINFORCED_SHULKER_TEXTURE_ID_MAP = new LinkedHashMap<>(); + public static final Map> COLORED_REINFORCED_SHULKER_BOXES_TEXTURES_MAP = new LinkedHashMap<>(); - public static RenderLayer getReinforcedShulkerBoxes(ReinforcingMaterial material) { - return REINFORCED_SHULKER_BOXES_RENDER_LAYER_MAP.get(material); + public static Identifier registerMaterialAtlasTexture(String namespace, ReinforcingMaterial material) { + if (!REINFORCED_SHULKER_BOXES_ATLAS_TEXTURE_MAP.containsKey(material)) { + Identifier identifier = new Identifier(namespace, + "textures/atlas/" + material.getName() + "_shulker_boxes.png"); + + ClientSpriteRegistryCallback.event(identifier).register((atlasTexture, registry) -> { + String nonColorPath = "entity/reinforced_shulker/" + material.getName() + "/shulker"; + registry.register(new Identifier(namespace, nonColorPath)); + for (DyeColor color : DyeColor.values()) { + String colorPath = nonColorPath + "_" + color.getName(); + registry.register(new Identifier(namespace, colorPath)); + } + }); + + REINFORCED_SHULKER_BOXES_ATLAS_TEXTURE_MAP.put(material, identifier); + } + + return REINFORCED_SHULKER_BOXES_ATLAS_TEXTURE_MAP.get(material); } - static { - REINFORCED_SHULKER_BOXES_ATLAS_TEXTURE_MAP = new HashMap<>(); - REINFORCED_SHULKER_BOXES_RENDER_LAYER_MAP = new HashMap<>(); - REINFORCED_SHULKER_TEXTURE_ID_MAP = new HashMap<>(); - COLORED_REINFORCED_SHULKER_BOXES_TEXTURES_MAP = new HashMap<>(); - for (ReinforcingMaterial material : ReinforcingMaterial.values()) { - // Atlas Texture - Identifier atlasTexture = new Identifier(ReinforcedShulkerBoxesMod.MOD_ID, - "textures/atlas/" + material + "_shulker_boxes.png"); - REINFORCED_SHULKER_BOXES_ATLAS_TEXTURE_MAP.put(material, atlasTexture); - - // Render Layer - RenderLayer renderLayer = RenderLayer.getEntityCutout(atlasTexture); + public static RenderLayer registerMaterialRenderLayer(ReinforcingMaterial material) { + if (!REINFORCED_SHULKER_BOXES_RENDER_LAYER_MAP.containsKey(material)) { + RenderLayer renderLayer = RenderLayer + .getEntityCutout(REINFORCED_SHULKER_BOXES_ATLAS_TEXTURE_MAP.get(material)); REINFORCED_SHULKER_BOXES_RENDER_LAYER_MAP.put(material, renderLayer); + } + + return REINFORCED_SHULKER_BOXES_RENDER_LAYER_MAP.get(material); + } - // Sprite Identifiers - // Non-Color - SpriteIdentifier nonColoredTextureId = new SpriteIdentifier( - REINFORCED_SHULKER_BOXES_ATLAS_TEXTURE_MAP.get(material), new Identifier( - ReinforcedShulkerBoxesMod.MOD_ID, "entity/reinforced_shulker/" + material + "/shulker")); - REINFORCED_SHULKER_TEXTURE_ID_MAP.put(material, nonColoredTextureId); - // Color - List coloredTextureIds = Stream.of(DyeColor.values()).map((color) -> { + public static SpriteIdentifier registerMaterialDefaultSprite(String namespace, ReinforcingMaterial material) { + if (!REINFORCED_SHULKER_TEXTURE_ID_MAP.containsKey(material)) { + SpriteIdentifier identifier = new SpriteIdentifier( + REINFORCED_SHULKER_BOXES_ATLAS_TEXTURE_MAP.get(material), + new Identifier(namespace, "entity/reinforced_shulker/" + material.getName() + "/shulker")); + REINFORCED_SHULKER_TEXTURE_ID_MAP.put(material, identifier); + } + + return REINFORCED_SHULKER_TEXTURE_ID_MAP.get(material); + } + + public static List registerMaterialColoringSprites(String namespace, + ReinforcingMaterial material) { + if (!COLORED_REINFORCED_SHULKER_BOXES_TEXTURES_MAP.containsKey(material)) { + List identifiers = Stream.of(DyeColor.values()).map((color) -> { return new SpriteIdentifier(REINFORCED_SHULKER_BOXES_ATLAS_TEXTURE_MAP.get(material), - new Identifier(ReinforcedShulkerBoxesMod.MOD_ID, - "entity/reinforced_shulker/" + material + "/shulker_" + color)); + new Identifier(namespace, + "entity/reinforced_shulker/" + material.getName() + "/shulker_" + color.getName())); }).collect(ImmutableList.toImmutableList()); - COLORED_REINFORCED_SHULKER_BOXES_TEXTURES_MAP.put(material, coloredTextureIds); + COLORED_REINFORCED_SHULKER_BOXES_TEXTURES_MAP.put(material, identifiers); } + + return COLORED_REINFORCED_SHULKER_BOXES_TEXTURES_MAP.get(material); + } + + public static RenderLayer getReinforcedShulkerBoxes(ReinforcingMaterial material) { + return REINFORCED_SHULKER_BOXES_RENDER_LAYER_MAP.get(material); } } diff --git a/src/main/java/atonkish/reinfshulker/client/render/block/entity/ReinforcedShulkerBoxBlockEntityRenderer.java b/src/main/java/atonkish/reinfshulker/client/render/block/entity/ReinforcedShulkerBoxBlockEntityRenderer.java index 554abca..8c28d46 100644 --- a/src/main/java/atonkish/reinfshulker/client/render/block/entity/ReinforcedShulkerBoxBlockEntityRenderer.java +++ b/src/main/java/atonkish/reinfshulker/client/render/block/entity/ReinforcedShulkerBoxBlockEntityRenderer.java @@ -1,8 +1,5 @@ package atonkish.reinfshulker.client.render.block.entity; -import atonkish.reinfcore.util.ReinforcingMaterial; -import atonkish.reinfshulker.block.entity.ReinforcedShulkerBoxBlockEntity; -import atonkish.reinfshulker.client.render.ModTexturedRenderLayers; import net.fabricmc.api.EnvType; import net.fabricmc.api.Environment; import net.minecraft.block.BlockState; @@ -20,6 +17,10 @@ import net.minecraft.util.DyeColor; import net.minecraft.util.math.Direction; +import atonkish.reinfcore.util.ReinforcingMaterial; +import atonkish.reinfshulker.block.entity.ReinforcedShulkerBoxBlockEntity; +import atonkish.reinfshulker.client.render.ModTexturedRenderLayers; + @Environment(EnvType.CLIENT) public class ReinforcedShulkerBoxBlockEntityRenderer implements BlockEntityRenderer { private final ShulkerEntityModel model; @@ -28,6 +29,7 @@ public ReinforcedShulkerBoxBlockEntityRenderer(BlockEntityRendererFactory.Contex this.model = new ShulkerEntityModel<>(ctx.getLayerModelPart(EntityModelLayers.SHULKER)); } + @Override public void render(ReinforcedShulkerBoxBlockEntity reinforcedShulkerBoxBlockEntity, float tickDelta, MatrixStack matrices, VertexConsumerProvider vertexConsumers, int light, int overlay) { Direction direction = Direction.UP; diff --git a/src/main/java/atonkish/reinfshulker/integration/quickshulker/QuickShulker.java b/src/main/java/atonkish/reinfshulker/integration/quickshulker/QuickShulker.java index a32f347..59c192c 100644 --- a/src/main/java/atonkish/reinfshulker/integration/quickshulker/QuickShulker.java +++ b/src/main/java/atonkish/reinfshulker/integration/quickshulker/QuickShulker.java @@ -2,10 +2,10 @@ import java.util.function.BiConsumer; +import net.kyrptonaught.quickshulker.api.ItemStackInventory; import net.kyrptonaught.quickshulker.api.QuickOpenableRegistry; import net.kyrptonaught.quickshulker.api.RegisterQuickShulker; -import net.kyrptonaught.shulkerutils.ItemStackInventory; - +import net.minecraft.block.entity.BlockEntityType; import net.minecraft.entity.player.PlayerEntity; import net.minecraft.entity.player.PlayerInventory; import net.minecraft.item.BlockItem; @@ -17,8 +17,8 @@ import atonkish.reinfcore.screen.ReinforcedStorageScreenHandler; import atonkish.reinfcore.util.ReinforcingMaterial; -import atonkish.reinfshulker.ReinforcedShulkerBoxesMod; import atonkish.reinfshulker.block.ReinforcedShulkerBoxBlock; +import atonkish.reinfshulker.block.entity.ModBlockEntityType; public class QuickShulker implements RegisterQuickShulker { private static BiConsumer REINFORCED_SHULKER_BOX_CONSUMER; @@ -33,13 +33,14 @@ public void registerProviders() { ReinforcedShulkerBoxBlock block = (ReinforcedShulkerBoxBlock) ((BlockItem) stack.getItem()).getBlock(); ReinforcingMaterial material = block.getMaterial(); ItemStackInventory inventory = new ItemStackInventory(stack, material.getSize()); + String namespace = BlockEntityType.getId(ModBlockEntityType.REINFORCED_SHULKER_BOX_MAP.get(material)) + .getNamespace(); ScreenHandlerFactory screenHandlerFactory = (int syncId, PlayerInventory playerInventory, PlayerEntity playerEntity) -> ReinforcedStorageScreenHandler.createShulkerBoxScreen(material, syncId, playerInventory, inventory); Text text = stack.hasCustomName() ? stack.getName() - : new TranslatableText( - "container." + ReinforcedShulkerBoxesMod.MOD_ID + "." + material.getName() + "ShulkerBox"); + : new TranslatableText("container." + namespace + "." + material.getName() + "ShulkerBox"); player.openHandledScreen(new SimpleNamedScreenHandlerFactory(screenHandlerFactory, text)); }; diff --git a/src/main/java/atonkish/reinfshulker/integration/shulkerboxtooltip/ShulkerBoxTooltip.java b/src/main/java/atonkish/reinfshulker/integration/shulkerboxtooltip/ShulkerBoxTooltip.java index 60795a8..0349c0b 100644 --- a/src/main/java/atonkish/reinfshulker/integration/shulkerboxtooltip/ShulkerBoxTooltip.java +++ b/src/main/java/atonkish/reinfshulker/integration/shulkerboxtooltip/ShulkerBoxTooltip.java @@ -1,38 +1,32 @@ package atonkish.reinfshulker.integration.shulkerboxtooltip; -import java.util.HashMap; - import com.misterpemodder.shulkerboxtooltip.api.ShulkerBoxTooltipApi; import com.misterpemodder.shulkerboxtooltip.api.provider.PreviewProvider; import com.misterpemodder.shulkerboxtooltip.api.provider.PreviewProviderRegistry; +import net.minecraft.block.entity.BlockEntityType; import net.minecraft.item.Item; import net.minecraft.util.Identifier; import atonkish.reinfcore.util.ReinforcingMaterial; -import atonkish.reinfshulker.ReinforcedShulkerBoxesMod; +import atonkish.reinfcore.util.ReinforcingMaterials; +import atonkish.reinfshulker.block.entity.ModBlockEntityType; import atonkish.reinfshulker.item.ModItems; public class ShulkerBoxTooltip implements ShulkerBoxTooltipApi { - public static final HashMap REINFORCED_SHULKER_BOX_ITEMS_MAP; - - private static void register(PreviewProviderRegistry registry, String id, PreviewProvider provider, Item... items) { - registry.register(new Identifier(ReinforcedShulkerBoxesMod.MOD_ID, id), provider, items); + private static void register(PreviewProviderRegistry registry, String namespace, String id, + PreviewProvider provider, Item... items) { + registry.register(new Identifier(namespace, id), provider, items); } @Override public void registerProviders(PreviewProviderRegistry registry) { - for (ReinforcingMaterial material : ReinforcingMaterial.values()) { - register(registry, material.getName() + "_shulker_box", new ReinforcedShulkerBoxPreviewProvider(material), - REINFORCED_SHULKER_BOX_ITEMS_MAP.get(material)); - } - } - - static { - REINFORCED_SHULKER_BOX_ITEMS_MAP = new HashMap<>(); - for (ReinforcingMaterial material : ReinforcingMaterial.values()) { + for (ReinforcingMaterial material : ReinforcingMaterials.MAP.values()) { + String namespace = BlockEntityType.getId(ModBlockEntityType.REINFORCED_SHULKER_BOX_MAP.get(material)) + .getNamespace(); + String id = material.getName() + "_shulker_box"; Item[] items = ModItems.REINFORCED_SHULKER_BOX_MAP.get(material).values().toArray(new Item[0]); - REINFORCED_SHULKER_BOX_ITEMS_MAP.put(material, items); + register(registry, namespace, id, new ReinforcedShulkerBoxPreviewProvider(material), items); } } } diff --git a/src/main/java/atonkish/reinfshulker/item/ModItems.java b/src/main/java/atonkish/reinfshulker/item/ModItems.java index 5fa94a4..565a655 100644 --- a/src/main/java/atonkish/reinfshulker/item/ModItems.java +++ b/src/main/java/atonkish/reinfshulker/item/ModItems.java @@ -1,6 +1,7 @@ package atonkish.reinfshulker.item; -import java.util.HashMap; +import java.util.LinkedHashMap; +import java.util.Map; import net.minecraft.block.Block; import net.minecraft.item.BlockItem; @@ -9,17 +10,41 @@ import net.minecraft.util.Identifier; import net.minecraft.util.registry.Registry; -import atonkish.reinfcore.item.ItemGroupInterface; import atonkish.reinfcore.item.ModItemGroup; import atonkish.reinfcore.util.ReinforcingMaterial; import atonkish.reinfshulker.block.ModBlocks; public class ModItems { - public static final HashMap> REINFORCED_SHULKER_BOX_MAP; + public static final Map> REINFORCED_SHULKER_BOX_MAP = new LinkedHashMap<>(); + public static final Map> REINFORCED_SHULKER_BOX_SETTINGS_MAP = new LinkedHashMap<>(); - public static void init() { - Item iconItem = REINFORCED_SHULKER_BOX_MAP.get(ReinforcingMaterial.NETHERITE).get((DyeColor) null); - ((ItemGroupInterface) ModItemGroup.REINFORCED_STORAGE).setIcon(iconItem); + public static Item registerMaterialDyeColor(ReinforcingMaterial material, DyeColor color, + Item.Settings settings) { + if (!REINFORCED_SHULKER_BOX_SETTINGS_MAP.containsKey(material)) { + REINFORCED_SHULKER_BOX_SETTINGS_MAP.put(material, new LinkedHashMap<>()); + } + + if (!REINFORCED_SHULKER_BOX_MAP.containsKey(material)) { + REINFORCED_SHULKER_BOX_MAP.put(material, new LinkedHashMap<>()); + } + + if (!REINFORCED_SHULKER_BOX_SETTINGS_MAP.get(material).containsKey(color)) { + REINFORCED_SHULKER_BOX_SETTINGS_MAP.get(material).put(color, settings); + } + + if (!REINFORCED_SHULKER_BOX_MAP.get(material).containsKey(color)) { + Item item = register( + new BlockItem(ModBlocks.REINFORCED_SHULKER_BOX_MAP.get(material).get(color), + REINFORCED_SHULKER_BOX_SETTINGS_MAP.get(material).get(color))); + REINFORCED_SHULKER_BOX_MAP.get(material).put(color, item); + } + + return REINFORCED_SHULKER_BOX_MAP.get(material).get(color); + } + + public static void registerMaterialDyeColorItemGroupIcon(ReinforcingMaterial material, DyeColor color) { + Item item = REINFORCED_SHULKER_BOX_MAP.get(material).get(color); + ModItemGroup.setIcon(ModItemGroup.REINFORCED_STORAGE, item); } private static Item register(BlockItem item) { @@ -37,39 +62,4 @@ private static Item register(Identifier id, Item item) { return Registry.register(Registry.ITEM, id, item); } - - private static Item.Settings createMaterialSettings(ReinforcingMaterial material) { - Item.Settings settings = new Item.Settings().maxCount(1).group(ModItemGroup.REINFORCED_STORAGE); - switch (material) { - default: - case COPPER: - case IRON: - case GOLD: - case DIAMOND: - break; - case NETHERITE: - settings = settings.fireproof(); - break; - } - return settings; - } - - static { - REINFORCED_SHULKER_BOX_MAP = new HashMap<>(); - for (ReinforcingMaterial material : ReinforcingMaterial.values()) { - HashMap materialShulkerBoxMap = new HashMap<>(); - // Non-Color - Item nonColoredItem = register( - new BlockItem(ModBlocks.REINFORCED_SHULKER_BOX_MAP.get(material).get((DyeColor) null), - createMaterialSettings(material))); - materialShulkerBoxMap.put((DyeColor) null, nonColoredItem); - // Color - for (DyeColor color : DyeColor.values()) { - Item coloredItem = register(new BlockItem(ModBlocks.REINFORCED_SHULKER_BOX_MAP.get(material).get(color), - createMaterialSettings(material))); - materialShulkerBoxMap.put(color, coloredItem); - } - REINFORCED_SHULKER_BOX_MAP.put(material, materialShulkerBoxMap); - } - } } diff --git a/src/main/java/atonkish/reinfshulker/mixin/BlockEntityAccessor.java b/src/main/java/atonkish/reinfshulker/mixin/BlockEntityAccessor.java new file mode 100644 index 0000000..f807add --- /dev/null +++ b/src/main/java/atonkish/reinfshulker/mixin/BlockEntityAccessor.java @@ -0,0 +1,15 @@ +package atonkish.reinfshulker.mixin; + +import net.minecraft.block.entity.BlockEntity; +import net.minecraft.block.entity.BlockEntityType; + +import org.spongepowered.asm.mixin.Mixin; +import org.spongepowered.asm.mixin.Mutable; +import org.spongepowered.asm.mixin.gen.Accessor; + +@Mixin(BlockEntity.class) +public interface BlockEntityAccessor { + @Mutable + @Accessor("type") + public void setType(BlockEntityType type); +} diff --git a/src/main/java/atonkish/reinfshulker/mixin/BlockEntityMixin.java b/src/main/java/atonkish/reinfshulker/mixin/BlockEntityMixin.java deleted file mode 100644 index 0843c0f..0000000 --- a/src/main/java/atonkish/reinfshulker/mixin/BlockEntityMixin.java +++ /dev/null @@ -1,21 +0,0 @@ -package atonkish.reinfshulker.mixin; - -import net.minecraft.block.entity.BlockEntity; -import net.minecraft.block.entity.BlockEntityType; - -import org.spongepowered.asm.mixin.Mixin; -import org.spongepowered.asm.mixin.Mutable; -import org.spongepowered.asm.mixin.Shadow; - -import atonkish.reinfshulker.block.entity.BlockEntityInterface; - -@Mixin(BlockEntity.class) -public class BlockEntityMixin implements BlockEntityInterface { - @Shadow - @Mutable - private BlockEntityType type; - - public void setType(BlockEntityType type) { - this.type = type; - } -} diff --git a/src/main/java/atonkish/reinfshulker/mixin/RecipeManagerMixin.java b/src/main/java/atonkish/reinfshulker/mixin/RecipeManagerMixin.java new file mode 100644 index 0000000..e8d2d16 --- /dev/null +++ b/src/main/java/atonkish/reinfshulker/mixin/RecipeManagerMixin.java @@ -0,0 +1,42 @@ +package atonkish.reinfshulker.mixin; + +import java.util.ArrayList; +import java.util.Map; + +import com.google.gson.JsonElement; + +import org.spongepowered.asm.mixin.Mixin; +import org.spongepowered.asm.mixin.injection.Inject; +import org.spongepowered.asm.mixin.injection.At; +import org.spongepowered.asm.mixin.injection.callback.CallbackInfo; + +import net.minecraft.recipe.RecipeManager; +import net.minecraft.resource.ResourceManager; +import net.minecraft.util.Identifier; +import net.minecraft.util.profiler.Profiler; + +import atonkish.reinfshulker.ReinforcedShulkerBoxesMod; + +@Mixin(RecipeManager.class) +public class RecipeManagerMixin { + @Inject(method = "apply", at = @At("HEAD")) + private void removeMissingIdentifier(Map map, ResourceManager resourceManager, + Profiler profiler, CallbackInfo info) { + if (ReinforcedShulkerBoxesMod.IS_REINFCHEST_LOADED) { + return; + } + + ArrayList missingIdentifiers = new ArrayList<>(); + for (Identifier id : map.keySet()) { + if (!id.getNamespace().equals(ReinforcedShulkerBoxesMod.MOD_ID)) { + continue; + } + + if (id.getPath().contains("chest")) { + missingIdentifiers.add(id); + } + } + + missingIdentifiers.forEach(map::remove); + } +} diff --git a/src/main/java/atonkish/reinfshulker/mixin/ServerAdvancementLoaderMixin.java b/src/main/java/atonkish/reinfshulker/mixin/ServerAdvancementLoaderMixin.java new file mode 100644 index 0000000..d5c9706 --- /dev/null +++ b/src/main/java/atonkish/reinfshulker/mixin/ServerAdvancementLoaderMixin.java @@ -0,0 +1,43 @@ +package atonkish.reinfshulker.mixin; + +import java.util.ArrayList; +import java.util.Map; + +import com.google.gson.JsonElement; + +import org.spongepowered.asm.mixin.Mixin; +import org.spongepowered.asm.mixin.injection.Inject; +import org.spongepowered.asm.mixin.injection.At; +import org.spongepowered.asm.mixin.injection.callback.CallbackInfo; + +import net.minecraft.resource.ResourceManager; +import net.minecraft.server.ServerAdvancementLoader; +import net.minecraft.util.Identifier; +import net.minecraft.util.profiler.Profiler; + +import atonkish.reinfshulker.ReinforcedShulkerBoxesMod; + +@Mixin(ServerAdvancementLoader.class) +public class ServerAdvancementLoaderMixin { + @Inject(method = "apply", at = @At("HEAD")) + private void removeMissingIdentifier(Map map, ResourceManager resourceManager, + Profiler profiler, CallbackInfo info) { + if (ReinforcedShulkerBoxesMod.IS_REINFCHEST_LOADED) { + return; + } + + ArrayList missingIdentifiers = new ArrayList<>(); + for (Identifier id : map.keySet()) { + if (!id.getNamespace().equals(ReinforcedShulkerBoxesMod.MOD_ID)) { + continue; + } + + if (id.getPath().contains("chest")) { + missingIdentifiers.add(id); + } + } + + missingIdentifiers.forEach(map::remove); + } + +} diff --git a/src/main/java/atonkish/reinfshulker/mixin/TexturedRenderLayersMixin.java b/src/main/java/atonkish/reinfshulker/mixin/TexturedRenderLayersMixin.java index 6a0c33e..3dbc276 100644 --- a/src/main/java/atonkish/reinfshulker/mixin/TexturedRenderLayersMixin.java +++ b/src/main/java/atonkish/reinfshulker/mixin/TexturedRenderLayersMixin.java @@ -13,6 +13,7 @@ import org.spongepowered.asm.mixin.injection.callback.CallbackInfo; import atonkish.reinfcore.util.ReinforcingMaterial; +import atonkish.reinfshulker.block.ModBlocks; import atonkish.reinfshulker.client.render.ModTexturedRenderLayers; @Environment(EnvType.CLIENT) @@ -20,7 +21,7 @@ public class TexturedRenderLayersMixin { @Inject(at = @At("HEAD"), method = "addDefaultTextures") private static void addDefaultTextures(Consumer adder, CallbackInfo info) { - for (ReinforcingMaterial material : ReinforcingMaterial.values()) { + for (ReinforcingMaterial material : ModBlocks.REINFORCED_SHULKER_BOX_MAP.keySet()) { adder.accept(ModTexturedRenderLayers.REINFORCED_SHULKER_TEXTURE_ID_MAP.get(material)); ModTexturedRenderLayers.COLORED_REINFORCED_SHULKER_BOXES_TEXTURES_MAP.get(material).forEach(adder); } diff --git a/src/main/java/atonkish/reinfshulker/recipe/ReinforcedShulkerBoxColoringRecipe.java b/src/main/java/atonkish/reinfshulker/recipe/ReinforcedShulkerBoxColoringRecipe.java index 631399b..ff764ef 100644 --- a/src/main/java/atonkish/reinfshulker/recipe/ReinforcedShulkerBoxColoringRecipe.java +++ b/src/main/java/atonkish/reinfshulker/recipe/ReinforcedShulkerBoxColoringRecipe.java @@ -12,6 +12,7 @@ import net.minecraft.world.World; import atonkish.reinfcore.util.ReinforcingMaterial; +import atonkish.reinfcore.util.ReinforcingMaterials; import atonkish.reinfshulker.block.ReinforcedShulkerBoxBlock; public class ReinforcedShulkerBoxColoringRecipe extends SpecialCraftingRecipe { @@ -19,6 +20,7 @@ public ReinforcedShulkerBoxColoringRecipe(Identifier identifier) { super(identifier); } + @Override public boolean matches(CraftingInventory craftingInventory, World world) { int i = 0; int j = 0; @@ -45,10 +47,11 @@ public boolean matches(CraftingInventory craftingInventory, World world) { return i == 1 && j == 1; } + @Override public ItemStack craft(CraftingInventory craftingInventory) { ItemStack itemStack = ItemStack.EMPTY; DyeItem dyeItem = (DyeItem) Items.WHITE_DYE; - ReinforcingMaterial material = ReinforcingMaterial.COPPER; + ReinforcingMaterial material = ReinforcingMaterials.MAP.get("copper"); for (int i = 0; i < craftingInventory.size(); ++i) { ItemStack itemStack2 = craftingInventory.getStack(i); @@ -72,10 +75,12 @@ public ItemStack craft(CraftingInventory craftingInventory) { return itemStack3; } + @Override public boolean fits(int width, int height) { return width * height >= 2; } + @Override public RecipeSerializer getSerializer() { return ModRecipeSerializer.REINFORCED_SHULKER_BOX_COLORING; } diff --git a/src/main/java/atonkish/reinfshulker/recipe/ReinforcedShulkerBoxCraftingRecipe.java b/src/main/java/atonkish/reinfshulker/recipe/ReinforcedShulkerBoxCraftingRecipe.java index 5b5947f..31aceab 100644 --- a/src/main/java/atonkish/reinfshulker/recipe/ReinforcedShulkerBoxCraftingRecipe.java +++ b/src/main/java/atonkish/reinfshulker/recipe/ReinforcedShulkerBoxCraftingRecipe.java @@ -40,6 +40,7 @@ public ReinforcedShulkerBoxCraftingRecipe(Identifier id, String group, int width this.output = output; } + @Override public ItemStack craft(CraftingInventory craftingInventory) { ItemStack inputItemStack = craftingInventory.getStack(4); ItemStack outputItemStack = this.getOutput().copy(); @@ -51,6 +52,7 @@ public ItemStack craft(CraftingInventory craftingInventory) { return outputItemStack; } + @Override public RecipeSerializer getSerializer() { return ModRecipeSerializer.REINFORCED_SHULKER_BOX; } @@ -217,6 +219,7 @@ static Map readSymbols(JsonObject json) { } public static class Serializer implements RecipeSerializer { + @Override public ReinforcedShulkerBoxCraftingRecipe read(Identifier identifier, JsonObject jsonObject) { String string = JsonHelper.getString(jsonObject, "group", ""); Map map = ReinforcedShulkerBoxCraftingRecipe @@ -232,6 +235,7 @@ public ReinforcedShulkerBoxCraftingRecipe read(Identifier identifier, JsonObject return new ReinforcedShulkerBoxCraftingRecipe(identifier, string, i, j, defaultedList, itemStack); } + @Override public ReinforcedShulkerBoxCraftingRecipe read(Identifier identifier, PacketByteBuf packetByteBuf) { int i = packetByteBuf.readVarInt(); int j = packetByteBuf.readVarInt(); @@ -246,6 +250,7 @@ public ReinforcedShulkerBoxCraftingRecipe read(Identifier identifier, PacketByte return new ReinforcedShulkerBoxCraftingRecipe(identifier, string, i, j, defaultedList, itemStack); } + @Override public void write(PacketByteBuf packetByteBuf, ReinforcedShulkerBoxCraftingRecipe recipe) { packetByteBuf.writeVarInt(recipe.width); packetByteBuf.writeVarInt(recipe.height); @@ -260,5 +265,4 @@ public void write(PacketByteBuf packetByteBuf, ReinforcedShulkerBoxCraftingRecip packetByteBuf.writeItemStack(recipe.output); } } - } diff --git a/src/main/java/atonkish/reinfshulker/stat/ModStats.java b/src/main/java/atonkish/reinfshulker/stat/ModStats.java index 89c392a..24815ea 100644 --- a/src/main/java/atonkish/reinfshulker/stat/ModStats.java +++ b/src/main/java/atonkish/reinfshulker/stat/ModStats.java @@ -1,6 +1,7 @@ package atonkish.reinfshulker.stat; -import java.util.HashMap; +import java.util.LinkedHashMap; +import java.util.Map; import net.minecraft.stat.StatFormatter; import net.minecraft.stat.Stats; @@ -8,31 +9,35 @@ import net.minecraft.util.registry.Registry; import atonkish.reinfcore.util.ReinforcingMaterial; -import atonkish.reinfshulker.ReinforcedShulkerBoxesMod; public class ModStats { - public static final HashMap CLEAN_REINFORCED_SHULKER_BOX_MAP; - public static final HashMap OPEN_REINFORCED_SHULKER_BOX_MAP; + public static final Map CLEAN_REINFORCED_SHULKER_BOX_MAP = new LinkedHashMap<>(); + public static final Map OPEN_REINFORCED_SHULKER_BOX_MAP = new LinkedHashMap<>(); - public static void init() { + public static Identifier registerMaterialOpen(String namespace, ReinforcingMaterial material) { + if (!CLEAN_REINFORCED_SHULKER_BOX_MAP.containsKey(material)) { + String id = "clean_" + material.getName() + "_shulker_box"; + Identifier identifier = register(namespace, id, StatFormatter.DEFAULT); + CLEAN_REINFORCED_SHULKER_BOX_MAP.put(material, identifier); + } + + return CLEAN_REINFORCED_SHULKER_BOX_MAP.get(material); } - private static Identifier register(String id, StatFormatter formatter) { - Identifier identifier = new Identifier(ReinforcedShulkerBoxesMod.MOD_ID, id); + public static Identifier registerMaterialClean(String namespace, ReinforcingMaterial material) { + if (!OPEN_REINFORCED_SHULKER_BOX_MAP.containsKey(material)) { + String id = "open_" + material.getName() + "_shulker_box"; + Identifier identifier = register(namespace, id, StatFormatter.DEFAULT); + OPEN_REINFORCED_SHULKER_BOX_MAP.put(material, identifier); + } + + return OPEN_REINFORCED_SHULKER_BOX_MAP.get(material); + } + + private static Identifier register(String namespace, String id, StatFormatter formatter) { + Identifier identifier = new Identifier(namespace, id); Registry.register(Registry.CUSTOM_STAT, id, identifier); Stats.CUSTOM.getOrCreateStat(identifier, formatter); return identifier; } - - static { - CLEAN_REINFORCED_SHULKER_BOX_MAP = new HashMap<>(); - OPEN_REINFORCED_SHULKER_BOX_MAP = new HashMap<>(); - for (ReinforcingMaterial material : ReinforcingMaterial.values()) { - Identifier cleanIdentifier = register("clean_" + material.getName() + "_shulker_box", - StatFormatter.DEFAULT); - Identifier openIdentifier = register("open_" + material.getName() + "_shulker_box", StatFormatter.DEFAULT); - CLEAN_REINFORCED_SHULKER_BOX_MAP.put(material, cleanIdentifier); - OPEN_REINFORCED_SHULKER_BOX_MAP.put(material, openIdentifier); - } - } } diff --git a/src/main/java/atonkish/reinfshulker/util/ReinforcingMaterialSettings.java b/src/main/java/atonkish/reinfshulker/util/ReinforcingMaterialSettings.java new file mode 100644 index 0000000..824876e --- /dev/null +++ b/src/main/java/atonkish/reinfshulker/util/ReinforcingMaterialSettings.java @@ -0,0 +1,67 @@ +package atonkish.reinfshulker.util; + +import net.fabricmc.fabric.api.object.builder.v1.block.FabricBlockSettings; +import net.minecraft.block.AbstractBlock; +import net.minecraft.block.Block; +import net.minecraft.block.Material; +import net.minecraft.block.entity.BlockEntity; +import net.minecraft.block.entity.ShulkerBoxBlockEntity; +import net.minecraft.item.Item; +import net.minecraft.item.Items; +import net.minecraft.sound.BlockSoundGroup; + +import atonkish.reinfcore.api.ReinforcedCoreRegistry; +import atonkish.reinfcore.item.ModItemGroup; +import atonkish.reinfcore.util.ReinforcingMaterial; + +public enum ReinforcingMaterialSettings { + COPPER(ReinforcedCoreRegistry.registerReinforcingMaterial("copper", 45, Items.COPPER_INGOT), + FabricBlockSettings.of(Material.SHULKER_BOX).strength(2.0F, 6.0F).sounds(BlockSoundGroup.COPPER), + new Item.Settings().maxCount(1).group(ModItemGroup.REINFORCED_STORAGE)), + IRON(ReinforcedCoreRegistry.registerReinforcingMaterial("iron", 54, Items.IRON_INGOT), + FabricBlockSettings.of(Material.SHULKER_BOX).strength(2.0F, 6.0F).sounds(BlockSoundGroup.METAL), + new Item.Settings().maxCount(1).group(ModItemGroup.REINFORCED_STORAGE)), + GOLD(ReinforcedCoreRegistry.registerReinforcingMaterial("gold", 81, Items.GOLD_INGOT), + FabricBlockSettings.of(Material.SHULKER_BOX).strength(2.0F, 6.0F).sounds(BlockSoundGroup.METAL), + new Item.Settings().maxCount(1).group(ModItemGroup.REINFORCED_STORAGE)), + DIAMOND(ReinforcedCoreRegistry.registerReinforcingMaterial("diamond", 108, Items.DIAMOND), + FabricBlockSettings.of(Material.SHULKER_BOX).strength(2.0F, 6.0F).sounds(BlockSoundGroup.METAL), + new Item.Settings().maxCount(1).group(ModItemGroup.REINFORCED_STORAGE)), + NETHERITE(ReinforcedCoreRegistry.registerReinforcingMaterial("netherite", 108, Items.NETHERITE_INGOT), + FabricBlockSettings.of(Material.SHULKER_BOX).strength(2.0F, 1200.0F).sounds(BlockSoundGroup.NETHERITE), + new Item.Settings().maxCount(1).group(ModItemGroup.REINFORCED_STORAGE).fireproof()); + + private final ReinforcingMaterial material; + private final Block.Settings blockSettings; + private final Item.Settings itemSettings; + + private ReinforcingMaterialSettings(ReinforcingMaterial material, Block.Settings blockSettings, + Item.Settings itemSettings) { + AbstractBlock.ContextPredicate contextPredicate = (state, world, pos) -> { + BlockEntity blockEntity = world.getBlockEntity(pos); + if (!(blockEntity instanceof ShulkerBoxBlockEntity)) { + return true; + } else { + ShulkerBoxBlockEntity shulkerBoxBlockEntity = (ShulkerBoxBlockEntity) blockEntity; + return shulkerBoxBlockEntity.suffocates(); + } + }; + + this.material = material; + this.blockSettings = blockSettings.dynamicBounds().nonOpaque() + .suffocates(contextPredicate).blockVision(contextPredicate); + this.itemSettings = itemSettings; + } + + public ReinforcingMaterial getMaterial() { + return this.material; + } + + public Block.Settings getBlockSettings() { + return this.blockSettings; + } + + public Item.Settings getItemSettings() { + return this.itemSettings; + } +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/black_copper_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/black_copper_shulker_box.json index 541cb85..e121e04 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/black_copper_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/black_copper_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/black_copper_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/black_diamond_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/black_diamond_shulker_box.json index 9ca974f..f05362d 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/black_diamond_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/black_diamond_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/black_diamond_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/black_gold_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/black_gold_shulker_box.json index 72abf6d..e5ad0d9 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/black_gold_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/black_gold_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/black_gold_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/black_iron_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/black_iron_shulker_box.json index b9696d0..3471085 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/black_iron_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/black_iron_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/black_iron_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/black_netherite_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/black_netherite_shulker_box.json index c031e00..a858dcf 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/black_netherite_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/black_netherite_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/black_netherite_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/blue_copper_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/blue_copper_shulker_box.json index a518c5b..63cfebe 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/blue_copper_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/blue_copper_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/blue_copper_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/blue_diamond_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/blue_diamond_shulker_box.json index ea5f50d..c3f040f 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/blue_diamond_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/blue_diamond_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/blue_diamond_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/blue_gold_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/blue_gold_shulker_box.json index f2cbd6d..a0cccb0 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/blue_gold_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/blue_gold_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/blue_gold_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/blue_iron_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/blue_iron_shulker_box.json index a174b5d..f8e822a 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/blue_iron_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/blue_iron_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/blue_iron_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/blue_netherite_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/blue_netherite_shulker_box.json index 876e510..9ff0285 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/blue_netherite_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/blue_netherite_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/blue_netherite_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/brown_copper_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/brown_copper_shulker_box.json index a4ab355..1fecfe1 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/brown_copper_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/brown_copper_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/brown_copper_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/brown_diamond_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/brown_diamond_shulker_box.json index 2d2c70c..154dcfe 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/brown_diamond_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/brown_diamond_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/brown_diamond_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/brown_gold_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/brown_gold_shulker_box.json index 123c9c6..1b3a8d5 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/brown_gold_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/brown_gold_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/brown_gold_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/brown_iron_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/brown_iron_shulker_box.json index 041dd3b..d16f0f9 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/brown_iron_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/brown_iron_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/brown_iron_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/brown_netherite_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/brown_netherite_shulker_box.json index 10742c8..da3fb6e 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/brown_netherite_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/brown_netherite_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/brown_netherite_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/copper_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/copper_shulker_box.json index 004a036..1f62366 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/copper_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/copper_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/copper_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/cyan_copper_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/cyan_copper_shulker_box.json index 0e2d595..bc9e4c7 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/cyan_copper_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/cyan_copper_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/cyan_copper_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/cyan_diamond_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/cyan_diamond_shulker_box.json index 9c07018..5aef951 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/cyan_diamond_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/cyan_diamond_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/cyan_diamond_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/cyan_gold_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/cyan_gold_shulker_box.json index b43c63a..85cb957 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/cyan_gold_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/cyan_gold_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/cyan_gold_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/cyan_iron_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/cyan_iron_shulker_box.json index 59141ca..a1bd48e 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/cyan_iron_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/cyan_iron_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/cyan_iron_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/cyan_netherite_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/cyan_netherite_shulker_box.json index 332326a..5fb5424 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/cyan_netherite_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/cyan_netherite_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/cyan_netherite_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/diamond_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/diamond_shulker_box.json index e402499..7ed8c3c 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/diamond_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/diamond_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/diamond_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/gold_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/gold_shulker_box.json index b381fb8..e80d045 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/gold_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/gold_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/gold_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/gray_copper_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/gray_copper_shulker_box.json index 8e260d7..d81360e 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/gray_copper_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/gray_copper_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/gray_copper_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/gray_diamond_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/gray_diamond_shulker_box.json index 6c37f93..ee37f71 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/gray_diamond_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/gray_diamond_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/gray_diamond_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/gray_gold_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/gray_gold_shulker_box.json index 3f763d6..8b8b185 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/gray_gold_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/gray_gold_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/gray_gold_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/gray_iron_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/gray_iron_shulker_box.json index e16d403..a33e4a3 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/gray_iron_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/gray_iron_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/gray_iron_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/gray_netherite_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/gray_netherite_shulker_box.json index 4477a5b..200fee7 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/gray_netherite_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/gray_netherite_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/gray_netherite_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/green_copper_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/green_copper_shulker_box.json index 424eecb..dcd6e60 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/green_copper_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/green_copper_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/green_copper_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/green_diamond_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/green_diamond_shulker_box.json index 96c9b28..f2c0281 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/green_diamond_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/green_diamond_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/green_diamond_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/green_gold_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/green_gold_shulker_box.json index ac9707a..661c341 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/green_gold_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/green_gold_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/green_gold_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/green_iron_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/green_iron_shulker_box.json index a9c1945..78fbbe2 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/green_iron_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/green_iron_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/green_iron_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/green_netherite_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/green_netherite_shulker_box.json index 4d04a73..e4b2d3e 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/green_netherite_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/green_netherite_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/green_netherite_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/iron_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/iron_shulker_box.json index 2d81bae..145a1c2 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/iron_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/iron_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/iron_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/light_blue_copper_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/light_blue_copper_shulker_box.json index 24b33b0..165cd7a 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/light_blue_copper_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/light_blue_copper_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/light_blue_copper_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/light_blue_diamond_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/light_blue_diamond_shulker_box.json index 9ada5b7..0c50bdb 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/light_blue_diamond_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/light_blue_diamond_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/light_blue_diamond_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/light_blue_gold_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/light_blue_gold_shulker_box.json index 155fccf..ac2eb9d 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/light_blue_gold_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/light_blue_gold_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/light_blue_gold_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/light_blue_iron_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/light_blue_iron_shulker_box.json index bcea71e..9f366c9 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/light_blue_iron_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/light_blue_iron_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/light_blue_iron_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/light_blue_netherite_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/light_blue_netherite_shulker_box.json index 5b940ca..5b87dd3 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/light_blue_netherite_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/light_blue_netherite_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/light_blue_netherite_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/light_gray_copper_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/light_gray_copper_shulker_box.json index aa2f508..77838ae 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/light_gray_copper_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/light_gray_copper_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/light_gray_copper_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/light_gray_diamond_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/light_gray_diamond_shulker_box.json index f865b83..eb377d6 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/light_gray_diamond_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/light_gray_diamond_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/light_gray_diamond_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/light_gray_gold_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/light_gray_gold_shulker_box.json index e9b3eb1..53e9d8b 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/light_gray_gold_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/light_gray_gold_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/light_gray_gold_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/light_gray_iron_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/light_gray_iron_shulker_box.json index 6aeb4bc..bcf80f1 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/light_gray_iron_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/light_gray_iron_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/light_gray_iron_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/light_gray_netherite_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/light_gray_netherite_shulker_box.json index ec1ccfa..f199765 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/light_gray_netherite_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/light_gray_netherite_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/light_gray_netherite_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/lime_copper_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/lime_copper_shulker_box.json index f52691b..bb034b0 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/lime_copper_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/lime_copper_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/lime_copper_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/lime_diamond_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/lime_diamond_shulker_box.json index b1d9e7c..827d1ad 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/lime_diamond_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/lime_diamond_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/lime_diamond_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/lime_gold_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/lime_gold_shulker_box.json index ab958f3..d0ced16 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/lime_gold_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/lime_gold_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/lime_gold_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/lime_iron_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/lime_iron_shulker_box.json index 6b8fbc5..2403235 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/lime_iron_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/lime_iron_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/lime_iron_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/lime_netherite_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/lime_netherite_shulker_box.json index bfe6092..689a855 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/lime_netherite_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/lime_netherite_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/lime_netherite_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/magenta_copper_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/magenta_copper_shulker_box.json index 55959a6..79e9c5d 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/magenta_copper_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/magenta_copper_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/magenta_copper_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/magenta_diamond_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/magenta_diamond_shulker_box.json index dadfe48..81c7c88 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/magenta_diamond_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/magenta_diamond_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/magenta_diamond_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/magenta_gold_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/magenta_gold_shulker_box.json index 65ce501..c42e833 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/magenta_gold_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/magenta_gold_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/magenta_gold_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/magenta_iron_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/magenta_iron_shulker_box.json index abbd81d..4b2fed6 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/magenta_iron_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/magenta_iron_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/magenta_iron_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/magenta_netherite_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/magenta_netherite_shulker_box.json index df23622..964f166 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/magenta_netherite_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/magenta_netherite_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/magenta_netherite_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/netherite_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/netherite_shulker_box.json index 59b7f70..5d023fe 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/netherite_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/netherite_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/netherite_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/orange_copper_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/orange_copper_shulker_box.json index 17c9414..80f9c59 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/orange_copper_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/orange_copper_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/orange_copper_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/orange_diamond_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/orange_diamond_shulker_box.json index dea8df9..bf2d910 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/orange_diamond_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/orange_diamond_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/orange_diamond_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/orange_gold_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/orange_gold_shulker_box.json index 6708d68..a06ad3c 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/orange_gold_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/orange_gold_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/orange_gold_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/orange_iron_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/orange_iron_shulker_box.json index 95b7b75..f6b196a 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/orange_iron_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/orange_iron_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/orange_iron_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/orange_netherite_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/orange_netherite_shulker_box.json index a9efb19..e84704c 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/orange_netherite_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/orange_netherite_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/orange_netherite_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/pink_copper_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/pink_copper_shulker_box.json index b802a00..1d2a8b5 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/pink_copper_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/pink_copper_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/pink_copper_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/pink_diamond_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/pink_diamond_shulker_box.json index 13232c7..ed54c4f 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/pink_diamond_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/pink_diamond_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/pink_diamond_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/pink_gold_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/pink_gold_shulker_box.json index 57b5766..acfa646 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/pink_gold_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/pink_gold_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/pink_gold_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/pink_iron_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/pink_iron_shulker_box.json index e65d571..95cf7d0 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/pink_iron_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/pink_iron_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/pink_iron_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/pink_netherite_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/pink_netherite_shulker_box.json index 691e4cf..0984523 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/pink_netherite_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/pink_netherite_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/pink_netherite_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/purple_copper_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/purple_copper_shulker_box.json index e70a074..50ae3d3 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/purple_copper_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/purple_copper_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/purple_copper_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/purple_diamond_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/purple_diamond_shulker_box.json index e5a5569..240b273 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/purple_diamond_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/purple_diamond_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/purple_diamond_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/purple_gold_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/purple_gold_shulker_box.json index 199fbe4..8dc9c06 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/purple_gold_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/purple_gold_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/purple_gold_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/purple_iron_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/purple_iron_shulker_box.json index c65f2e7..2df5344 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/purple_iron_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/purple_iron_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/purple_iron_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/purple_netherite_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/purple_netherite_shulker_box.json index 392c1c3..41e4dbc 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/purple_netherite_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/purple_netherite_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/purple_netherite_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/red_copper_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/red_copper_shulker_box.json index cddd916..c8a4e7c 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/red_copper_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/red_copper_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/red_copper_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/red_diamond_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/red_diamond_shulker_box.json index 9233cfd..a572395 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/red_diamond_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/red_diamond_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/red_diamond_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/red_gold_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/red_gold_shulker_box.json index 06fa10e..183fcb0 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/red_gold_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/red_gold_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/red_gold_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/red_iron_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/red_iron_shulker_box.json index 41b6a08..19b1093 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/red_iron_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/red_iron_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/red_iron_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/red_netherite_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/red_netherite_shulker_box.json index cfa47d5..07538e4 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/red_netherite_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/red_netherite_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/red_netherite_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/white_copper_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/white_copper_shulker_box.json index aee8eba..52d4fe3 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/white_copper_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/white_copper_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/white_copper_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/white_diamond_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/white_diamond_shulker_box.json index 01604ed..25c3395 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/white_diamond_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/white_diamond_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/white_diamond_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/white_gold_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/white_gold_shulker_box.json index a9631ed..f032d74 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/white_gold_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/white_gold_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/white_gold_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/white_iron_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/white_iron_shulker_box.json index 3ba4203..50331fd 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/white_iron_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/white_iron_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/white_iron_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/white_netherite_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/white_netherite_shulker_box.json index 37901c2..061d416 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/white_netherite_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/white_netherite_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/white_netherite_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/yellow_copper_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/yellow_copper_shulker_box.json index 6a286d3..9dca43c 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/yellow_copper_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/yellow_copper_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/yellow_copper_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/yellow_diamond_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/yellow_diamond_shulker_box.json index d54d4c2..dcc2c79 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/yellow_diamond_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/yellow_diamond_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/yellow_diamond_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/yellow_gold_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/yellow_gold_shulker_box.json index 8824e38..e312d35 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/yellow_gold_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/yellow_gold_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/yellow_gold_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/yellow_iron_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/yellow_iron_shulker_box.json index 7ad358d..0aeb557 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/yellow_iron_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/yellow_iron_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/yellow_iron_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/blockstates/yellow_netherite_shulker_box.json b/src/main/resources/assets/reinfshulker/blockstates/yellow_netherite_shulker_box.json index a28b51c..1650db5 100644 --- a/src/main/resources/assets/reinfshulker/blockstates/yellow_netherite_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/blockstates/yellow_netherite_shulker_box.json @@ -4,4 +4,4 @@ "model": "reinfshulker:block/yellow_netherite_shulker_box" } } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/lang/en_us.json b/src/main/resources/assets/reinfshulker/lang/en_us.json index 4cf56cb..4a8436d 100644 --- a/src/main/resources/assets/reinfshulker/lang/en_us.json +++ b/src/main/resources/assets/reinfshulker/lang/en_us.json @@ -99,4 +99,4 @@ "stat.reinfshulker.open_gold_shulker_box": "Gold Shulker Boxes Opened", "stat.reinfshulker.open_diamond_shulker_box": "Diamond Shulker Boxes Opened", "stat.reinfshulker.open_netherite_shulker_box": "Netherite Shulker Boxes Opened" -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/lang/ja_jp.json b/src/main/resources/assets/reinfshulker/lang/ja_jp.json index e3b5d4c..477fda5 100644 --- a/src/main/resources/assets/reinfshulker/lang/ja_jp.json +++ b/src/main/resources/assets/reinfshulker/lang/ja_jp.json @@ -99,4 +99,4 @@ "stat.reinfshulker.open_gold_shulker_box": "金のシュルカーボックスを開いた回数", "stat.reinfshulker.open_diamond_shulker_box": "ダイヤモンドのシュルカーボックスを開いた回数", "stat.reinfshulker.open_netherite_shulker_box": "ネザライトのシュルカーボックスを開いた回数" -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/lang/zh_cn.json b/src/main/resources/assets/reinfshulker/lang/zh_cn.json index 6869f3a..20e11f6 100644 --- a/src/main/resources/assets/reinfshulker/lang/zh_cn.json +++ b/src/main/resources/assets/reinfshulker/lang/zh_cn.json @@ -99,4 +99,4 @@ "stat.reinfshulker.open_gold_shulker_box": "金潜影盒打开次数", "stat.reinfshulker.open_diamond_shulker_box": "钻石潜影盒打开次数", "stat.reinfshulker.open_netherite_shulker_box": "下界合金潜影盒打开次数" -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/black_copper_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/black_copper_shulker_box.json index 0e74df9..189791e 100644 --- a/src/main/resources/assets/reinfshulker/models/block/black_copper_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/black_copper_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/black_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/black_diamond_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/black_diamond_shulker_box.json index 0e74df9..189791e 100644 --- a/src/main/resources/assets/reinfshulker/models/block/black_diamond_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/black_diamond_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/black_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/black_gold_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/black_gold_shulker_box.json index 0e74df9..189791e 100644 --- a/src/main/resources/assets/reinfshulker/models/block/black_gold_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/black_gold_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/black_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/black_iron_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/black_iron_shulker_box.json index 0e74df9..189791e 100644 --- a/src/main/resources/assets/reinfshulker/models/block/black_iron_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/black_iron_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/black_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/black_netherite_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/black_netherite_shulker_box.json index 0e74df9..189791e 100644 --- a/src/main/resources/assets/reinfshulker/models/block/black_netherite_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/black_netherite_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/black_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/blue_copper_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/blue_copper_shulker_box.json index 29b739d..0eea967 100644 --- a/src/main/resources/assets/reinfshulker/models/block/blue_copper_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/blue_copper_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/blue_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/blue_diamond_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/blue_diamond_shulker_box.json index 29b739d..0eea967 100644 --- a/src/main/resources/assets/reinfshulker/models/block/blue_diamond_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/blue_diamond_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/blue_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/blue_gold_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/blue_gold_shulker_box.json index 29b739d..0eea967 100644 --- a/src/main/resources/assets/reinfshulker/models/block/blue_gold_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/blue_gold_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/blue_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/blue_iron_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/blue_iron_shulker_box.json index 29b739d..0eea967 100644 --- a/src/main/resources/assets/reinfshulker/models/block/blue_iron_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/blue_iron_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/blue_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/blue_netherite_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/blue_netherite_shulker_box.json index 29b739d..0eea967 100644 --- a/src/main/resources/assets/reinfshulker/models/block/blue_netherite_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/blue_netherite_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/blue_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/brown_copper_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/brown_copper_shulker_box.json index b711809..22b4373 100644 --- a/src/main/resources/assets/reinfshulker/models/block/brown_copper_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/brown_copper_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/brown_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/brown_diamond_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/brown_diamond_shulker_box.json index b711809..22b4373 100644 --- a/src/main/resources/assets/reinfshulker/models/block/brown_diamond_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/brown_diamond_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/brown_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/brown_gold_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/brown_gold_shulker_box.json index b711809..22b4373 100644 --- a/src/main/resources/assets/reinfshulker/models/block/brown_gold_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/brown_gold_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/brown_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/brown_iron_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/brown_iron_shulker_box.json index b711809..22b4373 100644 --- a/src/main/resources/assets/reinfshulker/models/block/brown_iron_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/brown_iron_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/brown_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/brown_netherite_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/brown_netherite_shulker_box.json index b711809..22b4373 100644 --- a/src/main/resources/assets/reinfshulker/models/block/brown_netherite_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/brown_netherite_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/brown_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/copper_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/copper_shulker_box.json index 7eb2342..2521a9a 100644 --- a/src/main/resources/assets/reinfshulker/models/block/copper_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/copper_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/cyan_copper_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/cyan_copper_shulker_box.json index 748f7d9..f24f6e6 100644 --- a/src/main/resources/assets/reinfshulker/models/block/cyan_copper_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/cyan_copper_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/cyan_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/cyan_diamond_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/cyan_diamond_shulker_box.json index 748f7d9..f24f6e6 100644 --- a/src/main/resources/assets/reinfshulker/models/block/cyan_diamond_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/cyan_diamond_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/cyan_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/cyan_gold_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/cyan_gold_shulker_box.json index 748f7d9..f24f6e6 100644 --- a/src/main/resources/assets/reinfshulker/models/block/cyan_gold_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/cyan_gold_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/cyan_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/cyan_iron_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/cyan_iron_shulker_box.json index 748f7d9..f24f6e6 100644 --- a/src/main/resources/assets/reinfshulker/models/block/cyan_iron_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/cyan_iron_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/cyan_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/cyan_netherite_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/cyan_netherite_shulker_box.json index 748f7d9..f24f6e6 100644 --- a/src/main/resources/assets/reinfshulker/models/block/cyan_netherite_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/cyan_netherite_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/cyan_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/diamond_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/diamond_shulker_box.json index 7eb2342..2521a9a 100644 --- a/src/main/resources/assets/reinfshulker/models/block/diamond_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/diamond_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/gold_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/gold_shulker_box.json index 7eb2342..2521a9a 100644 --- a/src/main/resources/assets/reinfshulker/models/block/gold_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/gold_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/gray_copper_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/gray_copper_shulker_box.json index 93cae99..125c44b 100644 --- a/src/main/resources/assets/reinfshulker/models/block/gray_copper_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/gray_copper_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/gray_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/gray_diamond_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/gray_diamond_shulker_box.json index 93cae99..125c44b 100644 --- a/src/main/resources/assets/reinfshulker/models/block/gray_diamond_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/gray_diamond_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/gray_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/gray_gold_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/gray_gold_shulker_box.json index 93cae99..125c44b 100644 --- a/src/main/resources/assets/reinfshulker/models/block/gray_gold_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/gray_gold_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/gray_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/gray_iron_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/gray_iron_shulker_box.json index 93cae99..125c44b 100644 --- a/src/main/resources/assets/reinfshulker/models/block/gray_iron_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/gray_iron_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/gray_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/gray_netherite_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/gray_netherite_shulker_box.json index 93cae99..125c44b 100644 --- a/src/main/resources/assets/reinfshulker/models/block/gray_netherite_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/gray_netherite_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/gray_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/green_copper_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/green_copper_shulker_box.json index 7b07e64..ba670b3 100644 --- a/src/main/resources/assets/reinfshulker/models/block/green_copper_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/green_copper_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/green_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/green_diamond_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/green_diamond_shulker_box.json index 7b07e64..ba670b3 100644 --- a/src/main/resources/assets/reinfshulker/models/block/green_diamond_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/green_diamond_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/green_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/green_gold_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/green_gold_shulker_box.json index 7b07e64..ba670b3 100644 --- a/src/main/resources/assets/reinfshulker/models/block/green_gold_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/green_gold_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/green_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/green_iron_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/green_iron_shulker_box.json index 7b07e64..ba670b3 100644 --- a/src/main/resources/assets/reinfshulker/models/block/green_iron_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/green_iron_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/green_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/green_netherite_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/green_netherite_shulker_box.json index 7b07e64..ba670b3 100644 --- a/src/main/resources/assets/reinfshulker/models/block/green_netherite_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/green_netherite_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/green_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/iron_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/iron_shulker_box.json index 7eb2342..2521a9a 100644 --- a/src/main/resources/assets/reinfshulker/models/block/iron_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/iron_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/light_blue_copper_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/light_blue_copper_shulker_box.json index 41f6772..0d04aab 100644 --- a/src/main/resources/assets/reinfshulker/models/block/light_blue_copper_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/light_blue_copper_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/light_blue_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/light_blue_diamond_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/light_blue_diamond_shulker_box.json index 41f6772..0d04aab 100644 --- a/src/main/resources/assets/reinfshulker/models/block/light_blue_diamond_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/light_blue_diamond_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/light_blue_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/light_blue_gold_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/light_blue_gold_shulker_box.json index 41f6772..0d04aab 100644 --- a/src/main/resources/assets/reinfshulker/models/block/light_blue_gold_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/light_blue_gold_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/light_blue_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/light_blue_iron_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/light_blue_iron_shulker_box.json index 41f6772..0d04aab 100644 --- a/src/main/resources/assets/reinfshulker/models/block/light_blue_iron_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/light_blue_iron_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/light_blue_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/light_blue_netherite_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/light_blue_netherite_shulker_box.json index 41f6772..0d04aab 100644 --- a/src/main/resources/assets/reinfshulker/models/block/light_blue_netherite_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/light_blue_netherite_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/light_blue_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/light_gray_copper_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/light_gray_copper_shulker_box.json index 265780f..cd98fbe 100644 --- a/src/main/resources/assets/reinfshulker/models/block/light_gray_copper_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/light_gray_copper_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/light_gray_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/light_gray_diamond_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/light_gray_diamond_shulker_box.json index 265780f..cd98fbe 100644 --- a/src/main/resources/assets/reinfshulker/models/block/light_gray_diamond_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/light_gray_diamond_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/light_gray_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/light_gray_gold_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/light_gray_gold_shulker_box.json index 265780f..cd98fbe 100644 --- a/src/main/resources/assets/reinfshulker/models/block/light_gray_gold_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/light_gray_gold_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/light_gray_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/light_gray_iron_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/light_gray_iron_shulker_box.json index 265780f..cd98fbe 100644 --- a/src/main/resources/assets/reinfshulker/models/block/light_gray_iron_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/light_gray_iron_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/light_gray_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/light_gray_netherite_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/light_gray_netherite_shulker_box.json index 265780f..cd98fbe 100644 --- a/src/main/resources/assets/reinfshulker/models/block/light_gray_netherite_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/light_gray_netherite_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/light_gray_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/lime_copper_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/lime_copper_shulker_box.json index aafff7d..10da232 100644 --- a/src/main/resources/assets/reinfshulker/models/block/lime_copper_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/lime_copper_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/lime_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/lime_diamond_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/lime_diamond_shulker_box.json index aafff7d..10da232 100644 --- a/src/main/resources/assets/reinfshulker/models/block/lime_diamond_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/lime_diamond_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/lime_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/lime_gold_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/lime_gold_shulker_box.json index aafff7d..10da232 100644 --- a/src/main/resources/assets/reinfshulker/models/block/lime_gold_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/lime_gold_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/lime_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/lime_iron_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/lime_iron_shulker_box.json index aafff7d..10da232 100644 --- a/src/main/resources/assets/reinfshulker/models/block/lime_iron_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/lime_iron_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/lime_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/lime_netherite_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/lime_netherite_shulker_box.json index aafff7d..10da232 100644 --- a/src/main/resources/assets/reinfshulker/models/block/lime_netherite_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/lime_netherite_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/lime_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/magenta_copper_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/magenta_copper_shulker_box.json index 6bb156a..fee014e 100644 --- a/src/main/resources/assets/reinfshulker/models/block/magenta_copper_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/magenta_copper_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/magenta_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/magenta_diamond_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/magenta_diamond_shulker_box.json index 6bb156a..fee014e 100644 --- a/src/main/resources/assets/reinfshulker/models/block/magenta_diamond_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/magenta_diamond_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/magenta_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/magenta_gold_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/magenta_gold_shulker_box.json index 6bb156a..fee014e 100644 --- a/src/main/resources/assets/reinfshulker/models/block/magenta_gold_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/magenta_gold_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/magenta_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/magenta_iron_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/magenta_iron_shulker_box.json index 6bb156a..fee014e 100644 --- a/src/main/resources/assets/reinfshulker/models/block/magenta_iron_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/magenta_iron_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/magenta_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/magenta_netherite_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/magenta_netherite_shulker_box.json index 6bb156a..fee014e 100644 --- a/src/main/resources/assets/reinfshulker/models/block/magenta_netherite_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/magenta_netherite_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/magenta_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/netherite_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/netherite_shulker_box.json index 7eb2342..2521a9a 100644 --- a/src/main/resources/assets/reinfshulker/models/block/netherite_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/netherite_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/orange_copper_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/orange_copper_shulker_box.json index 202c325..d0bd271 100644 --- a/src/main/resources/assets/reinfshulker/models/block/orange_copper_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/orange_copper_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/orange_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/orange_diamond_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/orange_diamond_shulker_box.json index 202c325..d0bd271 100644 --- a/src/main/resources/assets/reinfshulker/models/block/orange_diamond_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/orange_diamond_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/orange_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/orange_gold_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/orange_gold_shulker_box.json index 202c325..d0bd271 100644 --- a/src/main/resources/assets/reinfshulker/models/block/orange_gold_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/orange_gold_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/orange_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/orange_iron_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/orange_iron_shulker_box.json index 202c325..d0bd271 100644 --- a/src/main/resources/assets/reinfshulker/models/block/orange_iron_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/orange_iron_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/orange_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/orange_netherite_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/orange_netherite_shulker_box.json index 202c325..d0bd271 100644 --- a/src/main/resources/assets/reinfshulker/models/block/orange_netherite_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/orange_netherite_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/orange_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/pink_copper_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/pink_copper_shulker_box.json index f088a12..f14260e 100644 --- a/src/main/resources/assets/reinfshulker/models/block/pink_copper_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/pink_copper_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/pink_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/pink_diamond_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/pink_diamond_shulker_box.json index f088a12..f14260e 100644 --- a/src/main/resources/assets/reinfshulker/models/block/pink_diamond_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/pink_diamond_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/pink_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/pink_gold_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/pink_gold_shulker_box.json index f088a12..f14260e 100644 --- a/src/main/resources/assets/reinfshulker/models/block/pink_gold_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/pink_gold_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/pink_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/pink_iron_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/pink_iron_shulker_box.json index f088a12..f14260e 100644 --- a/src/main/resources/assets/reinfshulker/models/block/pink_iron_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/pink_iron_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/pink_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/pink_netherite_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/pink_netherite_shulker_box.json index f088a12..f14260e 100644 --- a/src/main/resources/assets/reinfshulker/models/block/pink_netherite_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/pink_netherite_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/pink_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/purple_copper_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/purple_copper_shulker_box.json index 6f9cfc8..8ff08c8 100644 --- a/src/main/resources/assets/reinfshulker/models/block/purple_copper_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/purple_copper_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/purple_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/purple_diamond_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/purple_diamond_shulker_box.json index 6f9cfc8..8ff08c8 100644 --- a/src/main/resources/assets/reinfshulker/models/block/purple_diamond_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/purple_diamond_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/purple_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/purple_gold_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/purple_gold_shulker_box.json index 6f9cfc8..8ff08c8 100644 --- a/src/main/resources/assets/reinfshulker/models/block/purple_gold_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/purple_gold_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/purple_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/purple_iron_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/purple_iron_shulker_box.json index 6f9cfc8..8ff08c8 100644 --- a/src/main/resources/assets/reinfshulker/models/block/purple_iron_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/purple_iron_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/purple_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/purple_netherite_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/purple_netherite_shulker_box.json index 6f9cfc8..8ff08c8 100644 --- a/src/main/resources/assets/reinfshulker/models/block/purple_netherite_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/purple_netherite_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/purple_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/red_copper_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/red_copper_shulker_box.json index 4414a86..c64312f 100644 --- a/src/main/resources/assets/reinfshulker/models/block/red_copper_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/red_copper_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/red_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/red_diamond_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/red_diamond_shulker_box.json index 4414a86..c64312f 100644 --- a/src/main/resources/assets/reinfshulker/models/block/red_diamond_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/red_diamond_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/red_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/red_gold_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/red_gold_shulker_box.json index 4414a86..c64312f 100644 --- a/src/main/resources/assets/reinfshulker/models/block/red_gold_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/red_gold_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/red_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/red_iron_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/red_iron_shulker_box.json index 4414a86..c64312f 100644 --- a/src/main/resources/assets/reinfshulker/models/block/red_iron_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/red_iron_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/red_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/red_netherite_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/red_netherite_shulker_box.json index 4414a86..c64312f 100644 --- a/src/main/resources/assets/reinfshulker/models/block/red_netherite_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/red_netherite_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/red_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/white_copper_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/white_copper_shulker_box.json index 3a9a58d..d8343ff 100644 --- a/src/main/resources/assets/reinfshulker/models/block/white_copper_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/white_copper_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/white_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/white_diamond_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/white_diamond_shulker_box.json index 3a9a58d..d8343ff 100644 --- a/src/main/resources/assets/reinfshulker/models/block/white_diamond_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/white_diamond_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/white_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/white_gold_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/white_gold_shulker_box.json index 3a9a58d..d8343ff 100644 --- a/src/main/resources/assets/reinfshulker/models/block/white_gold_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/white_gold_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/white_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/white_iron_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/white_iron_shulker_box.json index 3a9a58d..d8343ff 100644 --- a/src/main/resources/assets/reinfshulker/models/block/white_iron_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/white_iron_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/white_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/white_netherite_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/white_netherite_shulker_box.json index 3a9a58d..d8343ff 100644 --- a/src/main/resources/assets/reinfshulker/models/block/white_netherite_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/white_netherite_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/white_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/yellow_copper_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/yellow_copper_shulker_box.json index c54fe67..f84bcfd 100644 --- a/src/main/resources/assets/reinfshulker/models/block/yellow_copper_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/yellow_copper_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/yellow_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/yellow_diamond_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/yellow_diamond_shulker_box.json index c54fe67..f84bcfd 100644 --- a/src/main/resources/assets/reinfshulker/models/block/yellow_diamond_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/yellow_diamond_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/yellow_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/yellow_gold_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/yellow_gold_shulker_box.json index c54fe67..f84bcfd 100644 --- a/src/main/resources/assets/reinfshulker/models/block/yellow_gold_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/yellow_gold_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/yellow_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/yellow_iron_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/yellow_iron_shulker_box.json index c54fe67..f84bcfd 100644 --- a/src/main/resources/assets/reinfshulker/models/block/yellow_iron_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/yellow_iron_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/yellow_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/block/yellow_netherite_shulker_box.json b/src/main/resources/assets/reinfshulker/models/block/yellow_netherite_shulker_box.json index c54fe67..f84bcfd 100644 --- a/src/main/resources/assets/reinfshulker/models/block/yellow_netherite_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/block/yellow_netherite_shulker_box.json @@ -2,4 +2,4 @@ "textures": { "particle": "minecraft:block/yellow_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/black_copper_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/black_copper_shulker_box.json index 5f45328..75a0293 100644 --- a/src/main/resources/assets/reinfshulker/models/item/black_copper_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/black_copper_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/black_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/black_diamond_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/black_diamond_shulker_box.json index 5f45328..75a0293 100644 --- a/src/main/resources/assets/reinfshulker/models/item/black_diamond_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/black_diamond_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/black_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/black_gold_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/black_gold_shulker_box.json index 5f45328..75a0293 100644 --- a/src/main/resources/assets/reinfshulker/models/item/black_gold_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/black_gold_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/black_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/black_iron_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/black_iron_shulker_box.json index 5f45328..75a0293 100644 --- a/src/main/resources/assets/reinfshulker/models/item/black_iron_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/black_iron_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/black_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/black_netherite_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/black_netherite_shulker_box.json index 5f45328..75a0293 100644 --- a/src/main/resources/assets/reinfshulker/models/item/black_netherite_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/black_netherite_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/black_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/blue_copper_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/blue_copper_shulker_box.json index 62a9dfd..062e2cc 100644 --- a/src/main/resources/assets/reinfshulker/models/item/blue_copper_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/blue_copper_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/blue_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/blue_diamond_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/blue_diamond_shulker_box.json index 62a9dfd..062e2cc 100644 --- a/src/main/resources/assets/reinfshulker/models/item/blue_diamond_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/blue_diamond_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/blue_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/blue_gold_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/blue_gold_shulker_box.json index 62a9dfd..062e2cc 100644 --- a/src/main/resources/assets/reinfshulker/models/item/blue_gold_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/blue_gold_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/blue_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/blue_iron_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/blue_iron_shulker_box.json index 62a9dfd..062e2cc 100644 --- a/src/main/resources/assets/reinfshulker/models/item/blue_iron_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/blue_iron_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/blue_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/blue_netherite_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/blue_netherite_shulker_box.json index 62a9dfd..062e2cc 100644 --- a/src/main/resources/assets/reinfshulker/models/item/blue_netherite_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/blue_netherite_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/blue_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/brown_copper_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/brown_copper_shulker_box.json index c28ee18..356e57b 100644 --- a/src/main/resources/assets/reinfshulker/models/item/brown_copper_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/brown_copper_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/brown_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/brown_diamond_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/brown_diamond_shulker_box.json index c28ee18..356e57b 100644 --- a/src/main/resources/assets/reinfshulker/models/item/brown_diamond_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/brown_diamond_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/brown_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/brown_gold_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/brown_gold_shulker_box.json index c28ee18..356e57b 100644 --- a/src/main/resources/assets/reinfshulker/models/item/brown_gold_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/brown_gold_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/brown_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/brown_iron_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/brown_iron_shulker_box.json index c28ee18..356e57b 100644 --- a/src/main/resources/assets/reinfshulker/models/item/brown_iron_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/brown_iron_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/brown_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/brown_netherite_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/brown_netherite_shulker_box.json index c28ee18..356e57b 100644 --- a/src/main/resources/assets/reinfshulker/models/item/brown_netherite_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/brown_netherite_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/brown_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/copper_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/copper_shulker_box.json index f547516..fa818df 100644 --- a/src/main/resources/assets/reinfshulker/models/item/copper_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/copper_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/cyan_copper_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/cyan_copper_shulker_box.json index e06a479..35b39ef 100644 --- a/src/main/resources/assets/reinfshulker/models/item/cyan_copper_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/cyan_copper_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/cyan_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/cyan_diamond_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/cyan_diamond_shulker_box.json index e06a479..35b39ef 100644 --- a/src/main/resources/assets/reinfshulker/models/item/cyan_diamond_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/cyan_diamond_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/cyan_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/cyan_gold_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/cyan_gold_shulker_box.json index e06a479..35b39ef 100644 --- a/src/main/resources/assets/reinfshulker/models/item/cyan_gold_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/cyan_gold_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/cyan_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/cyan_iron_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/cyan_iron_shulker_box.json index e06a479..35b39ef 100644 --- a/src/main/resources/assets/reinfshulker/models/item/cyan_iron_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/cyan_iron_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/cyan_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/cyan_netherite_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/cyan_netherite_shulker_box.json index e06a479..35b39ef 100644 --- a/src/main/resources/assets/reinfshulker/models/item/cyan_netherite_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/cyan_netherite_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/cyan_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/diamond_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/diamond_shulker_box.json index f547516..fa818df 100644 --- a/src/main/resources/assets/reinfshulker/models/item/diamond_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/diamond_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/gold_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/gold_shulker_box.json index f547516..fa818df 100644 --- a/src/main/resources/assets/reinfshulker/models/item/gold_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/gold_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/gray_copper_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/gray_copper_shulker_box.json index c704349..89c908d 100644 --- a/src/main/resources/assets/reinfshulker/models/item/gray_copper_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/gray_copper_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/gray_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/gray_diamond_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/gray_diamond_shulker_box.json index c704349..89c908d 100644 --- a/src/main/resources/assets/reinfshulker/models/item/gray_diamond_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/gray_diamond_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/gray_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/gray_gold_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/gray_gold_shulker_box.json index c704349..89c908d 100644 --- a/src/main/resources/assets/reinfshulker/models/item/gray_gold_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/gray_gold_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/gray_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/gray_iron_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/gray_iron_shulker_box.json index c704349..89c908d 100644 --- a/src/main/resources/assets/reinfshulker/models/item/gray_iron_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/gray_iron_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/gray_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/gray_netherite_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/gray_netherite_shulker_box.json index c704349..89c908d 100644 --- a/src/main/resources/assets/reinfshulker/models/item/gray_netherite_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/gray_netherite_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/gray_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/green_copper_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/green_copper_shulker_box.json index 6e8e01e..fd73a1a 100644 --- a/src/main/resources/assets/reinfshulker/models/item/green_copper_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/green_copper_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/green_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/green_diamond_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/green_diamond_shulker_box.json index 6e8e01e..fd73a1a 100644 --- a/src/main/resources/assets/reinfshulker/models/item/green_diamond_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/green_diamond_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/green_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/green_gold_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/green_gold_shulker_box.json index 6e8e01e..fd73a1a 100644 --- a/src/main/resources/assets/reinfshulker/models/item/green_gold_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/green_gold_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/green_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/green_iron_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/green_iron_shulker_box.json index 6e8e01e..fd73a1a 100644 --- a/src/main/resources/assets/reinfshulker/models/item/green_iron_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/green_iron_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/green_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/green_netherite_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/green_netherite_shulker_box.json index 6e8e01e..fd73a1a 100644 --- a/src/main/resources/assets/reinfshulker/models/item/green_netherite_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/green_netherite_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/green_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/iron_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/iron_shulker_box.json index f547516..fa818df 100644 --- a/src/main/resources/assets/reinfshulker/models/item/iron_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/iron_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/light_blue_copper_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/light_blue_copper_shulker_box.json index d17a772..d086bef 100644 --- a/src/main/resources/assets/reinfshulker/models/item/light_blue_copper_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/light_blue_copper_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/light_blue_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/light_blue_diamond_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/light_blue_diamond_shulker_box.json index d17a772..d086bef 100644 --- a/src/main/resources/assets/reinfshulker/models/item/light_blue_diamond_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/light_blue_diamond_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/light_blue_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/light_blue_gold_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/light_blue_gold_shulker_box.json index d17a772..d086bef 100644 --- a/src/main/resources/assets/reinfshulker/models/item/light_blue_gold_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/light_blue_gold_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/light_blue_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/light_blue_iron_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/light_blue_iron_shulker_box.json index d17a772..d086bef 100644 --- a/src/main/resources/assets/reinfshulker/models/item/light_blue_iron_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/light_blue_iron_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/light_blue_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/light_blue_netherite_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/light_blue_netherite_shulker_box.json index d17a772..d086bef 100644 --- a/src/main/resources/assets/reinfshulker/models/item/light_blue_netherite_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/light_blue_netherite_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/light_blue_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/light_gray_copper_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/light_gray_copper_shulker_box.json index 0efe127..b661c27 100644 --- a/src/main/resources/assets/reinfshulker/models/item/light_gray_copper_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/light_gray_copper_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/light_gray_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/light_gray_diamond_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/light_gray_diamond_shulker_box.json index 0efe127..b661c27 100644 --- a/src/main/resources/assets/reinfshulker/models/item/light_gray_diamond_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/light_gray_diamond_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/light_gray_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/light_gray_gold_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/light_gray_gold_shulker_box.json index 0efe127..b661c27 100644 --- a/src/main/resources/assets/reinfshulker/models/item/light_gray_gold_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/light_gray_gold_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/light_gray_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/light_gray_iron_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/light_gray_iron_shulker_box.json index 0efe127..b661c27 100644 --- a/src/main/resources/assets/reinfshulker/models/item/light_gray_iron_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/light_gray_iron_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/light_gray_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/light_gray_netherite_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/light_gray_netherite_shulker_box.json index 0efe127..b661c27 100644 --- a/src/main/resources/assets/reinfshulker/models/item/light_gray_netherite_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/light_gray_netherite_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/light_gray_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/lime_copper_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/lime_copper_shulker_box.json index 5e0062e..31ae62e 100644 --- a/src/main/resources/assets/reinfshulker/models/item/lime_copper_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/lime_copper_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/lime_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/lime_diamond_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/lime_diamond_shulker_box.json index 5e0062e..31ae62e 100644 --- a/src/main/resources/assets/reinfshulker/models/item/lime_diamond_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/lime_diamond_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/lime_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/lime_gold_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/lime_gold_shulker_box.json index 5e0062e..31ae62e 100644 --- a/src/main/resources/assets/reinfshulker/models/item/lime_gold_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/lime_gold_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/lime_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/lime_iron_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/lime_iron_shulker_box.json index 5e0062e..31ae62e 100644 --- a/src/main/resources/assets/reinfshulker/models/item/lime_iron_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/lime_iron_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/lime_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/lime_netherite_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/lime_netherite_shulker_box.json index 5e0062e..31ae62e 100644 --- a/src/main/resources/assets/reinfshulker/models/item/lime_netherite_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/lime_netherite_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/lime_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/magenta_copper_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/magenta_copper_shulker_box.json index f21cad4..283906a 100644 --- a/src/main/resources/assets/reinfshulker/models/item/magenta_copper_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/magenta_copper_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/magenta_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/magenta_diamond_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/magenta_diamond_shulker_box.json index f21cad4..283906a 100644 --- a/src/main/resources/assets/reinfshulker/models/item/magenta_diamond_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/magenta_diamond_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/magenta_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/magenta_gold_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/magenta_gold_shulker_box.json index f21cad4..283906a 100644 --- a/src/main/resources/assets/reinfshulker/models/item/magenta_gold_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/magenta_gold_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/magenta_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/magenta_iron_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/magenta_iron_shulker_box.json index f21cad4..283906a 100644 --- a/src/main/resources/assets/reinfshulker/models/item/magenta_iron_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/magenta_iron_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/magenta_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/magenta_netherite_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/magenta_netherite_shulker_box.json index f21cad4..283906a 100644 --- a/src/main/resources/assets/reinfshulker/models/item/magenta_netherite_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/magenta_netherite_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/magenta_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/netherite_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/netherite_shulker_box.json index f547516..fa818df 100644 --- a/src/main/resources/assets/reinfshulker/models/item/netherite_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/netherite_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/orange_copper_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/orange_copper_shulker_box.json index e8a725a..846f6df 100644 --- a/src/main/resources/assets/reinfshulker/models/item/orange_copper_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/orange_copper_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/orange_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/orange_diamond_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/orange_diamond_shulker_box.json index e8a725a..846f6df 100644 --- a/src/main/resources/assets/reinfshulker/models/item/orange_diamond_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/orange_diamond_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/orange_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/orange_gold_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/orange_gold_shulker_box.json index e8a725a..846f6df 100644 --- a/src/main/resources/assets/reinfshulker/models/item/orange_gold_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/orange_gold_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/orange_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/orange_iron_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/orange_iron_shulker_box.json index e8a725a..846f6df 100644 --- a/src/main/resources/assets/reinfshulker/models/item/orange_iron_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/orange_iron_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/orange_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/orange_netherite_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/orange_netherite_shulker_box.json index e8a725a..846f6df 100644 --- a/src/main/resources/assets/reinfshulker/models/item/orange_netherite_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/orange_netherite_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/orange_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/pink_copper_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/pink_copper_shulker_box.json index e71465f..040eb39 100644 --- a/src/main/resources/assets/reinfshulker/models/item/pink_copper_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/pink_copper_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/pink_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/pink_diamond_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/pink_diamond_shulker_box.json index e71465f..040eb39 100644 --- a/src/main/resources/assets/reinfshulker/models/item/pink_diamond_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/pink_diamond_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/pink_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/pink_gold_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/pink_gold_shulker_box.json index e71465f..040eb39 100644 --- a/src/main/resources/assets/reinfshulker/models/item/pink_gold_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/pink_gold_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/pink_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/pink_iron_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/pink_iron_shulker_box.json index e71465f..040eb39 100644 --- a/src/main/resources/assets/reinfshulker/models/item/pink_iron_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/pink_iron_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/pink_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/pink_netherite_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/pink_netherite_shulker_box.json index e71465f..040eb39 100644 --- a/src/main/resources/assets/reinfshulker/models/item/pink_netherite_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/pink_netherite_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/pink_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/purple_copper_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/purple_copper_shulker_box.json index 8521d10..9e0500d 100644 --- a/src/main/resources/assets/reinfshulker/models/item/purple_copper_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/purple_copper_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/purple_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/purple_diamond_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/purple_diamond_shulker_box.json index 8521d10..9e0500d 100644 --- a/src/main/resources/assets/reinfshulker/models/item/purple_diamond_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/purple_diamond_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/purple_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/purple_gold_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/purple_gold_shulker_box.json index 8521d10..9e0500d 100644 --- a/src/main/resources/assets/reinfshulker/models/item/purple_gold_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/purple_gold_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/purple_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/purple_iron_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/purple_iron_shulker_box.json index 8521d10..9e0500d 100644 --- a/src/main/resources/assets/reinfshulker/models/item/purple_iron_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/purple_iron_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/purple_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/purple_netherite_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/purple_netherite_shulker_box.json index 8521d10..9e0500d 100644 --- a/src/main/resources/assets/reinfshulker/models/item/purple_netherite_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/purple_netherite_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/purple_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/red_copper_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/red_copper_shulker_box.json index 618ccff..4a6be67 100644 --- a/src/main/resources/assets/reinfshulker/models/item/red_copper_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/red_copper_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/red_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/red_diamond_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/red_diamond_shulker_box.json index 618ccff..4a6be67 100644 --- a/src/main/resources/assets/reinfshulker/models/item/red_diamond_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/red_diamond_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/red_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/red_gold_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/red_gold_shulker_box.json index 618ccff..4a6be67 100644 --- a/src/main/resources/assets/reinfshulker/models/item/red_gold_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/red_gold_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/red_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/red_iron_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/red_iron_shulker_box.json index 618ccff..4a6be67 100644 --- a/src/main/resources/assets/reinfshulker/models/item/red_iron_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/red_iron_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/red_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/red_netherite_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/red_netherite_shulker_box.json index 618ccff..4a6be67 100644 --- a/src/main/resources/assets/reinfshulker/models/item/red_netherite_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/red_netherite_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/red_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/white_copper_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/white_copper_shulker_box.json index 6fd0156..f605bc3 100644 --- a/src/main/resources/assets/reinfshulker/models/item/white_copper_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/white_copper_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/white_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/white_diamond_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/white_diamond_shulker_box.json index 6fd0156..f605bc3 100644 --- a/src/main/resources/assets/reinfshulker/models/item/white_diamond_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/white_diamond_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/white_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/white_gold_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/white_gold_shulker_box.json index 6fd0156..f605bc3 100644 --- a/src/main/resources/assets/reinfshulker/models/item/white_gold_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/white_gold_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/white_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/white_iron_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/white_iron_shulker_box.json index 6fd0156..f605bc3 100644 --- a/src/main/resources/assets/reinfshulker/models/item/white_iron_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/white_iron_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/white_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/white_netherite_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/white_netherite_shulker_box.json index 6fd0156..f605bc3 100644 --- a/src/main/resources/assets/reinfshulker/models/item/white_netherite_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/white_netherite_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/white_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/yellow_copper_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/yellow_copper_shulker_box.json index 318a620..86e186e 100644 --- a/src/main/resources/assets/reinfshulker/models/item/yellow_copper_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/yellow_copper_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/yellow_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/yellow_diamond_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/yellow_diamond_shulker_box.json index 318a620..86e186e 100644 --- a/src/main/resources/assets/reinfshulker/models/item/yellow_diamond_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/yellow_diamond_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/yellow_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/yellow_gold_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/yellow_gold_shulker_box.json index 318a620..86e186e 100644 --- a/src/main/resources/assets/reinfshulker/models/item/yellow_gold_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/yellow_gold_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/yellow_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/yellow_iron_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/yellow_iron_shulker_box.json index 318a620..86e186e 100644 --- a/src/main/resources/assets/reinfshulker/models/item/yellow_iron_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/yellow_iron_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/yellow_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/reinfshulker/models/item/yellow_netherite_shulker_box.json b/src/main/resources/assets/reinfshulker/models/item/yellow_netherite_shulker_box.json index 318a620..86e186e 100644 --- a/src/main/resources/assets/reinfshulker/models/item/yellow_netherite_shulker_box.json +++ b/src/main/resources/assets/reinfshulker/models/item/yellow_netherite_shulker_box.json @@ -3,4 +3,4 @@ "textures": { "particle": "minecraft:block/yellow_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/minecraft/tags/blocks/mineable/pickaxe.json b/src/main/resources/data/minecraft/tags/blocks/mineable/pickaxe.json index 7bcf649..2fdd86c 100644 --- a/src/main/resources/data/minecraft/tags/blocks/mineable/pickaxe.json +++ b/src/main/resources/data/minecraft/tags/blocks/mineable/pickaxe.json @@ -7,4 +7,4 @@ "#reinfshulker:diamond_shulker_boxes", "#reinfshulker:netherite_shulker_boxes" ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/advancements/recipes/decorations/copper_shulker_box.json b/src/main/resources/data/reinfshulker/advancements/recipes/decorations/copper_shulker_box.json index 4ac207a..abe6ac7 100644 --- a/src/main/resources/data/reinfshulker/advancements/recipes/decorations/copper_shulker_box.json +++ b/src/main/resources/data/reinfshulker/advancements/recipes/decorations/copper_shulker_box.json @@ -55,9 +55,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:copper_ingot" - ] + "items": ["minecraft:copper_ingot"] } ] } @@ -69,11 +67,5 @@ } } }, - "requirements": [ - [ - "has_shulker_box", - "has_copper_ingot", - "has_the_recipe" - ] - ] -} \ No newline at end of file + "requirements": [["has_shulker_box", "has_copper_ingot", "has_the_recipe"]] +} diff --git a/src/main/resources/data/reinfshulker/advancements/recipes/decorations/copper_shulker_box_from_copper_chest.json b/src/main/resources/data/reinfshulker/advancements/recipes/decorations/copper_shulker_box_from_copper_chest.json index 44c9508..f79e3e5 100644 --- a/src/main/resources/data/reinfshulker/advancements/recipes/decorations/copper_shulker_box_from_copper_chest.json +++ b/src/main/resources/data/reinfshulker/advancements/recipes/decorations/copper_shulker_box_from_copper_chest.json @@ -1,9 +1,7 @@ { "parent": "minecraft:recipes/root", "rewards": { - "recipes": [ - "reinfshulker:copper_shulker_box_from_copper_chest" - ] + "recipes": ["reinfshulker:copper_shulker_box_from_copper_chest"] }, "criteria": { "has_copper_chest": { @@ -11,7 +9,7 @@ "conditions": { "items": [ { - "tag": "c:copper_chests" + "items": ["reinfchest:copper_chest"] } ] } @@ -23,10 +21,5 @@ } } }, - "requirements": [ - [ - "has_copper_chest", - "has_the_recipe" - ] - ] -} \ No newline at end of file + "requirements": [["has_copper_chest", "has_the_recipe"]] +} diff --git a/src/main/resources/data/reinfshulker/advancements/recipes/decorations/diamond_shulker_box.json b/src/main/resources/data/reinfshulker/advancements/recipes/decorations/diamond_shulker_box.json index de36c6d..75e3f1b 100644 --- a/src/main/resources/data/reinfshulker/advancements/recipes/decorations/diamond_shulker_box.json +++ b/src/main/resources/data/reinfshulker/advancements/recipes/decorations/diamond_shulker_box.json @@ -55,9 +55,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:diamond" - ] + "items": ["minecraft:diamond"] } ] } @@ -69,11 +67,5 @@ } } }, - "requirements": [ - [ - "has_gold_shulker_box", - "has_diamond", - "has_the_recipe" - ] - ] -} \ No newline at end of file + "requirements": [["has_gold_shulker_box", "has_diamond", "has_the_recipe"]] +} diff --git a/src/main/resources/data/reinfshulker/advancements/recipes/decorations/diamond_shulker_box_from_diamond_chest.json b/src/main/resources/data/reinfshulker/advancements/recipes/decorations/diamond_shulker_box_from_diamond_chest.json index 41ad68a..1c06bc6 100644 --- a/src/main/resources/data/reinfshulker/advancements/recipes/decorations/diamond_shulker_box_from_diamond_chest.json +++ b/src/main/resources/data/reinfshulker/advancements/recipes/decorations/diamond_shulker_box_from_diamond_chest.json @@ -1,9 +1,7 @@ { "parent": "minecraft:recipes/root", "rewards": { - "recipes": [ - "reinfshulker:diamond_shulker_box_from_diamond_chest" - ] + "recipes": ["reinfshulker:diamond_shulker_box_from_diamond_chest"] }, "criteria": { "has_diamond_chest": { @@ -11,7 +9,7 @@ "conditions": { "items": [ { - "tag": "c:diamond_chests" + "items": ["reinfchest:diamond_chest"] } ] } @@ -23,10 +21,5 @@ } } }, - "requirements": [ - [ - "has_diamond_chest", - "has_the_recipe" - ] - ] -} \ No newline at end of file + "requirements": [["has_diamond_chest", "has_the_recipe"]] +} diff --git a/src/main/resources/data/reinfshulker/advancements/recipes/decorations/gold_shulker_box.json b/src/main/resources/data/reinfshulker/advancements/recipes/decorations/gold_shulker_box.json index a1e111f..a37d470 100644 --- a/src/main/resources/data/reinfshulker/advancements/recipes/decorations/gold_shulker_box.json +++ b/src/main/resources/data/reinfshulker/advancements/recipes/decorations/gold_shulker_box.json @@ -55,9 +55,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:gold_ingot" - ] + "items": ["minecraft:gold_ingot"] } ] } @@ -69,11 +67,5 @@ } } }, - "requirements": [ - [ - "has_iron_shulker_box", - "has_gold_ingot", - "has_the_recipe" - ] - ] -} \ No newline at end of file + "requirements": [["has_iron_shulker_box", "has_gold_ingot", "has_the_recipe"]] +} diff --git a/src/main/resources/data/reinfshulker/advancements/recipes/decorations/gold_shulker_box_from_gold_chest.json b/src/main/resources/data/reinfshulker/advancements/recipes/decorations/gold_shulker_box_from_gold_chest.json index 3217fd4..f0dbb32 100644 --- a/src/main/resources/data/reinfshulker/advancements/recipes/decorations/gold_shulker_box_from_gold_chest.json +++ b/src/main/resources/data/reinfshulker/advancements/recipes/decorations/gold_shulker_box_from_gold_chest.json @@ -1,9 +1,7 @@ { "parent": "minecraft:recipes/root", "rewards": { - "recipes": [ - "reinfshulker:gold_shulker_box_from_gold_chest" - ] + "recipes": ["reinfshulker:gold_shulker_box_from_gold_chest"] }, "criteria": { "has_gold_chest": { @@ -11,7 +9,7 @@ "conditions": { "items": [ { - "tag": "c:gold_chests" + "items": ["reinfchest:gold_chest"] } ] } @@ -23,10 +21,5 @@ } } }, - "requirements": [ - [ - "has_gold_chest", - "has_the_recipe" - ] - ] -} \ No newline at end of file + "requirements": [["has_gold_chest", "has_the_recipe"]] +} diff --git a/src/main/resources/data/reinfshulker/advancements/recipes/decorations/iron_shulker_box.json b/src/main/resources/data/reinfshulker/advancements/recipes/decorations/iron_shulker_box.json index 77ee87e..c1e5d92 100644 --- a/src/main/resources/data/reinfshulker/advancements/recipes/decorations/iron_shulker_box.json +++ b/src/main/resources/data/reinfshulker/advancements/recipes/decorations/iron_shulker_box.json @@ -55,9 +55,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:iron_ingot" - ] + "items": ["minecraft:iron_ingot"] } ] } @@ -70,10 +68,6 @@ } }, "requirements": [ - [ - "has_copper_shulker_box", - "has_iron_ingot", - "has_the_recipe" - ] + ["has_copper_shulker_box", "has_iron_ingot", "has_the_recipe"] ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/advancements/recipes/decorations/iron_shulker_box_from_iron_chest.json b/src/main/resources/data/reinfshulker/advancements/recipes/decorations/iron_shulker_box_from_iron_chest.json index d130a4f..8b86cf0 100644 --- a/src/main/resources/data/reinfshulker/advancements/recipes/decorations/iron_shulker_box_from_iron_chest.json +++ b/src/main/resources/data/reinfshulker/advancements/recipes/decorations/iron_shulker_box_from_iron_chest.json @@ -1,9 +1,7 @@ { "parent": "minecraft:recipes/root", "rewards": { - "recipes": [ - "reinfshulker:iron_shulker_box_from_iron_chest" - ] + "recipes": ["reinfshulker:iron_shulker_box_from_iron_chest"] }, "criteria": { "has_iron_chest": { @@ -11,7 +9,7 @@ "conditions": { "items": [ { - "tag": "c:iron_chests" + "items": ["reinfchest:iron_chest"] } ] } @@ -23,10 +21,5 @@ } } }, - "requirements": [ - [ - "has_iron_chest", - "has_the_recipe" - ] - ] -} \ No newline at end of file + "requirements": [["has_iron_chest", "has_the_recipe"]] +} diff --git a/src/main/resources/data/reinfshulker/advancements/recipes/decorations/netherite_shulker_box_from_netherite_chest.json b/src/main/resources/data/reinfshulker/advancements/recipes/decorations/netherite_shulker_box_from_netherite_chest.json index c1d9ddf..6fa6afa 100644 --- a/src/main/resources/data/reinfshulker/advancements/recipes/decorations/netherite_shulker_box_from_netherite_chest.json +++ b/src/main/resources/data/reinfshulker/advancements/recipes/decorations/netherite_shulker_box_from_netherite_chest.json @@ -1,9 +1,7 @@ { "parent": "minecraft:recipes/root", "rewards": { - "recipes": [ - "reinfshulker:netherite_shulker_box_from_netherite_chest" - ] + "recipes": ["reinfshulker:netherite_shulker_box_from_netherite_chest"] }, "criteria": { "has_netherite_chest": { @@ -11,7 +9,7 @@ "conditions": { "items": [ { - "tag": "c:netherite_chests" + "items": ["reinfchest:netherite_chest"] } ] } @@ -23,10 +21,5 @@ } } }, - "requirements": [ - [ - "has_netherite_chest", - "has_the_recipe" - ] - ] -} \ No newline at end of file + "requirements": [["has_netherite_chest", "has_the_recipe"]] +} diff --git a/src/main/resources/data/reinfshulker/advancements/recipes/decorations/netherite_shulker_box_smithing.json b/src/main/resources/data/reinfshulker/advancements/recipes/decorations/netherite_shulker_box_smithing.json index 7adafd2..e1e5ad6 100644 --- a/src/main/resources/data/reinfshulker/advancements/recipes/decorations/netherite_shulker_box_smithing.json +++ b/src/main/resources/data/reinfshulker/advancements/recipes/decorations/netherite_shulker_box_smithing.json @@ -55,9 +55,7 @@ "conditions": { "items": [ { - "items": [ - "minecraft:netherite_ingot" - ] + "items": ["minecraft:netherite_ingot"] } ] } @@ -70,10 +68,6 @@ } }, "requirements": [ - [ - "has_diamond_shulker_box", - "has_netherite_ingot", - "has_the_recipe" - ] + ["has_diamond_shulker_box", "has_netherite_ingot", "has_the_recipe"] ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/black_copper_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/black_copper_shulker_box.json index 709a8e2..0448326 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/black_copper_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/black_copper_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/black_diamond_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/black_diamond_shulker_box.json index 3844302..f899ef6 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/black_diamond_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/black_diamond_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/black_gold_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/black_gold_shulker_box.json index 09fc530..707b731 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/black_gold_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/black_gold_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/black_iron_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/black_iron_shulker_box.json index 0680ec5..b163434 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/black_iron_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/black_iron_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/black_netherite_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/black_netherite_shulker_box.json index 75d1e29..e31d63b 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/black_netherite_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/black_netherite_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/blue_copper_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/blue_copper_shulker_box.json index bac3338..eef138c 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/blue_copper_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/blue_copper_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/blue_diamond_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/blue_diamond_shulker_box.json index 9676c24..ba7f21a 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/blue_diamond_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/blue_diamond_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/blue_gold_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/blue_gold_shulker_box.json index 770e127..bf5cb2b 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/blue_gold_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/blue_gold_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/blue_iron_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/blue_iron_shulker_box.json index c288f4e..f323a3b 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/blue_iron_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/blue_iron_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/blue_netherite_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/blue_netherite_shulker_box.json index 668c499..c2793f3 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/blue_netherite_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/blue_netherite_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/brown_copper_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/brown_copper_shulker_box.json index 2527893..b1a22fa 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/brown_copper_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/brown_copper_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/brown_diamond_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/brown_diamond_shulker_box.json index 63f2cff..d9eba4b 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/brown_diamond_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/brown_diamond_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/brown_gold_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/brown_gold_shulker_box.json index d0beff8..e2c2b89 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/brown_gold_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/brown_gold_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/brown_iron_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/brown_iron_shulker_box.json index b93a137..2f13641 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/brown_iron_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/brown_iron_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/brown_netherite_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/brown_netherite_shulker_box.json index 7e82e25..54fb34e 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/brown_netherite_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/brown_netherite_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/copper_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/copper_shulker_box.json index 756916f..8d48e6a 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/copper_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/copper_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/cyan_copper_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/cyan_copper_shulker_box.json index 8d92b80..08d0b82 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/cyan_copper_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/cyan_copper_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/cyan_diamond_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/cyan_diamond_shulker_box.json index a0dca45..7a5c9a5 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/cyan_diamond_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/cyan_diamond_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/cyan_gold_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/cyan_gold_shulker_box.json index 7bc66be..0756d48 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/cyan_gold_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/cyan_gold_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/cyan_iron_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/cyan_iron_shulker_box.json index 91ad907..e716c2a 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/cyan_iron_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/cyan_iron_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/cyan_netherite_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/cyan_netherite_shulker_box.json index fc038d7..900fcfc 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/cyan_netherite_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/cyan_netherite_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/diamond_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/diamond_shulker_box.json index 70caede..8814fb1 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/diamond_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/diamond_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/gold_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/gold_shulker_box.json index 82bda74..3358ef7 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/gold_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/gold_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/gray_copper_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/gray_copper_shulker_box.json index c0448de..d8df602 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/gray_copper_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/gray_copper_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/gray_diamond_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/gray_diamond_shulker_box.json index 6273e25..b74f043 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/gray_diamond_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/gray_diamond_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/gray_gold_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/gray_gold_shulker_box.json index 39a6df7..b6d56bb 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/gray_gold_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/gray_gold_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/gray_iron_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/gray_iron_shulker_box.json index 92bf289..d49fd1d 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/gray_iron_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/gray_iron_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/gray_netherite_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/gray_netherite_shulker_box.json index 8615553..349cf81 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/gray_netherite_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/gray_netherite_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/green_copper_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/green_copper_shulker_box.json index 3c8c01c..42237df 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/green_copper_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/green_copper_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/green_diamond_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/green_diamond_shulker_box.json index f11b139..70841e1 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/green_diamond_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/green_diamond_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/green_gold_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/green_gold_shulker_box.json index 2ec20ee..76edfe5 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/green_gold_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/green_gold_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/green_iron_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/green_iron_shulker_box.json index 4e3a6a8..9c762b8 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/green_iron_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/green_iron_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/green_netherite_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/green_netherite_shulker_box.json index 79bae94..82a94c8 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/green_netherite_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/green_netherite_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/iron_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/iron_shulker_box.json index bb6aa15..69459ea 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/iron_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/iron_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/light_blue_copper_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/light_blue_copper_shulker_box.json index e740e28..f4cca62 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/light_blue_copper_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/light_blue_copper_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/light_blue_diamond_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/light_blue_diamond_shulker_box.json index 7cb2b20..4e25ad1 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/light_blue_diamond_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/light_blue_diamond_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/light_blue_gold_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/light_blue_gold_shulker_box.json index d2fb29a..2cb8186 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/light_blue_gold_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/light_blue_gold_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/light_blue_iron_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/light_blue_iron_shulker_box.json index 9ca3920..5900e07 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/light_blue_iron_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/light_blue_iron_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/light_blue_netherite_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/light_blue_netherite_shulker_box.json index c91a52e..7148e0e 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/light_blue_netherite_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/light_blue_netherite_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/light_gray_copper_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/light_gray_copper_shulker_box.json index 905589b..8e5d9c9 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/light_gray_copper_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/light_gray_copper_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/light_gray_diamond_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/light_gray_diamond_shulker_box.json index 8032bc9..d438f40 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/light_gray_diamond_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/light_gray_diamond_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/light_gray_gold_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/light_gray_gold_shulker_box.json index 3b0fd19..7e3d20f 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/light_gray_gold_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/light_gray_gold_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/light_gray_iron_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/light_gray_iron_shulker_box.json index fc7744b..759f0d9 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/light_gray_iron_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/light_gray_iron_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/light_gray_netherite_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/light_gray_netherite_shulker_box.json index 63bb7e0..7273604 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/light_gray_netherite_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/light_gray_netherite_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/lime_copper_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/lime_copper_shulker_box.json index ffaaef7..afa4cc4 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/lime_copper_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/lime_copper_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/lime_diamond_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/lime_diamond_shulker_box.json index 3a1ebad..5adc1c7 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/lime_diamond_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/lime_diamond_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/lime_gold_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/lime_gold_shulker_box.json index b46587f..9af1e3b 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/lime_gold_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/lime_gold_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/lime_iron_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/lime_iron_shulker_box.json index f07699e..9008b11 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/lime_iron_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/lime_iron_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/lime_netherite_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/lime_netherite_shulker_box.json index ec04347..94ab8a8 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/lime_netherite_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/lime_netherite_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/magenta_copper_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/magenta_copper_shulker_box.json index a8d8952..2832de1 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/magenta_copper_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/magenta_copper_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/magenta_diamond_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/magenta_diamond_shulker_box.json index 0cfaec1..36b5a08 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/magenta_diamond_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/magenta_diamond_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/magenta_gold_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/magenta_gold_shulker_box.json index 3aff5da..51e633e 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/magenta_gold_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/magenta_gold_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/magenta_iron_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/magenta_iron_shulker_box.json index 1a62189..fc2ad8d 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/magenta_iron_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/magenta_iron_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/magenta_netherite_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/magenta_netherite_shulker_box.json index 205442b..5b8eede 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/magenta_netherite_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/magenta_netherite_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/netherite_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/netherite_shulker_box.json index 1c015c8..114f0cf 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/netherite_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/netherite_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/orange_copper_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/orange_copper_shulker_box.json index df965b3..c8c9182 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/orange_copper_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/orange_copper_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/orange_diamond_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/orange_diamond_shulker_box.json index 9ac5faf..ece23bc 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/orange_diamond_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/orange_diamond_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/orange_gold_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/orange_gold_shulker_box.json index f8bd1af..d4b9cd1 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/orange_gold_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/orange_gold_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/orange_iron_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/orange_iron_shulker_box.json index cce73b0..808b016 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/orange_iron_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/orange_iron_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/orange_netherite_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/orange_netherite_shulker_box.json index 6648732..e0d5415 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/orange_netherite_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/orange_netherite_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/pink_copper_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/pink_copper_shulker_box.json index 68b0e21..e67eb3f 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/pink_copper_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/pink_copper_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/pink_diamond_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/pink_diamond_shulker_box.json index 054e74d..46429ea 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/pink_diamond_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/pink_diamond_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/pink_gold_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/pink_gold_shulker_box.json index 60dfc4d..75fec1c 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/pink_gold_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/pink_gold_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/pink_iron_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/pink_iron_shulker_box.json index 5a2a01e..b14916d 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/pink_iron_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/pink_iron_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/pink_netherite_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/pink_netherite_shulker_box.json index 177c34f..c507737 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/pink_netherite_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/pink_netherite_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/purple_copper_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/purple_copper_shulker_box.json index b1a7494..7d6ab0f 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/purple_copper_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/purple_copper_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/purple_diamond_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/purple_diamond_shulker_box.json index e617ee8..d67d3f9 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/purple_diamond_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/purple_diamond_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/purple_gold_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/purple_gold_shulker_box.json index c9ad08b..5d55cef 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/purple_gold_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/purple_gold_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/purple_iron_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/purple_iron_shulker_box.json index 39f0d5b..9eec931 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/purple_iron_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/purple_iron_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/purple_netherite_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/purple_netherite_shulker_box.json index a7d535f..d79967c 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/purple_netherite_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/purple_netherite_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/red_copper_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/red_copper_shulker_box.json index d04b442..6b1bfdf 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/red_copper_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/red_copper_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/red_diamond_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/red_diamond_shulker_box.json index 88737ff..eb87729 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/red_diamond_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/red_diamond_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/red_gold_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/red_gold_shulker_box.json index e1bf06d..89aa965 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/red_gold_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/red_gold_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/red_iron_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/red_iron_shulker_box.json index 781a82a..d59c1e1 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/red_iron_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/red_iron_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/red_netherite_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/red_netherite_shulker_box.json index 0e61ce3..6c2d2eb 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/red_netherite_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/red_netherite_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/white_copper_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/white_copper_shulker_box.json index ebd9a42..544cdef 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/white_copper_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/white_copper_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/white_diamond_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/white_diamond_shulker_box.json index da7b083..c419986 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/white_diamond_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/white_diamond_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/white_gold_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/white_gold_shulker_box.json index 7658a74..d4c053a 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/white_gold_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/white_gold_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/white_iron_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/white_iron_shulker_box.json index e093117..bdfbeac 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/white_iron_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/white_iron_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/white_netherite_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/white_netherite_shulker_box.json index 029f199..037120d 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/white_netherite_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/white_netherite_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/yellow_copper_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/yellow_copper_shulker_box.json index 9183cb2..b41f760 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/yellow_copper_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/yellow_copper_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/yellow_diamond_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/yellow_diamond_shulker_box.json index dfa10f6..5ab409b 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/yellow_diamond_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/yellow_diamond_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/yellow_gold_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/yellow_gold_shulker_box.json index a5189ca..b34ac26 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/yellow_gold_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/yellow_gold_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/yellow_iron_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/yellow_iron_shulker_box.json index a41501e..f4fa224 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/yellow_iron_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/yellow_iron_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/loot_tables/blocks/yellow_netherite_shulker_box.json b/src/main/resources/data/reinfshulker/loot_tables/blocks/yellow_netherite_shulker_box.json index 488376a..e50129f 100644 --- a/src/main/resources/data/reinfshulker/loot_tables/blocks/yellow_netherite_shulker_box.json +++ b/src/main/resources/data/reinfshulker/loot_tables/blocks/yellow_netherite_shulker_box.json @@ -35,6 +35,7 @@ }, { "function": "minecraft:set_contents", + "type": "minecraft:shulker_box", "entries": [ { "type": "minecraft:dynamic", @@ -48,4 +49,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/black_copper_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/black_copper_shulker_box.json index 5889965..ac364bb 100644 --- a/src/main/resources/data/reinfshulker/recipes/black_copper_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/black_copper_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "minecraft:black_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:black_copper_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/black_diamond_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/black_diamond_shulker_box.json index 41a99c6..26d4f70 100644 --- a/src/main/resources/data/reinfshulker/recipes/black_diamond_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/black_diamond_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "reinfshulker:black_gold_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:black_diamond_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/black_gold_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/black_gold_shulker_box.json index 675d90b..5b7fbfc 100644 --- a/src/main/resources/data/reinfshulker/recipes/black_gold_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/black_gold_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "reinfshulker:black_iron_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:black_gold_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/black_iron_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/black_iron_shulker_box.json index 8f08e8a..4c44abe 100644 --- a/src/main/resources/data/reinfshulker/recipes/black_iron_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/black_iron_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "reinfshulker:black_copper_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:black_iron_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/black_netherite_shulker_box_smithing.json b/src/main/resources/data/reinfshulker/recipes/black_netherite_shulker_box_smithing.json index d1c0136..e73ec2e 100644 --- a/src/main/resources/data/reinfshulker/recipes/black_netherite_shulker_box_smithing.json +++ b/src/main/resources/data/reinfshulker/recipes/black_netherite_shulker_box_smithing.json @@ -9,4 +9,4 @@ "result": { "item": "reinfshulker:black_netherite_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/blue_copper_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/blue_copper_shulker_box.json index 066cfec..3e9bc0e 100644 --- a/src/main/resources/data/reinfshulker/recipes/blue_copper_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/blue_copper_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "minecraft:blue_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:blue_copper_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/blue_diamond_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/blue_diamond_shulker_box.json index 70bd71b..36b80bb 100644 --- a/src/main/resources/data/reinfshulker/recipes/blue_diamond_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/blue_diamond_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "reinfshulker:blue_gold_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:blue_diamond_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/blue_gold_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/blue_gold_shulker_box.json index 6e52637..fce6659 100644 --- a/src/main/resources/data/reinfshulker/recipes/blue_gold_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/blue_gold_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "reinfshulker:blue_iron_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:blue_gold_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/blue_iron_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/blue_iron_shulker_box.json index 3dcf992..711ba93 100644 --- a/src/main/resources/data/reinfshulker/recipes/blue_iron_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/blue_iron_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "reinfshulker:blue_copper_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:blue_iron_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/blue_netherite_shulker_box_smithing.json b/src/main/resources/data/reinfshulker/recipes/blue_netherite_shulker_box_smithing.json index ea50315..3a805a5 100644 --- a/src/main/resources/data/reinfshulker/recipes/blue_netherite_shulker_box_smithing.json +++ b/src/main/resources/data/reinfshulker/recipes/blue_netherite_shulker_box_smithing.json @@ -9,4 +9,4 @@ "result": { "item": "reinfshulker:blue_netherite_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/brown_copper_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/brown_copper_shulker_box.json index 2f7506e..861377c 100644 --- a/src/main/resources/data/reinfshulker/recipes/brown_copper_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/brown_copper_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "minecraft:brown_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:brown_copper_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/brown_diamond_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/brown_diamond_shulker_box.json index 95bdba8..fa42ae2 100644 --- a/src/main/resources/data/reinfshulker/recipes/brown_diamond_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/brown_diamond_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "reinfshulker:brown_gold_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:brown_diamond_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/brown_gold_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/brown_gold_shulker_box.json index 8c5c37a..9f9a64d 100644 --- a/src/main/resources/data/reinfshulker/recipes/brown_gold_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/brown_gold_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "reinfshulker:brown_iron_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:brown_gold_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/brown_iron_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/brown_iron_shulker_box.json index 1b6bf5a..798db2a 100644 --- a/src/main/resources/data/reinfshulker/recipes/brown_iron_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/brown_iron_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "reinfshulker:brown_copper_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:brown_iron_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/brown_netherite_shulker_box_smithing.json b/src/main/resources/data/reinfshulker/recipes/brown_netherite_shulker_box_smithing.json index 452387d..0c73b49 100644 --- a/src/main/resources/data/reinfshulker/recipes/brown_netherite_shulker_box_smithing.json +++ b/src/main/resources/data/reinfshulker/recipes/brown_netherite_shulker_box_smithing.json @@ -9,4 +9,4 @@ "result": { "item": "reinfshulker:brown_netherite_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/copper_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/copper_shulker_box.json index c539ef1..db68a9c 100644 --- a/src/main/resources/data/reinfshulker/recipes/copper_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/copper_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "minecraft:shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:copper_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/copper_shulker_box_from_copper_chest.json b/src/main/resources/data/reinfshulker/recipes/copper_shulker_box_from_copper_chest.json index a9e0c74..87e08fd 100644 --- a/src/main/resources/data/reinfshulker/recipes/copper_shulker_box_from_copper_chest.json +++ b/src/main/resources/data/reinfshulker/recipes/copper_shulker_box_from_copper_chest.json @@ -1,13 +1,9 @@ { "type": "minecraft:crafting_shaped", - "pattern": [ - "S", - "C", - "S" - ], + "pattern": ["S", "C", "S"], "key": { "C": { - "tag": "c:copper_chests" + "item": "reinfchest:copper_chest" }, "S": { "item": "minecraft:shulker_shell" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:copper_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/cyan_copper_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/cyan_copper_shulker_box.json index ec02853..89379bb 100644 --- a/src/main/resources/data/reinfshulker/recipes/cyan_copper_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/cyan_copper_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "minecraft:cyan_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:cyan_copper_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/cyan_diamond_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/cyan_diamond_shulker_box.json index 99a903d..79ac550 100644 --- a/src/main/resources/data/reinfshulker/recipes/cyan_diamond_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/cyan_diamond_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "reinfshulker:cyan_gold_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:cyan_diamond_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/cyan_gold_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/cyan_gold_shulker_box.json index e843435..8cb1229 100644 --- a/src/main/resources/data/reinfshulker/recipes/cyan_gold_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/cyan_gold_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "reinfshulker:cyan_iron_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:cyan_gold_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/cyan_iron_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/cyan_iron_shulker_box.json index da167eb..13eb425 100644 --- a/src/main/resources/data/reinfshulker/recipes/cyan_iron_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/cyan_iron_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "reinfshulker:cyan_copper_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:cyan_iron_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/cyan_netherite_shulker_box_smithing.json b/src/main/resources/data/reinfshulker/recipes/cyan_netherite_shulker_box_smithing.json index bb65d21..5738381 100644 --- a/src/main/resources/data/reinfshulker/recipes/cyan_netherite_shulker_box_smithing.json +++ b/src/main/resources/data/reinfshulker/recipes/cyan_netherite_shulker_box_smithing.json @@ -9,4 +9,4 @@ "result": { "item": "reinfshulker:cyan_netherite_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/diamond_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/diamond_shulker_box.json index b5b6e19..0285eb2 100644 --- a/src/main/resources/data/reinfshulker/recipes/diamond_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/diamond_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "reinfshulker:gold_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:diamond_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/diamond_shulker_box_from_diamond_chest.json b/src/main/resources/data/reinfshulker/recipes/diamond_shulker_box_from_diamond_chest.json index bc6bb68..9b6e2d7 100644 --- a/src/main/resources/data/reinfshulker/recipes/diamond_shulker_box_from_diamond_chest.json +++ b/src/main/resources/data/reinfshulker/recipes/diamond_shulker_box_from_diamond_chest.json @@ -1,13 +1,9 @@ { "type": "minecraft:crafting_shaped", - "pattern": [ - "S", - "C", - "S" - ], + "pattern": ["S", "C", "S"], "key": { "C": { - "tag": "c:diamond_chests" + "item": "reinfchest:diamond_chest" }, "S": { "item": "minecraft:shulker_shell" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:diamond_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/gold_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/gold_shulker_box.json index b5a33c4..3598052 100644 --- a/src/main/resources/data/reinfshulker/recipes/gold_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/gold_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "reinfshulker:iron_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:gold_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/gold_shulker_box_from_gold_chest.json b/src/main/resources/data/reinfshulker/recipes/gold_shulker_box_from_gold_chest.json index 756935b..ecc6967 100644 --- a/src/main/resources/data/reinfshulker/recipes/gold_shulker_box_from_gold_chest.json +++ b/src/main/resources/data/reinfshulker/recipes/gold_shulker_box_from_gold_chest.json @@ -1,13 +1,9 @@ { "type": "minecraft:crafting_shaped", - "pattern": [ - "S", - "C", - "S" - ], + "pattern": ["S", "C", "S"], "key": { "C": { - "tag": "c:gold_chests" + "item": "reinfchest:gold_chest" }, "S": { "item": "minecraft:shulker_shell" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:gold_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/gray_copper_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/gray_copper_shulker_box.json index 5f125da..fcbba70 100644 --- a/src/main/resources/data/reinfshulker/recipes/gray_copper_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/gray_copper_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "minecraft:gray_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:gray_copper_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/gray_diamond_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/gray_diamond_shulker_box.json index 0c5ed44..129383a 100644 --- a/src/main/resources/data/reinfshulker/recipes/gray_diamond_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/gray_diamond_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "reinfshulker:gray_gold_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:gray_diamond_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/gray_gold_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/gray_gold_shulker_box.json index f85192e..49b58fe 100644 --- a/src/main/resources/data/reinfshulker/recipes/gray_gold_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/gray_gold_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "reinfshulker:gray_iron_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:gray_gold_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/gray_iron_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/gray_iron_shulker_box.json index 8c436de..efc96cc 100644 --- a/src/main/resources/data/reinfshulker/recipes/gray_iron_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/gray_iron_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "reinfshulker:gray_copper_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:gray_iron_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/gray_netherite_shulker_box_smithing.json b/src/main/resources/data/reinfshulker/recipes/gray_netherite_shulker_box_smithing.json index 9dda024..f6a9bec 100644 --- a/src/main/resources/data/reinfshulker/recipes/gray_netherite_shulker_box_smithing.json +++ b/src/main/resources/data/reinfshulker/recipes/gray_netherite_shulker_box_smithing.json @@ -9,4 +9,4 @@ "result": { "item": "reinfshulker:gray_netherite_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/green_copper_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/green_copper_shulker_box.json index fe610ed..dd8a507 100644 --- a/src/main/resources/data/reinfshulker/recipes/green_copper_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/green_copper_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "minecraft:green_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:green_copper_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/green_diamond_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/green_diamond_shulker_box.json index eb7e701..1c2bb9f 100644 --- a/src/main/resources/data/reinfshulker/recipes/green_diamond_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/green_diamond_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "reinfshulker:green_gold_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:green_diamond_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/green_gold_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/green_gold_shulker_box.json index 1f021a7..1bf77cd 100644 --- a/src/main/resources/data/reinfshulker/recipes/green_gold_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/green_gold_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "reinfshulker:green_iron_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:green_gold_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/green_iron_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/green_iron_shulker_box.json index e6f6059..d3d4cf1 100644 --- a/src/main/resources/data/reinfshulker/recipes/green_iron_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/green_iron_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "reinfshulker:green_copper_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:green_iron_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/green_netherite_shulker_box_smithing.json b/src/main/resources/data/reinfshulker/recipes/green_netherite_shulker_box_smithing.json index 8434f0c..ae12688 100644 --- a/src/main/resources/data/reinfshulker/recipes/green_netherite_shulker_box_smithing.json +++ b/src/main/resources/data/reinfshulker/recipes/green_netherite_shulker_box_smithing.json @@ -9,4 +9,4 @@ "result": { "item": "reinfshulker:green_netherite_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/iron_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/iron_shulker_box.json index 4eb004a..4ebf411 100644 --- a/src/main/resources/data/reinfshulker/recipes/iron_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/iron_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "reinfshulker:copper_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:iron_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/iron_shulker_box_from_iron_chest.json b/src/main/resources/data/reinfshulker/recipes/iron_shulker_box_from_iron_chest.json index bf1e3e1..c11adda 100644 --- a/src/main/resources/data/reinfshulker/recipes/iron_shulker_box_from_iron_chest.json +++ b/src/main/resources/data/reinfshulker/recipes/iron_shulker_box_from_iron_chest.json @@ -1,13 +1,9 @@ { "type": "minecraft:crafting_shaped", - "pattern": [ - "S", - "C", - "S" - ], + "pattern": ["S", "C", "S"], "key": { "C": { - "tag": "c:iron_chests" + "item": "reinfchest:iron_chest" }, "S": { "item": "minecraft:shulker_shell" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:iron_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/light_blue_copper_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/light_blue_copper_shulker_box.json index 9f6eee5..3d814bf 100644 --- a/src/main/resources/data/reinfshulker/recipes/light_blue_copper_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/light_blue_copper_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "minecraft:light_blue_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:light_blue_copper_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/light_blue_diamond_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/light_blue_diamond_shulker_box.json index 0fa33db..fe53590 100644 --- a/src/main/resources/data/reinfshulker/recipes/light_blue_diamond_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/light_blue_diamond_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "reinfshulker:light_blue_gold_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:light_blue_diamond_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/light_blue_gold_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/light_blue_gold_shulker_box.json index ff8b0da..3482343 100644 --- a/src/main/resources/data/reinfshulker/recipes/light_blue_gold_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/light_blue_gold_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "reinfshulker:light_blue_iron_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:light_blue_gold_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/light_blue_iron_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/light_blue_iron_shulker_box.json index d7ab52f..abb88aa 100644 --- a/src/main/resources/data/reinfshulker/recipes/light_blue_iron_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/light_blue_iron_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "reinfshulker:light_blue_copper_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:light_blue_iron_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/light_blue_netherite_shulker_box_smithing.json b/src/main/resources/data/reinfshulker/recipes/light_blue_netherite_shulker_box_smithing.json index 1a0c349..7c379ab 100644 --- a/src/main/resources/data/reinfshulker/recipes/light_blue_netherite_shulker_box_smithing.json +++ b/src/main/resources/data/reinfshulker/recipes/light_blue_netherite_shulker_box_smithing.json @@ -9,4 +9,4 @@ "result": { "item": "reinfshulker:light_blue_netherite_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/light_gray_copper_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/light_gray_copper_shulker_box.json index a18390e..d45f233 100644 --- a/src/main/resources/data/reinfshulker/recipes/light_gray_copper_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/light_gray_copper_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "minecraft:light_gray_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:light_gray_copper_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/light_gray_diamond_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/light_gray_diamond_shulker_box.json index bb615b1..5fd9509 100644 --- a/src/main/resources/data/reinfshulker/recipes/light_gray_diamond_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/light_gray_diamond_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "reinfshulker:light_gray_gold_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:light_gray_diamond_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/light_gray_gold_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/light_gray_gold_shulker_box.json index 1b8712f..cc51d4b 100644 --- a/src/main/resources/data/reinfshulker/recipes/light_gray_gold_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/light_gray_gold_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "reinfshulker:light_gray_iron_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:light_gray_gold_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/light_gray_iron_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/light_gray_iron_shulker_box.json index 496c923..f5b6b09 100644 --- a/src/main/resources/data/reinfshulker/recipes/light_gray_iron_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/light_gray_iron_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "reinfshulker:light_gray_copper_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:light_gray_iron_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/light_gray_netherite_shulker_box_smithing.json b/src/main/resources/data/reinfshulker/recipes/light_gray_netherite_shulker_box_smithing.json index e7752ec..739456e 100644 --- a/src/main/resources/data/reinfshulker/recipes/light_gray_netherite_shulker_box_smithing.json +++ b/src/main/resources/data/reinfshulker/recipes/light_gray_netherite_shulker_box_smithing.json @@ -9,4 +9,4 @@ "result": { "item": "reinfshulker:light_gray_netherite_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/lime_copper_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/lime_copper_shulker_box.json index 2e85a24..15f1417 100644 --- a/src/main/resources/data/reinfshulker/recipes/lime_copper_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/lime_copper_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "minecraft:lime_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:lime_copper_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/lime_diamond_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/lime_diamond_shulker_box.json index b670c77..7d92f0e 100644 --- a/src/main/resources/data/reinfshulker/recipes/lime_diamond_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/lime_diamond_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "reinfshulker:lime_gold_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:lime_diamond_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/lime_gold_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/lime_gold_shulker_box.json index 5791e45..6d841ea 100644 --- a/src/main/resources/data/reinfshulker/recipes/lime_gold_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/lime_gold_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "reinfshulker:lime_iron_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:lime_gold_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/lime_iron_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/lime_iron_shulker_box.json index 5505f5d..5a1d4b1 100644 --- a/src/main/resources/data/reinfshulker/recipes/lime_iron_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/lime_iron_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "reinfshulker:lime_copper_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:lime_iron_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/lime_netherite_shulker_box_smithing.json b/src/main/resources/data/reinfshulker/recipes/lime_netherite_shulker_box_smithing.json index eb3aeac..f48dddf 100644 --- a/src/main/resources/data/reinfshulker/recipes/lime_netherite_shulker_box_smithing.json +++ b/src/main/resources/data/reinfshulker/recipes/lime_netherite_shulker_box_smithing.json @@ -9,4 +9,4 @@ "result": { "item": "reinfshulker:lime_netherite_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/magenta_copper_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/magenta_copper_shulker_box.json index 655b39c..b47d4a6 100644 --- a/src/main/resources/data/reinfshulker/recipes/magenta_copper_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/magenta_copper_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "minecraft:magenta_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:magenta_copper_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/magenta_diamond_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/magenta_diamond_shulker_box.json index 8778d67..e9f1cd9 100644 --- a/src/main/resources/data/reinfshulker/recipes/magenta_diamond_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/magenta_diamond_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "reinfshulker:magenta_gold_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:magenta_diamond_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/magenta_gold_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/magenta_gold_shulker_box.json index 87a58c4..69960f5 100644 --- a/src/main/resources/data/reinfshulker/recipes/magenta_gold_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/magenta_gold_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "reinfshulker:magenta_iron_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:magenta_gold_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/magenta_iron_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/magenta_iron_shulker_box.json index 8d1afbe..d53506c 100644 --- a/src/main/resources/data/reinfshulker/recipes/magenta_iron_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/magenta_iron_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "reinfshulker:magenta_copper_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:magenta_iron_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/magenta_netherite_shulker_box_smithing.json b/src/main/resources/data/reinfshulker/recipes/magenta_netherite_shulker_box_smithing.json index c96bd0c..7e3b7ee 100644 --- a/src/main/resources/data/reinfshulker/recipes/magenta_netherite_shulker_box_smithing.json +++ b/src/main/resources/data/reinfshulker/recipes/magenta_netherite_shulker_box_smithing.json @@ -9,4 +9,4 @@ "result": { "item": "reinfshulker:magenta_netherite_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/netherite_shulker_box_from_netherite_chest.json b/src/main/resources/data/reinfshulker/recipes/netherite_shulker_box_from_netherite_chest.json index 42df444..c2e3a83 100644 --- a/src/main/resources/data/reinfshulker/recipes/netherite_shulker_box_from_netherite_chest.json +++ b/src/main/resources/data/reinfshulker/recipes/netherite_shulker_box_from_netherite_chest.json @@ -1,13 +1,9 @@ { "type": "minecraft:crafting_shaped", - "pattern": [ - "S", - "C", - "S" - ], + "pattern": ["S", "C", "S"], "key": { "C": { - "tag": "c:netherite_chests" + "item": "reinfchest:netherite_chest" }, "S": { "item": "minecraft:shulker_shell" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:netherite_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/netherite_shulker_box_smithing.json b/src/main/resources/data/reinfshulker/recipes/netherite_shulker_box_smithing.json index 2631a24..b0a20a9 100644 --- a/src/main/resources/data/reinfshulker/recipes/netherite_shulker_box_smithing.json +++ b/src/main/resources/data/reinfshulker/recipes/netherite_shulker_box_smithing.json @@ -9,4 +9,4 @@ "result": { "item": "reinfshulker:netherite_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/orange_copper_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/orange_copper_shulker_box.json index 8c9548c..4183684 100644 --- a/src/main/resources/data/reinfshulker/recipes/orange_copper_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/orange_copper_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "minecraft:orange_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:orange_copper_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/orange_diamond_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/orange_diamond_shulker_box.json index 5567b4a..1bf992f 100644 --- a/src/main/resources/data/reinfshulker/recipes/orange_diamond_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/orange_diamond_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "reinfshulker:orange_gold_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:orange_diamond_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/orange_gold_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/orange_gold_shulker_box.json index 624884a..6424095 100644 --- a/src/main/resources/data/reinfshulker/recipes/orange_gold_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/orange_gold_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "reinfshulker:orange_iron_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:orange_gold_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/orange_iron_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/orange_iron_shulker_box.json index 69f5d57..ab7102e 100644 --- a/src/main/resources/data/reinfshulker/recipes/orange_iron_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/orange_iron_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "reinfshulker:orange_copper_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:orange_iron_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/orange_netherite_shulker_box_smithing.json b/src/main/resources/data/reinfshulker/recipes/orange_netherite_shulker_box_smithing.json index 65e9bf1..17561d7 100644 --- a/src/main/resources/data/reinfshulker/recipes/orange_netherite_shulker_box_smithing.json +++ b/src/main/resources/data/reinfshulker/recipes/orange_netherite_shulker_box_smithing.json @@ -9,4 +9,4 @@ "result": { "item": "reinfshulker:orange_netherite_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/pink_copper_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/pink_copper_shulker_box.json index bba69ba..4e5c279 100644 --- a/src/main/resources/data/reinfshulker/recipes/pink_copper_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/pink_copper_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "minecraft:pink_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:pink_copper_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/pink_diamond_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/pink_diamond_shulker_box.json index 4a4c3f6..15f49ed 100644 --- a/src/main/resources/data/reinfshulker/recipes/pink_diamond_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/pink_diamond_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "reinfshulker:pink_gold_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:pink_diamond_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/pink_gold_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/pink_gold_shulker_box.json index 07fd643..272063b 100644 --- a/src/main/resources/data/reinfshulker/recipes/pink_gold_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/pink_gold_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "reinfshulker:pink_iron_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:pink_gold_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/pink_iron_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/pink_iron_shulker_box.json index 1a4e6eb..2e123da 100644 --- a/src/main/resources/data/reinfshulker/recipes/pink_iron_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/pink_iron_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "reinfshulker:pink_copper_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:pink_iron_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/pink_netherite_shulker_box_smithing.json b/src/main/resources/data/reinfshulker/recipes/pink_netherite_shulker_box_smithing.json index c1dcdbf..1a719b9 100644 --- a/src/main/resources/data/reinfshulker/recipes/pink_netherite_shulker_box_smithing.json +++ b/src/main/resources/data/reinfshulker/recipes/pink_netherite_shulker_box_smithing.json @@ -9,4 +9,4 @@ "result": { "item": "reinfshulker:pink_netherite_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/purple_copper_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/purple_copper_shulker_box.json index b98cdd4..9c1300c 100644 --- a/src/main/resources/data/reinfshulker/recipes/purple_copper_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/purple_copper_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "minecraft:purple_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:purple_copper_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/purple_diamond_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/purple_diamond_shulker_box.json index a48e2e5..c054bd3 100644 --- a/src/main/resources/data/reinfshulker/recipes/purple_diamond_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/purple_diamond_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "reinfshulker:purple_gold_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:purple_diamond_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/purple_gold_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/purple_gold_shulker_box.json index 0d62f21..105f841 100644 --- a/src/main/resources/data/reinfshulker/recipes/purple_gold_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/purple_gold_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "reinfshulker:purple_iron_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:purple_gold_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/purple_iron_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/purple_iron_shulker_box.json index b4adb1b..ba6e674 100644 --- a/src/main/resources/data/reinfshulker/recipes/purple_iron_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/purple_iron_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "reinfshulker:purple_copper_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:purple_iron_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/purple_netherite_shulker_box_smithing.json b/src/main/resources/data/reinfshulker/recipes/purple_netherite_shulker_box_smithing.json index 8a688e5..7411713 100644 --- a/src/main/resources/data/reinfshulker/recipes/purple_netherite_shulker_box_smithing.json +++ b/src/main/resources/data/reinfshulker/recipes/purple_netherite_shulker_box_smithing.json @@ -9,4 +9,4 @@ "result": { "item": "reinfshulker:purple_netherite_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/red_copper_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/red_copper_shulker_box.json index b1c1916..e974300 100644 --- a/src/main/resources/data/reinfshulker/recipes/red_copper_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/red_copper_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "minecraft:red_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:red_copper_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/red_diamond_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/red_diamond_shulker_box.json index 32f5298..6f6ea1a 100644 --- a/src/main/resources/data/reinfshulker/recipes/red_diamond_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/red_diamond_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "reinfshulker:red_gold_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:red_diamond_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/red_gold_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/red_gold_shulker_box.json index 6a02505..a243f90 100644 --- a/src/main/resources/data/reinfshulker/recipes/red_gold_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/red_gold_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "reinfshulker:red_iron_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:red_gold_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/red_iron_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/red_iron_shulker_box.json index dd612c7..4069659 100644 --- a/src/main/resources/data/reinfshulker/recipes/red_iron_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/red_iron_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "reinfshulker:red_copper_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:red_iron_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/red_netherite_shulker_box_smithing.json b/src/main/resources/data/reinfshulker/recipes/red_netherite_shulker_box_smithing.json index 8c343c5..fd45ceb 100644 --- a/src/main/resources/data/reinfshulker/recipes/red_netherite_shulker_box_smithing.json +++ b/src/main/resources/data/reinfshulker/recipes/red_netherite_shulker_box_smithing.json @@ -9,4 +9,4 @@ "result": { "item": "reinfshulker:red_netherite_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/reinforced_shulker_box_coloring.json b/src/main/resources/data/reinfshulker/recipes/reinforced_shulker_box_coloring.json index 6d2ba69..9fd4ad3 100644 --- a/src/main/resources/data/reinfshulker/recipes/reinforced_shulker_box_coloring.json +++ b/src/main/resources/data/reinfshulker/recipes/reinforced_shulker_box_coloring.json @@ -1,3 +1,3 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerboxcoloring" -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/white_copper_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/white_copper_shulker_box.json index 94e0f93..6c17a10 100644 --- a/src/main/resources/data/reinfshulker/recipes/white_copper_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/white_copper_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "minecraft:white_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:white_copper_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/white_diamond_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/white_diamond_shulker_box.json index 475229d..24c16af 100644 --- a/src/main/resources/data/reinfshulker/recipes/white_diamond_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/white_diamond_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "reinfshulker:white_gold_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:white_diamond_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/white_gold_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/white_gold_shulker_box.json index f17f48d..8041f3d 100644 --- a/src/main/resources/data/reinfshulker/recipes/white_gold_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/white_gold_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "reinfshulker:white_iron_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:white_gold_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/white_iron_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/white_iron_shulker_box.json index 3071b93..ed3a103 100644 --- a/src/main/resources/data/reinfshulker/recipes/white_iron_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/white_iron_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "reinfshulker:white_copper_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:white_iron_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/white_netherite_shulker_box_smithing.json b/src/main/resources/data/reinfshulker/recipes/white_netherite_shulker_box_smithing.json index d1525da..cb8dc38 100644 --- a/src/main/resources/data/reinfshulker/recipes/white_netherite_shulker_box_smithing.json +++ b/src/main/resources/data/reinfshulker/recipes/white_netherite_shulker_box_smithing.json @@ -9,4 +9,4 @@ "result": { "item": "reinfshulker:white_netherite_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/yellow_copper_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/yellow_copper_shulker_box.json index 131feca..87029a8 100644 --- a/src/main/resources/data/reinfshulker/recipes/yellow_copper_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/yellow_copper_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "minecraft:yellow_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:yellow_copper_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/yellow_diamond_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/yellow_diamond_shulker_box.json index 1eb0c30..91ed218 100644 --- a/src/main/resources/data/reinfshulker/recipes/yellow_diamond_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/yellow_diamond_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "reinfshulker:yellow_gold_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:yellow_diamond_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/yellow_gold_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/yellow_gold_shulker_box.json index 66a51a8..c8fb765 100644 --- a/src/main/resources/data/reinfshulker/recipes/yellow_gold_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/yellow_gold_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "reinfshulker:yellow_iron_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:yellow_gold_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/yellow_iron_shulker_box.json b/src/main/resources/data/reinfshulker/recipes/yellow_iron_shulker_box.json index fca9cfe..a8d1bf7 100644 --- a/src/main/resources/data/reinfshulker/recipes/yellow_iron_shulker_box.json +++ b/src/main/resources/data/reinfshulker/recipes/yellow_iron_shulker_box.json @@ -1,10 +1,6 @@ { "type": "reinfshulker:crafting_special_reinforcedshulkerbox", - "pattern": [ - "MMM", - "MSM", - "MMM" - ], + "pattern": ["MMM", "MSM", "MMM"], "key": { "S": { "item": "reinfshulker:yellow_copper_shulker_box" @@ -16,4 +12,4 @@ "result": { "item": "reinfshulker:yellow_iron_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/recipes/yellow_netherite_shulker_box_smithing.json b/src/main/resources/data/reinfshulker/recipes/yellow_netherite_shulker_box_smithing.json index ee93bb8..f682ec7 100644 --- a/src/main/resources/data/reinfshulker/recipes/yellow_netherite_shulker_box_smithing.json +++ b/src/main/resources/data/reinfshulker/recipes/yellow_netherite_shulker_box_smithing.json @@ -9,4 +9,4 @@ "result": { "item": "reinfshulker:yellow_netherite_shulker_box" } -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/tags/blocks/copper_shulker_boxes.json b/src/main/resources/data/reinfshulker/tags/blocks/copper_shulker_boxes.json index a191513..d60fcf2 100644 --- a/src/main/resources/data/reinfshulker/tags/blocks/copper_shulker_boxes.json +++ b/src/main/resources/data/reinfshulker/tags/blocks/copper_shulker_boxes.json @@ -19,4 +19,4 @@ "reinfshulker:white_copper_shulker_box", "reinfshulker:yellow_copper_shulker_box" ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/tags/blocks/diamond_shulker_boxes.json b/src/main/resources/data/reinfshulker/tags/blocks/diamond_shulker_boxes.json index 2d28420..cc3b4a2 100644 --- a/src/main/resources/data/reinfshulker/tags/blocks/diamond_shulker_boxes.json +++ b/src/main/resources/data/reinfshulker/tags/blocks/diamond_shulker_boxes.json @@ -19,4 +19,4 @@ "reinfshulker:white_diamond_shulker_box", "reinfshulker:yellow_diamond_shulker_box" ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/tags/blocks/gold_shulker_boxes.json b/src/main/resources/data/reinfshulker/tags/blocks/gold_shulker_boxes.json index 283174d..ce7d7d6 100644 --- a/src/main/resources/data/reinfshulker/tags/blocks/gold_shulker_boxes.json +++ b/src/main/resources/data/reinfshulker/tags/blocks/gold_shulker_boxes.json @@ -19,4 +19,4 @@ "reinfshulker:white_gold_shulker_box", "reinfshulker:yellow_gold_shulker_box" ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/tags/blocks/iron_shulker_boxes.json b/src/main/resources/data/reinfshulker/tags/blocks/iron_shulker_boxes.json index af6beea..31d3d5f 100644 --- a/src/main/resources/data/reinfshulker/tags/blocks/iron_shulker_boxes.json +++ b/src/main/resources/data/reinfshulker/tags/blocks/iron_shulker_boxes.json @@ -19,4 +19,4 @@ "reinfshulker:white_iron_shulker_box", "reinfshulker:yellow_iron_shulker_box" ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/reinfshulker/tags/blocks/netherite_shulker_boxes.json b/src/main/resources/data/reinfshulker/tags/blocks/netherite_shulker_boxes.json index 795f6b9..32b8a2c 100644 --- a/src/main/resources/data/reinfshulker/tags/blocks/netherite_shulker_boxes.json +++ b/src/main/resources/data/reinfshulker/tags/blocks/netherite_shulker_boxes.json @@ -19,4 +19,4 @@ "reinfshulker:white_netherite_shulker_box", "reinfshulker:yellow_netherite_shulker_box" ] -} \ No newline at end of file +} diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 113a8af..9e6e42e 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -4,9 +4,7 @@ "version": "${version}", "name": "Reinforced Shulker Boxes", "description": "Adds reinforced shulker boxes.", - "authors": [ - "Aton-Kish" - ], + "authors": ["Aton-Kish"], "contact": { "homepage": "https://www.curseforge.com/minecraft/mc-mods/reinforced-shulker-boxes", "sources": "https://github.com/Aton-Kish/reinforced-shulker-boxes", @@ -16,10 +14,9 @@ "icon": "assets/reinfshulker/icon.png", "environment": "*", "entrypoints": { - "main": [ - "atonkish.reinfshulker.ReinforcedShulkerBoxesMod" - ], - "client": [ + "main": ["atonkish.reinfshulker.ReinforcedShulkerBoxesMod"], + "reinfcore": ["atonkish.reinfshulker.ReinforcedShulkerBoxesMod"], + "reinfcoreclient": [ "atonkish.reinfshulker.ReinforcedShulkerBoxesClientMod" ], "quickshulker": [ @@ -29,9 +26,7 @@ "atonkish.reinfshulker.integration.shulkerboxtooltip.ShulkerBoxTooltip" ] }, - "mixins": [ - "reinfshulker.mixins.json" - ], + "mixins": ["reinfshulker.mixins.json"], "depends": { "fabricloader": ">=0.11.3", "fabric": "*", diff --git a/src/main/resources/reinfshulker.mixins.json b/src/main/resources/reinfshulker.mixins.json index b5d6a4a..f3fdb21 100644 --- a/src/main/resources/reinfshulker.mixins.json +++ b/src/main/resources/reinfshulker.mixins.json @@ -5,14 +5,14 @@ "compatibilityLevel": "JAVA_16", "mixins": [ "AbstractCauldronBlockMixin", - "BlockEntityMixin", + "BlockEntityAccessor", "ShulkerBoxBlockMixin", - "ShulkerBoxColoringRecipeMixin" - ], - "client": [ - "TexturedRenderLayersMixin" + "ShulkerBoxColoringRecipeMixin", + "RecipeManagerMixin", + "ServerAdvancementLoaderMixin" ], + "client": ["TexturedRenderLayersMixin"], "injectors": { "defaultRequire": 1 } -} \ No newline at end of file +}