diff --git a/build.gradle b/build.gradle index 0a2b1b75f..717a4e10b 100644 --- a/build.gradle +++ b/build.gradle @@ -39,7 +39,8 @@ minecraft { dependencies { compileOnly group: 'org.spongepowered', name: 'mixin', version: '0.8.5' compileOnlyApi('org.jetbrains:annotations:23.0.0') - compileOnlyApi('com.epherical.epherolib:EpheroLib:1.2.0-1.20.6') + // compileOnlyApi('com.epherical.epherolib:EpheroLib:1.2.0-1.20.6') + compileOnlyApi files("jars/EpheroLib-FABRIC-1.2.0-1.21.5.jar") } sourceSets { diff --git a/fabric/build.gradle b/fabric/build.gradle index 3df306bdb..a6a83042c 100644 --- a/fabric/build.gradle +++ b/fabric/build.gradle @@ -1,7 +1,7 @@ import net.fabricmc.loom.task.RemapJarTask plugins { - id 'fabric-loom' version '1.6-SNAPSHOT' + id 'fabric-loom' version '1.11-SNAPSHOT' id 'com.github.johnrengelman.shadow' version '8.1.1' } @@ -45,12 +45,15 @@ dependencies { minecraft "com.mojang:minecraft:${rootProject.mc_ver}" mappings loom.layered() { officialMojangMappings() - parchment("org.parchmentmc.data:parchment-1.20.1:2023.07.09") + parchment("org.parchmentmc.data:parchment-${parchment_version}") } modImplementation "net.fabricmc:fabric-loader:${rootProject.loader_version}" modImplementation "net.fabricmc.fabric-api:fabric-api:${rootProject.fabric_version}" - modImplementation('com.epherical.epherolib:EpheroLib-fabric:1.2.0-1.20.6') - modCompileOnly "vazkii.patchouli:Patchouli:1.20.1-84-FABRIC-SNAPSHOT" + //modImplementation('com.epherical.epherolib:EpheroLib-fabric:1.2.0-1.20.6') + modImplementation files("../jars/EpheroLib-FABRIC-1.2.0-1.21.5.jar") + modCompileOnly "vazkii.patchouli:Patchouli:1.21-88-FABRIC",{ + exclude(group: "net.fabricmc.fabric-api") + } modCompileOnly "com.terraformersmc:modmenu:${rootProject.modmenu_version}",{ exclude(group: "net.fabricmc.fabric-api") @@ -78,7 +81,7 @@ loom { } datagen { - server() + inherit client name "Data Generation" vmArg "-Dfabric-api.datagen" vmArg "-Dfabric-api.datagen.output-dir=${getRootProject().file("src/main/generated")}" @@ -94,6 +97,7 @@ processResources { from(sourceSets.main.resources.srcDirs) { include "fabric.mod.json" expand "mod_version": rootProject.version + duplicatesStrategy = DuplicatesStrategy.INCLUDE } //from(sourceSets.main.resources.srcDirs) { diff --git a/fabric/src/main/java/com/epherical/croptopia/Croptopia.java b/fabric/src/main/java/com/epherical/croptopia/Croptopia.java index 1a61d33dd..8273d0b62 100644 --- a/fabric/src/main/java/com/epherical/croptopia/Croptopia.java +++ b/fabric/src/main/java/com/epherical/croptopia/Croptopia.java @@ -23,7 +23,9 @@ import net.minecraft.core.Registry; import net.minecraft.core.component.DataComponents; import net.minecraft.core.registries.BuiltInRegistries; +import net.minecraft.core.registries.Registries; import net.minecraft.network.chat.Component; +import net.minecraft.resources.ResourceKey; import net.minecraft.resources.ResourceLocation; import net.minecraft.world.item.CreativeModeTab; import net.minecraft.world.item.CreativeModeTabs; @@ -65,12 +67,13 @@ public void onInitialize() { - Content.registerBlocks((id, object) -> Registry.register(BuiltInRegistries.BLOCK, id, object.get())); + Content.registerBlocks((id, fn) -> Registry.register(BuiltInRegistries.BLOCK, id, fn.apply(id))); mod.platform().registerFlammableBlocks(); - Content.GUIDE = new GuideBookItem(createGroup()); - Registry.register(BuiltInRegistries.ITEM, CroptopiaMod.createIdentifier(ItemNamesV2.GUIDE), Content.GUIDE); + final ResourceLocation guideBookId = CroptopiaMod.createIdentifier(ItemNamesV2.GUIDE); + Content.GUIDE = new GuideBookItem(createGroup(guideBookId)); + Registry.register(BuiltInRegistries.ITEM, guideBookId, Content.GUIDE); - Content.registerItems((id, object) -> Registry.register(BuiltInRegistries.ITEM, id, object.get())); + Content.registerItems((id, fn) -> Registry.register(BuiltInRegistries.ITEM, id, fn.apply(id))); ItemGroupEvents.modifyEntriesEvent(CreativeModeTabs.NATURAL_BLOCKS).register(entries -> { entries.addAfter(Items.MANGROVE_PROPAGULE, Content.CINNAMON.getSapling()); diff --git a/fabric/src/main/java/com/epherical/croptopia/CroptopiaVillagerTrades.java b/fabric/src/main/java/com/epherical/croptopia/CroptopiaVillagerTrades.java index 90528e18f..f1030926c 100644 --- a/fabric/src/main/java/com/epherical/croptopia/CroptopiaVillagerTrades.java +++ b/fabric/src/main/java/com/epherical/croptopia/CroptopiaVillagerTrades.java @@ -1,12 +1,8 @@ package com.epherical.croptopia; -import net.fabricmc.fabric.api.object.builder.v1.trade.TradeOfferHelper; -import net.minecraft.world.entity.npc.VillagerProfession; import net.minecraft.world.entity.npc.VillagerTrades; import net.minecraft.world.item.Item; -import net.minecraft.world.item.ItemStack; -import net.minecraft.world.item.Items; -import net.minecraft.world.item.trading.MerchantOffer; + import java.util.List; public class CroptopiaVillagerTrades { diff --git a/fabric/src/main/java/com/epherical/croptopia/FabricAdapter.java b/fabric/src/main/java/com/epherical/croptopia/FabricAdapter.java index 6e9b92a42..1e3138f9b 100644 --- a/fabric/src/main/java/com/epherical/croptopia/FabricAdapter.java +++ b/fabric/src/main/java/com/epherical/croptopia/FabricAdapter.java @@ -3,15 +3,11 @@ import com.epherical.croptopia.common.PlatformAdapter; import com.epherical.croptopia.event.DrinkEvent; import com.epherical.croptopia.register.Content; -import com.epherical.epherolib.CommonPlatform; import com.epherical.epherolib.FabricPlatform; -import net.fabricmc.api.EnvType; import net.fabricmc.fabric.api.event.player.PlayerBlockBreakEvents; import net.fabricmc.fabric.api.registry.FlammableBlockRegistry; -import net.fabricmc.fabric.impl.content.registry.FlammableBlockRegistryImpl; import net.fabricmc.loader.api.FabricLoader; import net.minecraft.core.BlockPos; -import net.minecraft.server.level.ServerPlayer; import net.minecraft.world.entity.player.Player; import net.minecraft.world.item.CreativeModeTab; import net.minecraft.world.item.ItemStack; diff --git a/fabric/src/main/java/com/epherical/croptopia/SetupCommand.java b/fabric/src/main/java/com/epherical/croptopia/SetupCommand.java index fb1d8b342..e67d00225 100644 --- a/fabric/src/main/java/com/epherical/croptopia/SetupCommand.java +++ b/fabric/src/main/java/com/epherical/croptopia/SetupCommand.java @@ -5,7 +5,6 @@ import com.mojang.brigadier.CommandDispatcher; import com.mojang.brigadier.exceptions.CommandSyntaxException; import com.mojang.brigadier.exceptions.SimpleCommandExceptionType; -import net.fabricmc.fabric.impl.content.registry.FireBlockHooks; import net.minecraft.commands.CommandBuildContext; import net.minecraft.commands.CommandSourceStack; import net.minecraft.commands.Commands; @@ -52,7 +51,7 @@ private static int execute(CommandSourceStack source, BlockPos pos, BlockInput b world.setBlock(pos.offset(2, 0, 0), block.getState().setValue(BlockStateProperties.AGE_7, 5), 2); world.setBlock(pos.offset(3, 0, 0), block.getState().setValue(BlockStateProperties.AGE_7, 7), 2); - serverWorld.blockUpdated(pos, block.getState().getBlock()); + serverWorld.sendBlockUpdated(pos, block.getState(), block.getState(), 0); // REVIEW 1.21.5 source.sendSuccess(() -> Component.translatable("commands.setblock.success", pos.getX(), pos.getY(), pos.getZ()), true); return 1; } diff --git a/fabric/src/main/java/com/epherical/croptopia/client/CroptopiaClient.java b/fabric/src/main/java/com/epherical/croptopia/client/CroptopiaClient.java index e786e85ed..79caf6964 100644 --- a/fabric/src/main/java/com/epherical/croptopia/client/CroptopiaClient.java +++ b/fabric/src/main/java/com/epherical/croptopia/client/CroptopiaClient.java @@ -1,16 +1,12 @@ package com.epherical.croptopia.client; import com.epherical.croptopia.ClientFunctions; -import com.epherical.croptopia.CroptopiaMod; -import com.epherical.croptopia.blocks.LeafCropBlock; import net.fabricmc.api.ClientModInitializer; import net.fabricmc.api.EnvType; import net.fabricmc.api.Environment; import net.fabricmc.fabric.api.blockrenderlayer.v1.BlockRenderLayerMap; import net.fabricmc.fabric.api.client.rendering.v1.ColorProviderRegistry; -import net.minecraft.client.renderer.BiomeColors; import net.minecraft.client.renderer.RenderType; -import net.minecraft.world.level.FoliageColor; import net.minecraft.world.level.block.Block; diff --git a/fabric/src/main/java/com/epherical/croptopia/datagen/CroptopiaBiomeTagProvider.java b/fabric/src/main/java/com/epherical/croptopia/datagen/CroptopiaBiomeTagProvider.java index dc9f01a1e..6f017119c 100644 --- a/fabric/src/main/java/com/epherical/croptopia/datagen/CroptopiaBiomeTagProvider.java +++ b/fabric/src/main/java/com/epherical/croptopia/datagen/CroptopiaBiomeTagProvider.java @@ -5,7 +5,6 @@ import net.minecraft.data.PackOutput; import net.minecraft.data.tags.TagsProvider; import net.minecraft.world.level.biome.Biome; -import net.minecraft.world.level.block.ComposterBlock; import java.util.concurrent.CompletableFuture; diff --git a/fabric/src/main/java/com/epherical/croptopia/datagen/CroptopiaBlockTagProvider.java b/fabric/src/main/java/com/epherical/croptopia/datagen/CroptopiaBlockTagProvider.java index 041e5657a..cb5500f5f 100644 --- a/fabric/src/main/java/com/epherical/croptopia/datagen/CroptopiaBlockTagProvider.java +++ b/fabric/src/main/java/com/epherical/croptopia/datagen/CroptopiaBlockTagProvider.java @@ -4,21 +4,14 @@ import com.epherical.croptopia.register.helpers.FarmlandCrop; import com.epherical.croptopia.register.helpers.Tree; import com.epherical.croptopia.register.helpers.TreeCrop; -import net.fabricmc.fabric.api.datagen.v1.FabricDataGenerator; -import net.fabricmc.fabric.api.datagen.v1.FabricDataOutput; -import net.fabricmc.fabric.api.datagen.v1.provider.FabricTagProvider; import net.minecraft.core.HolderLookup; -import net.minecraft.core.Registry; import net.minecraft.core.registries.Registries; import net.minecraft.data.PackOutput; import net.minecraft.data.tags.IntrinsicHolderTagsProvider; -import net.minecraft.resources.ResourceKey; import net.minecraft.tags.BlockTags; -import net.minecraft.tags.ItemTags; import net.minecraft.world.level.block.Block; import java.util.concurrent.CompletableFuture; -import java.util.function.Function; public class CroptopiaBlockTagProvider extends IntrinsicHolderTagsProvider { diff --git a/fabric/src/main/java/com/epherical/croptopia/datagen/CroptopiaDataGeneratorEntry.java b/fabric/src/main/java/com/epherical/croptopia/datagen/CroptopiaDataGeneratorEntry.java index 543b4f667..a1083313e 100644 --- a/fabric/src/main/java/com/epherical/croptopia/datagen/CroptopiaDataGeneratorEntry.java +++ b/fabric/src/main/java/com/epherical/croptopia/datagen/CroptopiaDataGeneratorEntry.java @@ -1,10 +1,13 @@ package com.epherical.croptopia.datagen; import com.epherical.croptopia.common.generator.ConfiguredFeatureKeys; +import com.epherical.croptopia.register.Content; import com.epherical.croptopia.register.helpers.Tree; import com.epherical.croptopia.register.helpers.TreeCrop; +import net.fabricmc.api.EnvType; import net.fabricmc.fabric.api.datagen.v1.DataGeneratorEntrypoint; import net.fabricmc.fabric.api.datagen.v1.FabricDataGenerator; +import net.fabricmc.loader.api.FabricLoader; import net.minecraft.core.RegistrySetBuilder; import net.minecraft.core.registries.Registries; @@ -18,7 +21,11 @@ public void onInitializeDataGenerator(FabricDataGenerator fabricDataGenerator) { resources.addProvider(CroptopiaBiomeTagProvider::new); resources.addProvider(CroptopiaIndependentItemTagProvider::new); // tags always first - resources.addProvider(CroptopiaModelProvider::new); + if (FabricLoader.getInstance().getEnvironmentType() == EnvType.CLIENT) { + resources.addProvider(CroptopiaModelProvider::new); + } else { + Content.class.getName(); + } resources.addProvider(CroptopiaRecipeProvider::new); resources.addProvider(CroptopiaWorldGeneration::new); } diff --git a/fabric/src/main/java/com/epherical/croptopia/datagen/CroptopiaIndependentItemTagProvider.java b/fabric/src/main/java/com/epherical/croptopia/datagen/CroptopiaIndependentItemTagProvider.java index d1cba6210..9e86b992e 100644 --- a/fabric/src/main/java/com/epherical/croptopia/datagen/CroptopiaIndependentItemTagProvider.java +++ b/fabric/src/main/java/com/epherical/croptopia/datagen/CroptopiaIndependentItemTagProvider.java @@ -3,7 +3,6 @@ import com.epherical.croptopia.Croptopia; import com.epherical.croptopia.mixin.datagen.IdentifierAccessor; import com.epherical.croptopia.mixin.datagen.ObjectBuilderAccessor; -import com.epherical.croptopia.mixin.datagen.PathProviderAccessor; import com.epherical.croptopia.mixin.datagen.TagProviderAccessor; import com.epherical.croptopia.register.Content; import com.epherical.croptopia.register.TagCategory; @@ -19,22 +18,15 @@ import com.epherical.croptopia.register.helpers.TreeCrop; import com.epherical.croptopia.register.helpers.Utensil; import com.epherical.croptopia.util.PluralInfo; -import net.fabricmc.fabric.api.datagen.v1.FabricDataGenerator; import net.fabricmc.fabric.api.datagen.v1.FabricDataOutput; import net.fabricmc.fabric.api.datagen.v1.provider.FabricTagProvider; import net.fabricmc.fabric.impl.datagen.ForcedTagEntry; import net.minecraft.core.HolderLookup; -import net.minecraft.core.Registry; import net.minecraft.core.registries.Registries; -import net.minecraft.data.CachedOutput; -import net.minecraft.data.DataGenerator; import net.minecraft.data.PackOutput; -import net.minecraft.data.tags.ItemTagsProvider; -import net.minecraft.data.tags.VanillaItemTagsProvider; import net.minecraft.resources.ResourceLocation; import net.minecraft.tags.TagEntry; import net.minecraft.tags.TagKey; -import net.minecraft.tags.TagManager; import net.minecraft.world.item.Item; import net.minecraft.world.item.Items; diff --git a/fabric/src/main/java/com/epherical/croptopia/datagen/CroptopiaModelProvider.java b/fabric/src/main/java/com/epherical/croptopia/datagen/CroptopiaModelProvider.java index c82aab0d9..afdff4027 100644 --- a/fabric/src/main/java/com/epherical/croptopia/datagen/CroptopiaModelProvider.java +++ b/fabric/src/main/java/com/epherical/croptopia/datagen/CroptopiaModelProvider.java @@ -1,12 +1,37 @@ package com.epherical.croptopia.datagen; +import com.epherical.croptopia.CroptopiaMod; import com.epherical.croptopia.register.Content; -import net.fabricmc.fabric.api.datagen.v1.FabricDataGenerator; +import com.epherical.croptopia.register.helpers.FarmlandCrop; +import com.epherical.croptopia.register.helpers.Tree; +import com.epherical.croptopia.register.helpers.TreeCrop; +import com.epherical.croptopia.util.RegisterFunction; +import com.ibm.icu.text.Normalizer2.Mode; +import net.fabricmc.fabric.api.client.rendering.v1.EntityModelLayerRegistry.TexturedModelDataProvider; import net.fabricmc.fabric.api.datagen.v1.FabricDataOutput; -import net.fabricmc.fabric.api.datagen.v1.provider.FabricModelProvider; -import net.minecraft.data.models.BlockModelGenerators; -import net.minecraft.data.models.ItemModelGenerators; -import net.minecraft.data.models.model.ModelTemplates; +import net.fabricmc.fabric.api.client.datagen.v1.provider.FabricModelProvider; +import net.minecraft.client.data.models.BlockModelGenerators; +import net.minecraft.client.data.models.ItemModelGenerators; +import net.minecraft.client.data.models.model.ItemModelUtils; +import net.minecraft.client.data.models.model.ModelLocationUtils; +import net.minecraft.client.data.models.model.ModelTemplate; +import net.minecraft.client.data.models.model.ModelTemplates; +import net.minecraft.client.data.models.model.TextureMapping; +import net.minecraft.client.data.models.model.TexturedModel; +import net.minecraft.client.renderer.item.BlockModelWrapper; +import net.minecraft.client.renderer.item.ItemModel; +import net.minecraft.client.renderer.item.ItemModels; +import net.minecraft.resources.ResourceLocation; +import net.minecraft.world.item.Item; +import net.minecraft.world.level.ItemLike; +import net.minecraft.world.level.block.Block; + +import java.lang.reflect.Field; +import java.lang.reflect.Modifier; +import java.util.HashSet; +import java.util.Iterator; +import java.util.Map; +import java.util.Set; public class CroptopiaModelProvider extends FabricModelProvider { @@ -17,60 +42,68 @@ public CroptopiaModelProvider(FabricDataOutput output) { @Override public void generateBlockStateModels(BlockModelGenerators blockStateModelGenerator) { - + //blockStateModelGenerator.createFlatItemModelWithBlockTexture(Content.ALMOND.getSaplingItem(), Content.ALMOND.asBlock()); + // REVIEW 1.21.5 + //for(final Block block : CroptopiaMod.leafBlocks) blockStateModelGenerator.createTintedLeaves(block, TexturedModel.LEAVES, 0); + //for(final Block block : CroptopiaMod.cropBlocks) blockStateModelGenerator.createTintedLeaves(block, TexturedModel.LEAVES, 0); } + @Override - public void generateItemModels(ItemModelGenerators itemModelGenerator) { - itemModelGenerator.generateFlatItem(Content.ROASTED_PUMPKIN_SEEDS, ModelTemplates.FLAT_ITEM); - itemModelGenerator.generateFlatItem(Content.ROASTED_SUNFLOWER_SEEDS, ModelTemplates.FLAT_ITEM); - itemModelGenerator.generateFlatItem(Content.PUMPKIN_BARS, ModelTemplates.FLAT_ITEM); - itemModelGenerator.generateFlatItem(Content.CORN_BREAD, ModelTemplates.FLAT_ITEM); - itemModelGenerator.generateFlatItem(Content.PUMPKIN_SOUP, ModelTemplates.FLAT_ITEM); - itemModelGenerator.generateFlatItem(Content.MERINGUE, ModelTemplates.FLAT_ITEM); - itemModelGenerator.generateFlatItem(Content.CABBAGE_ROLL, ModelTemplates.FLAT_ITEM); - itemModelGenerator.generateFlatItem(Content.BORSCHT, ModelTemplates.FLAT_ITEM); - itemModelGenerator.generateFlatItem(Content.GOULASH, ModelTemplates.FLAT_ITEM); - itemModelGenerator.generateFlatItem(Content.BEETROOT_SALAD, ModelTemplates.FLAT_ITEM); - itemModelGenerator.generateFlatItem(Content.CANDIED_KUMQUATS, ModelTemplates.FLAT_ITEM); - itemModelGenerator.generateFlatItem(Content.SHRIMP.asItem(), ModelTemplates.FLAT_ITEM); - itemModelGenerator.generateFlatItem(Content.TUNA.asItem(), ModelTemplates.FLAT_ITEM); - itemModelGenerator.generateFlatItem(Content.CALAMARI.asItem(), ModelTemplates.FLAT_ITEM); - itemModelGenerator.generateFlatItem(Content.CRAB.asItem(), ModelTemplates.FLAT_ITEM); - itemModelGenerator.generateFlatItem(Content.ROE.asItem(), ModelTemplates.FLAT_ITEM); - itemModelGenerator.generateFlatItem(Content.CLAM.asItem(), ModelTemplates.FLAT_ITEM); - itemModelGenerator.generateFlatItem(Content.OYSTER.asItem(), ModelTemplates.FLAT_ITEM); - itemModelGenerator.generateFlatItem(Content.COOKED_SHRIMP.asItem(), ModelTemplates.FLAT_ITEM); - itemModelGenerator.generateFlatItem(Content.COOKED_TUNA.asItem(), ModelTemplates.FLAT_ITEM); - itemModelGenerator.generateFlatItem(Content.COOKED_CALAMARI.asItem(), ModelTemplates.FLAT_ITEM); - itemModelGenerator.generateFlatItem(Content.STEAMED_CRAB, ModelTemplates.FLAT_ITEM); - itemModelGenerator.generateFlatItem(Content.GLOWING_CALAMARI.asItem(), ModelTemplates.FLAT_ITEM); - itemModelGenerator.generateFlatItem(Content.SEA_LETTUCE, ModelTemplates.FLAT_ITEM); - itemModelGenerator.generateFlatItem(Content.DEEP_FRIED_SHRIMP, ModelTemplates.FLAT_ITEM); - itemModelGenerator.generateFlatItem(Content.TUNA_ROLL, ModelTemplates.FLAT_ITEM); - itemModelGenerator.generateFlatItem(Content.FRIED_CALAMARI, ModelTemplates.FLAT_ITEM); - itemModelGenerator.generateFlatItem(Content.CRAB_LEGS, ModelTemplates.FLAT_ITEM); - itemModelGenerator.generateFlatItem(Content.STEAMED_CLAMS, ModelTemplates.FLAT_ITEM); - itemModelGenerator.generateFlatItem(Content.GRILLED_OYSTERS, ModelTemplates.FLAT_ITEM); - itemModelGenerator.generateFlatItem(Content.ANCHOVY.asItem(), ModelTemplates.FLAT_ITEM); - itemModelGenerator.generateFlatItem(Content.COOKED_ANCHOVY.asItem(), ModelTemplates.FLAT_ITEM); - itemModelGenerator.generateFlatItem(Content.ANCHOVY_PIZZA, ModelTemplates.FLAT_ITEM); - itemModelGenerator.generateFlatItem(Content.MASHED_POTATOES, ModelTemplates.FLAT_ITEM); - - itemModelGenerator.generateFlatItem(Content.BAKED_CREPES, ModelTemplates.FLAT_ITEM); - itemModelGenerator.generateFlatItem(Content.CINNAMON_ROLL, ModelTemplates.FLAT_ITEM); - itemModelGenerator.generateFlatItem(Content.CROQUE_MADAME, ModelTemplates.FLAT_ITEM); - itemModelGenerator.generateFlatItem(Content.CROQUE_MONSIEUR, ModelTemplates.FLAT_ITEM); - itemModelGenerator.generateFlatItem(Content.DAUPHINE_POTATOES, ModelTemplates.FLAT_ITEM); - itemModelGenerator.generateFlatItem(Content.FRIED_FROG_LEGS, ModelTemplates.FLAT_ITEM); - itemModelGenerator.generateFlatItem(Content.FROG_LEGS, ModelTemplates.FLAT_ITEM); - itemModelGenerator.generateFlatItem(Content.GROUND_PORK, ModelTemplates.FLAT_ITEM); - itemModelGenerator.generateFlatItem(Content.HASHED_BROWN, ModelTemplates.FLAT_ITEM); - itemModelGenerator.generateFlatItem(Content.MACARON, ModelTemplates.FLAT_ITEM); - itemModelGenerator.generateFlatItem(Content.QUICHE, ModelTemplates.FLAT_ITEM); - itemModelGenerator.generateFlatItem(Content.SAUSAGE, ModelTemplates.FLAT_ITEM); - itemModelGenerator.generateFlatItem(Content.SUNNY_SIDE_EGGS, ModelTemplates.FLAT_ITEM); - itemModelGenerator.generateFlatItem(Content.SWEET_CREPES, ModelTemplates.FLAT_ITEM); - itemModelGenerator.generateFlatItem(Content.THE_BIG_BREAKFAST, ModelTemplates.FLAT_ITEM); + public void generateItemModels(ItemModelGenerators generator) { + // REVIEW 1.21.5 + // As of minecraft 1.21.4, it apparently requires an item file json file for ALL of the models. + // Without this, the items appear with the default placeholder texture. + // https://forums.minecraftforge.net/topic/154686-1214-item-textures-not-displaying/ + + + + + //generator.generateFlatItem(Item.); + + + // So here we just go and reflectively grab all of the item constants from the Content class. + // It would be a bit nicer if this were either an enum or a registrar of some sort so we + // didn't have to rely on refelction. + for (Field field : Content.class.getDeclaredFields()) { + if (field.getName().startsWith("SALT_ORE") || field.getName().equals("GUIDE")) { + continue; // these are handled by hand in resources + } + if (Modifier.isStatic(field.getModifiers())) { + try { + final Object value = field.get(null); + if (value instanceof Tree) { + continue; // handled by hand + } else if (value instanceof Item item) { + generator.generateFlatItem(item, ModelTemplates.FLAT_ITEM); + } else if (value instanceof FarmlandCrop farmlandCrop) { + generator.generateFlatItem(farmlandCrop.asItem(), ModelTemplates.FLAT_ITEM); + generator.generateFlatItem(farmlandCrop.getSeedItem(), ModelTemplates.FLAT_ITEM); + } else if (value instanceof TreeCrop treeCrop) { + generator.generateFlatItem(treeCrop.asItem(), ModelTemplates.FLAT_ITEM); + // the sapling items reuse the block textures, so we have to: + final ResourceLocation saplingModel = ModelTemplates.FLAT_ITEM.create( + ModelLocationUtils.getModelLocation(treeCrop.getSaplingItem()), + TextureMapping.layer0(TextureMapping.getBlockTexture(treeCrop.getSaplingBlock())), generator.modelOutput + ); + generator.itemModelOutput.accept(treeCrop.getSaplingItem(), ItemModelUtils.plainModel(saplingModel)); + } else if (value instanceof ItemLike itemLike) { + generator.generateFlatItem(itemLike.asItem(), ModelTemplates.FLAT_ITEM); + } + } catch (IllegalAccessException ohWell) {} + } + } } + + /** + * For items that reuse the block textures. + */ + private static void generateFlatItemWithBlockTexture(ItemModelGenerators generator, Item item, Block block) { + final ResourceLocation saplingModel = ModelTemplates.FLAT_ITEM.create( + ModelLocationUtils.getModelLocation(item), + TextureMapping.layer0(TextureMapping.getBlockTexture(block)), generator.modelOutput + ); + generator.itemModelOutput.accept(item, ItemModelUtils.plainModel(saplingModel)); + } + } diff --git a/fabric/src/main/java/com/epherical/croptopia/datagen/CroptopiaRecipeProvider.java b/fabric/src/main/java/com/epherical/croptopia/datagen/CroptopiaRecipeProvider.java index 1435a2840..32e36a0f3 100644 --- a/fabric/src/main/java/com/epherical/croptopia/datagen/CroptopiaRecipeProvider.java +++ b/fabric/src/main/java/com/epherical/croptopia/datagen/CroptopiaRecipeProvider.java @@ -18,6 +18,8 @@ import net.fabricmc.fabric.api.datagen.v1.FabricDataOutput; import net.fabricmc.fabric.api.datagen.v1.provider.FabricRecipeProvider; import net.minecraft.Util; +import net.minecraft.core.HolderGetter; +import net.minecraft.core.HolderLookup; import net.minecraft.core.registries.Registries; import net.minecraft.data.recipes.RecipeCategory; import net.minecraft.data.recipes.RecipeOutput; @@ -36,128 +38,145 @@ import java.util.concurrent.CompletableFuture; +import static net.minecraft.data.recipes.RecipeCategory.MISC; + public class CroptopiaRecipeProvider extends FabricRecipeProvider { - public CroptopiaRecipeProvider(FabricDataOutput output) { - super(output, CompletableFuture.supplyAsync(VanillaRegistries::createLookup, Util.backgroundExecutor())); + @Override + protected RecipeProvider createRecipeProvider(HolderLookup.Provider provider, RecipeOutput recipeOutput) { + + return new RecipeProvider(provider, recipeOutput) { + @Override + public void buildRecipes() { + + final HolderGetter items = registries.lookupOrThrow(Registries.ITEM); + + generateSeeds(this, items, recipeOutput); + generateSaplings(this, items, recipeOutput); + generateBarkWood(this, items, recipeOutput); + generateJams(this, items, recipeOutput); + generateJuices(this, items, recipeOutput); + generateSmoothies(this, items, recipeOutput); + generateIceCream(this, items, recipeOutput); + generatePie(this, items, recipeOutput); + generateFurnace(this, items, recipeOutput); + generateUtensil(this, items, recipeOutput); + generateMiscShapeless(this, items, recipeOutput); + generateMiscShaped(this, items, recipeOutput); + } + }; } @Override - public void buildRecipes(RecipeOutput exporter) { - generateSeeds(exporter); - generateSaplings(exporter); - generateBarkWood(exporter); - generateJams(exporter); - generateJuices(exporter); - generateSmoothies(exporter); - generateIceCream(exporter); - generatePie(exporter); - generateFurnace(exporter); - generateUtensil(exporter); - generateMiscShapeless(exporter); - generateMiscShaped(exporter); + public String getName() { + return "CroptopiaRecipes"; + } + + public CroptopiaRecipeProvider(FabricDataOutput output) { + super(output, CompletableFuture.supplyAsync(VanillaRegistries::createLookup, Util.backgroundExecutor())); } - protected void generateSeeds(RecipeOutput exporter) { + + protected void generateSeeds(RecipeProvider recipeProvider, HolderGetter items, RecipeOutput exporter) { for (FarmlandCrop crop : FarmlandCrop.copy()) { TagKey tag = independentTag(crop.getPlural()); - ShapelessRecipeBuilder.shapeless(RecipeCategory.MISC, crop.getSeedItem()) + ShapelessRecipeBuilder.shapeless(items, MISC, crop.getSeedItem()) .requires(tag) - .unlockedBy("has_" + crop.getLowercaseName(), RecipeProvider.has(crop)) + .unlockedBy("has_" + crop.getLowercaseName(), recipeProvider.has(crop)) .save( exporter); } } - protected void generateSaplings(RecipeOutput exporter) { + protected void generateSaplings(RecipeProvider recipeProvider, HolderGetter items, RecipeOutput exporter) { for (TreeCrop crop : TreeCrop.copy()) { TagKey tag = independentTag(crop.getPlural()); - ShapelessRecipeBuilder.shapeless(RecipeCategory.MISC, crop.getSaplingItem()) + ShapelessRecipeBuilder.shapeless(items, MISC, crop.getSaplingItem()) .requires(tag).requires(tag).requires(ItemTags.SAPLINGS) - .unlockedBy("has_" + crop.getLowercaseName(), RecipeProvider.has(crop)) + .unlockedBy("has_" + crop.getLowercaseName(), recipeProvider.has(crop)) .save(exporter); } // Bark saplings come from the leaves, not the crop } - protected void generateBarkWood(RecipeOutput exporter) { + protected void generateBarkWood(RecipeProvider recipeProvider, HolderGetter items, RecipeOutput exporter) { for (Tree crop : Tree.copy()) { - ShapedRecipeBuilder.shaped(RecipeCategory.MISC, crop.getWood()) + ShapedRecipeBuilder.shaped(items, MISC, crop.getWood()) .pattern("##") .pattern("##") .define('#', crop.getLog()) - .unlockedBy("has_" + crop.getLowercaseName() + "_log", RecipeProvider.has(crop.getLog())) + .unlockedBy("has_" + crop.getLowercaseName() + "_log", recipeProvider.has(crop.getLog())) .save(exporter); - ShapedRecipeBuilder.shaped(RecipeCategory.MISC, crop.getStrippedWood()) + ShapedRecipeBuilder.shaped(items, MISC, crop.getStrippedWood()) .pattern("##") .pattern("##") .define('#', crop.getStrippedLog()) - .unlockedBy("has_stripped" + crop.getLowercaseName() + "_log", RecipeProvider.has(crop.getStrippedLog())) + .unlockedBy("has_stripped" + crop.getLowercaseName() + "_log", recipeProvider.has(crop.getStrippedLog())) .save(exporter); } } - protected void generateJams(RecipeOutput exporter) { + protected void generateJams(RecipeProvider recipeProvider, HolderGetter items, RecipeOutput exporter) { for (Jam jam : Jam.copy()) { TagKey tag = independentTag(jam.getCrop().getPlural()); - ShapelessRecipeBuilder.shapeless(RecipeCategory.MISC, jam) + ShapelessRecipeBuilder.shapeless(items, MISC, jam) .requires(tag).requires(Items.SUGAR).requires(Content.COOKING_POT) - .unlockedBy("has_" + jam.getCrop().getLowercaseName(), RecipeProvider.has(tag)) + .unlockedBy("has_" + jam.getCrop().getLowercaseName(), recipeProvider.has(tag)) .save(exporter); } } - protected void generateJuices(RecipeOutput exporter) { + protected void generateJuices(RecipeProvider recipeProvider, HolderGetter items, RecipeOutput exporter) { for (Juice juice : Juice.copy()) { TagKey tag = independentTag(juice.getCrop().getPlural()); - ShapelessRecipeBuilder.shapeless(RecipeCategory.MISC, juice) + ShapelessRecipeBuilder.shapeless(items, MISC, juice) .requires(tag).requires(Content.FOOD_PRESS).requires(Items.GLASS_BOTTLE) - .unlockedBy("has_" + juice.getCrop().getLowercaseName(), RecipeProvider.has(tag)) + .unlockedBy("has_" + juice.getCrop().getLowercaseName(), recipeProvider.has(tag)) .save(exporter); } } - protected void generateSmoothies(RecipeOutput exporter) { + protected void generateSmoothies(RecipeProvider recipeProvider, HolderGetter items, RecipeOutput exporter) { for (Smoothie smoothie : Smoothie.copy()) { TagKey tag = independentTag(smoothie.getCrop().getPlural()); - ShapelessRecipeBuilder.shapeless(RecipeCategory.MISC, smoothie) + ShapelessRecipeBuilder.shapeless(items, MISC, smoothie) .requires(tag).requires(Items.ICE).requires(independentTag("milks")).requires(Items.GLASS_BOTTLE) - .unlockedBy("has_" + smoothie.getCrop().getLowercaseName(), RecipeProvider.has(tag)) + .unlockedBy("has_" + smoothie.getCrop().getLowercaseName(), recipeProvider.has(tag)) .save(exporter); } } - protected void generateIceCream(RecipeOutput exporter) { + protected void generateIceCream(RecipeProvider recipeProvider, HolderGetter items, RecipeOutput exporter) { for (IceCream iceCream : IceCream.copy()) { TagKey tag = independentTag(iceCream.getCrop().getPlural()); - ShapelessRecipeBuilder.shapeless(RecipeCategory.MISC, iceCream) + ShapelessRecipeBuilder.shapeless(items, MISC, iceCream) .requires(tag).requires(Items.SUGAR).requires(Items.EGG).requires(independentTag("milks")).requires(Content.COOKING_POT) - .unlockedBy("has_" + iceCream.getCrop().getLowercaseName(), RecipeProvider.has(tag)) + .unlockedBy("has_" + iceCream.getCrop().getLowercaseName(), recipeProvider.has(tag)) .save(exporter); } } - protected void generatePie(RecipeOutput exporter) { + protected void generatePie(RecipeProvider recipeProvider, HolderGetter items, RecipeOutput exporter) { for (Pie pie : Pie.copy()) { TagKey tag = independentTag(pie.getCrop().getPlural()); - ShapelessRecipeBuilder.shapeless(RecipeCategory.MISC, pie) + ShapelessRecipeBuilder.shapeless(items, MISC, pie) .requires(tag).requires(Items.SUGAR).requires(Items.EGG).requires(independentTag("flour")).requires(independentTag("doughs")).requires(Content.FRYING_PAN) - .unlockedBy("has_" + pie.getCrop().getLowercaseName(), RecipeProvider.has(tag)) + .unlockedBy("has_" + pie.getCrop().getLowercaseName(), recipeProvider.has(tag)) .save(exporter); } } - protected void offerFoodCookingRecipe(RecipeOutput exporter, ItemLike input, String inputName, ItemLike output, int time, float exp, boolean campFire) { + protected void offerFoodCookingRecipe(RecipeProvider recipeProvider, RecipeOutput exporter, ItemLike input, String inputName, ItemLike output, int time, float exp, boolean campFire) { SimpleCookingRecipeBuilder.smelting(Ingredient.of(input), RecipeCategory.FOOD, output, exp, time) - .unlockedBy("has_" + inputName, RecipeProvider.has(input)) + .unlockedBy("has_" + inputName, recipeProvider.has(input)) .save(exporter, RecipeProvider.getItemName(output) + "_from_" + inputName); SimpleCookingRecipeBuilder.smoking(Ingredient.of(input), RecipeCategory.FOOD, output, exp, time / 2) - .unlockedBy("has_" + inputName, RecipeProvider.has(input)) + .unlockedBy("has_" + inputName, recipeProvider.has(input)) .save(exporter, RecipeProvider.getItemName(output) + "_from_smoking_" + inputName); // TODO campfire } - protected void generateFurnace(RecipeOutput exporter) { + protected void generateFurnace(RecipeProvider recipeProvider, HolderGetter items, RecipeOutput exporter) { final int time = 200; // default vanilla time final float exp = 0.2f; // default vanilla experience var cookingList = new ImmutableMap.Builder() @@ -172,62 +191,62 @@ protected void generateFurnace(RecipeOutput exporter) { .put(Content.CORN, Content.POPCORN) .put(Content.GRAPE, Content.RAISINS) .build(); - cookingList.forEach((input, output) -> offerFoodCookingRecipe(exporter, input, input.getLowercaseName(), output, time, exp, true)); + cookingList.forEach((input, output) -> offerFoodCookingRecipe(recipeProvider, exporter, input, input.getLowercaseName(), output, time, exp, true)); // raw bacon is not yet moved - offerFoodCookingRecipe(exporter, Content.RAW_BACON, ItemNamesV2.RAW_BACON, Content.COOKED_BACON, time, exp, true); + offerFoodCookingRecipe(recipeProvider, exporter, Content.RAW_BACON, ItemNamesV2.RAW_BACON, Content.COOKED_BACON, time, exp, true); // now the vanilla ingredients - offerFoodCookingRecipe(exporter, Items.SUGAR, "sugar", Content.CARAMEL, time, exp, true); - offerFoodCookingRecipe(exporter, Items.SUGAR_CANE, "sugar_cane", Content.MOLASSES, time, exp, false); - offerFoodCookingRecipe(exporter, Items.BREAD, "bread", Content.TOAST, time, exp, false); + offerFoodCookingRecipe(recipeProvider, exporter, Items.SUGAR, "sugar", Content.CARAMEL, time, exp, true); + offerFoodCookingRecipe(recipeProvider, exporter, Items.SUGAR_CANE, "sugar_cane", Content.MOLASSES, time, exp, false); + offerFoodCookingRecipe(recipeProvider, exporter, Items.BREAD, "bread", Content.TOAST, time, exp, false); // only salt missing - offerFoodCookingRecipe(exporter, Content.WATER_BOTTLE, ItemNamesV2.WATER_BOTTLE, Content.SALT, 800, 0.1f, false); + offerFoodCookingRecipe(recipeProvider, exporter, Content.WATER_BOTTLE, ItemNamesV2.WATER_BOTTLE, Content.SALT, 800, 0.1f, false); } - protected void generateUtensil(RecipeOutput exporter) { - ShapedRecipeBuilder.shaped(RecipeCategory.MISC, Content.COOKING_POT) + protected void generateUtensil(RecipeProvider recipeProvider, HolderGetter items, RecipeOutput exporter) { + ShapedRecipeBuilder.shaped(items, MISC, Content.COOKING_POT) .pattern("# #") .pattern("# #") .pattern(" # ") .define('#', Items.IRON_INGOT) - .unlockedBy("has_iron", RecipeProvider.has(Items.IRON_INGOT)) + .unlockedBy("has_iron", recipeProvider.has(Items.IRON_INGOT)) .save(exporter); - ShapedRecipeBuilder.shaped(RecipeCategory.MISC, Content.FOOD_PRESS) + ShapedRecipeBuilder.shaped(items, MISC, Content.FOOD_PRESS) .pattern("I") .pattern("H") .pattern("I") .define('I', Items.PISTON).define('H', Items.HOPPER) - .unlockedBy("has_piston", RecipeProvider.has(Items.PISTON)) - .unlockedBy("has_hopper", RecipeProvider.has(Items.HOPPER)) + .unlockedBy("has_piston", recipeProvider.has(Items.PISTON)) + .unlockedBy("has_hopper", recipeProvider.has(Items.HOPPER)) .save(exporter); - ShapedRecipeBuilder.shaped(RecipeCategory.MISC, Content.FRYING_PAN) + ShapedRecipeBuilder.shaped(items, MISC, Content.FRYING_PAN) .pattern("# ") .pattern(" ##") .pattern(" ##") .define('#', Items.IRON_INGOT) - .unlockedBy("has_iron", RecipeProvider.has(Items.IRON_INGOT)) + .unlockedBy("has_iron", recipeProvider.has(Items.IRON_INGOT)) .save(exporter); - ShapedRecipeBuilder.shaped(RecipeCategory.MISC, Content.KNIFE) + ShapedRecipeBuilder.shaped(items, MISC, Content.KNIFE) .pattern(" #") .pattern("i ") .define('i', Items.STICK).define('#', Items.IRON_INGOT) - .unlockedBy("has_iron", RecipeProvider.has(Items.IRON_INGOT)) + .unlockedBy("has_iron", recipeProvider.has(Items.IRON_INGOT)) .save(exporter); - ShapedRecipeBuilder.shaped(RecipeCategory.MISC, Content.MORTAR_AND_PESTLE) + ShapedRecipeBuilder.shaped(items, MISC, Content.MORTAR_AND_PESTLE) .pattern("i") .pattern("#") .define('i', Items.STICK).define('#', Items.BOWL) - .unlockedBy("has_bowl", RecipeProvider.has(Items.BOWL)) + .unlockedBy("has_bowl", recipeProvider.has(Items.BOWL)) .save(exporter); } - protected void generateMiscShapeless(RecipeOutput exporter) { + protected void generateMiscShapeless(RecipeProvider recipeProvider, HolderGetter items, RecipeOutput exporter) { TagKey saltTag = independentTag("salts"); - ShapelessRecipeBuilder.shapeless(RecipeCategory.MISC, Items.DEAD_BUSH) + ShapelessRecipeBuilder.shapeless(items, MISC, Items.DEAD_BUSH) .requires(saltTag).requires(ItemTags.SAPLINGS) - .unlockedBy("has_salts", RecipeProvider.has(saltTag)) + .unlockedBy("has_salts", recipeProvider.has(saltTag)) .save(exporter); TagKey kumquatTag = independentTag(Content.KUMQUAT.getPlural()); - ShapelessRecipeBuilder.shapeless(RecipeCategory.MISC, Content.CANDIED_KUMQUATS, 7) + ShapelessRecipeBuilder.shapeless(items, MISC, Content.CANDIED_KUMQUATS, 7) .requires(kumquatTag) .requires(kumquatTag) .requires(kumquatTag) @@ -237,44 +256,44 @@ protected void generateMiscShapeless(RecipeOutput exporter) { .requires(kumquatTag) .requires(independentTag("vanilla")) .requires(Items.HONEY_BOTTLE) - .unlockedBy("has_kumquat", RecipeProvider.has(Content.KUMQUAT)) + .unlockedBy("has_kumquat", recipeProvider.has(Content.KUMQUAT)) .save(exporter); TagKey turmericTag = independentTag(Content.TURMERIC.getPlural()); - ShapelessRecipeBuilder.shapeless(RecipeCategory.MISC, Items.ORANGE_DYE, 2) + ShapelessRecipeBuilder.shapeless(items, MISC, Items.ORANGE_DYE, 2) .requires(turmericTag) .requires(turmericTag) .requires(turmericTag) - .unlockedBy("has_turmeric", RecipeProvider.has(Content.TURMERIC)) + .unlockedBy("has_turmeric", recipeProvider.has(Content.TURMERIC)) .save(exporter); TagKey grapeTag = independentTag(Content.GRAPE.getPlural()); - ShapelessRecipeBuilder.shapeless(RecipeCategory.MISC, Items.PURPLE_DYE, 2) + ShapelessRecipeBuilder.shapeless(items, MISC, Items.PURPLE_DYE, 2) .requires(grapeTag) .requires(grapeTag) .requires(grapeTag) - .unlockedBy("has_grape", RecipeProvider.has(Content.GRAPE)) + .unlockedBy("has_grape", recipeProvider.has(Content.GRAPE)) .save(exporter); } - protected void generateMiscShaped(RecipeOutput exporter) { - ShapedRecipeBuilder.shaped(RecipeCategory.MISC, Content.ROASTED_PUMPKIN_SEEDS) + protected void generateMiscShaped(RecipeProvider recipeProvider, HolderGetter items, RecipeOutput exporter) { + ShapedRecipeBuilder.shaped(items, MISC, Content.ROASTED_PUMPKIN_SEEDS) .pattern("123") .pattern(" 4 ") .define('1', Items.PUMPKIN_SEEDS) .define('3', Content.PEPPER.asItem()) .define('2', independentTag("salts")) .define('4', Content.FRYING_PAN) - .unlockedBy("has_pumpkin_seed", RecipeProvider.has(Items.PUMPKIN_SEEDS)) + .unlockedBy("has_pumpkin_seed", recipeProvider.has(Items.PUMPKIN_SEEDS)) .save(exporter); - ShapedRecipeBuilder.shaped(RecipeCategory.MISC, Content.ROASTED_SUNFLOWER_SEEDS) + ShapedRecipeBuilder.shaped(items, MISC, Content.ROASTED_SUNFLOWER_SEEDS) .pattern("123") .pattern(" 4 ") .define('1', Items.SUNFLOWER) .define('3', Content.PEPPER.asItem()) .define('2', independentTag("salts")) .define('4', Content.FRYING_PAN) - .unlockedBy("has_sunflower", RecipeProvider.has(Items.SUNFLOWER)) + .unlockedBy("has_sunflower", recipeProvider.has(Items.SUNFLOWER)) .save(exporter); - ShapedRecipeBuilder.shaped(RecipeCategory.MISC, Content.PUMPKIN_BARS, 3) + ShapedRecipeBuilder.shaped(items, MISC, Content.PUMPKIN_BARS, 3) .pattern("586") .pattern("124") .pattern("373") @@ -286,15 +305,15 @@ protected void generateMiscShaped(RecipeOutput exporter) { .define('6', independentTag("salts")) .define('7', independentTag("butters")) .define('8', independentTag("vanilla")) - .unlockedBy("has_pumpkin", RecipeProvider.has(Items.PUMPKIN)) - .unlockedBy("has_cinnamon", RecipeProvider.has(Content.CINNAMON)) + .unlockedBy("has_pumpkin", recipeProvider.has(Items.PUMPKIN)) + .unlockedBy("has_cinnamon", recipeProvider.has(Content.CINNAMON)) .save(exporter); - ShapedRecipeBuilder.shaped(RecipeCategory.MISC, Content.CORN_BREAD) + ShapedRecipeBuilder.shaped(items, MISC, Content.CORN_BREAD) .pattern("111") .define('1', independentTag("corn")) - .unlockedBy("has_corn", RecipeProvider.has(Content.CORN.asItem())) + .unlockedBy("has_corn", recipeProvider.has(Content.CORN.asItem())) .save(exporter); - ShapedRecipeBuilder.shaped(RecipeCategory.MISC, Content.PUMPKIN_SOUP, 2) + ShapedRecipeBuilder.shaped(items, MISC, Content.PUMPKIN_SOUP, 2) .pattern("123") .pattern(" 5 ") .pattern("464") @@ -304,18 +323,18 @@ protected void generateMiscShaped(RecipeOutput exporter) { .define('4', Items.PUMPKIN) .define('5', independentTag("salts")) .define('6', Content.COOKING_POT) - .unlockedBy("has_pumpkin", RecipeProvider.has(Items.PUMPKIN)) + .unlockedBy("has_pumpkin", recipeProvider.has(Items.PUMPKIN)) .save(exporter); - ShapedRecipeBuilder.shaped(RecipeCategory.MISC, Content.MERINGUE, 2) + ShapedRecipeBuilder.shaped(items, MISC, Content.MERINGUE, 2) .pattern("243") .pattern("111") .define('1', Items.EGG) .define('2', independentTag("salts")) .define('3', Items.SUGAR) .define('4', independentTag("vanilla")) - .unlockedBy("has_egg", RecipeProvider.has(Items.EGG)) + .unlockedBy("has_egg", recipeProvider.has(Items.EGG)) .save(exporter); - ShapedRecipeBuilder.shaped(RecipeCategory.MISC, Content.CABBAGE_ROLL, 2) + ShapedRecipeBuilder.shaped(items, MISC, Content.CABBAGE_ROLL, 2) .pattern("121") .pattern("456") .pattern("585") @@ -325,9 +344,9 @@ protected void generateMiscShaped(RecipeOutput exporter) { .define('6', independentTag("rice")) .define('4', independentTag("salts")) .define('5', independentTag("cabbage")) - .unlockedBy("has_cabbage", RecipeProvider.has(Content.CABBAGE.asItem())) + .unlockedBy("has_cabbage", recipeProvider.has(Content.CABBAGE.asItem())) .save(exporter); - ShapedRecipeBuilder.shaped(RecipeCategory.MISC, Content.BORSCHT, 2) + ShapedRecipeBuilder.shaped(items, MISC, Content.BORSCHT, 2) .pattern("123") .pattern("456") .pattern("789") @@ -340,9 +359,9 @@ protected void generateMiscShaped(RecipeOutput exporter) { .define('8', Content.COOKING_POT) .define('7', independentTag("cabbage")) .define('9', independentTag("garlic")) - .unlockedBy("has_cabbage", RecipeProvider.has(Content.CABBAGE.asItem())) + .unlockedBy("has_cabbage", recipeProvider.has(Content.CABBAGE.asItem())) .save(exporter); - ShapedRecipeBuilder.shaped(RecipeCategory.MISC, Content.GOULASH) + ShapedRecipeBuilder.shaped(items, MISC, Content.GOULASH) .pattern("123") .pattern("454") .pattern("183") @@ -352,9 +371,9 @@ protected void generateMiscShaped(RecipeOutput exporter) { .define('2', independentTag("onions")) .define('4', independentTag("cabbage")) .define('5', independentTag("tomatoes")) - .unlockedBy("has_cabbage", RecipeProvider.has(Content.CABBAGE.asItem())) + .unlockedBy("has_cabbage", recipeProvider.has(Content.CABBAGE.asItem())) .save(exporter); - ShapedRecipeBuilder.shaped(RecipeCategory.MISC, Content.BEETROOT_SALAD) + ShapedRecipeBuilder.shaped(items, MISC, Content.BEETROOT_SALAD) .pattern("111") .pattern("745") .pattern(" 6 ") @@ -363,36 +382,36 @@ protected void generateMiscShaped(RecipeOutput exporter) { .define('5', independentTag("lemons")) .define('6', Content.COOKING_POT) .define('7', independentTag("lettuce")) - .unlockedBy("has_beetroot", RecipeProvider.has(Items.BEETROOT)) + .unlockedBy("has_beetroot", recipeProvider.has(Items.BEETROOT)) .save(exporter); - ShapedRecipeBuilder.shaped(RecipeCategory.MISC, Content.STEAMED_CRAB) + ShapedRecipeBuilder.shaped(items, MISC, Content.STEAMED_CRAB) .pattern("1") .pattern("2") .pattern("3") .define('1', independentTag("crabs")) .define('2', independentTag("water_bottles")) .define('3', Content.COOKING_POT) - .unlockedBy("has_crab", RecipeProvider.has(Content.CRAB)) + .unlockedBy("has_crab", recipeProvider.has(Content.CRAB)) .save(exporter); - ShapedRecipeBuilder.shaped(RecipeCategory.MISC, Content.DEEP_FRIED_SHRIMP, 2) + ShapedRecipeBuilder.shaped(items, MISC, Content.DEEP_FRIED_SHRIMP, 2) .pattern("111") .pattern("456") .define('1', independentTag("shrimp")) .define('4', Items.EGG) .define('6', Items.BREAD) .define('5', Content.FRYING_PAN) - .unlockedBy("has_shrimp", RecipeProvider.has(Content.SHRIMP)) + .unlockedBy("has_shrimp", recipeProvider.has(Content.SHRIMP)) .save(exporter); - ShapedRecipeBuilder.shaped(RecipeCategory.MISC, Content.TUNA_ROLL, 2) + ShapedRecipeBuilder.shaped(items, MISC, Content.TUNA_ROLL, 2) .pattern("234") .pattern(" 1 ") .define('1', independentTag("tuna")) .define('2', Items.DRIED_KELP) .define('3', independentTag("rice")) .define('4', independentTag("onions")) - .unlockedBy("has_tuna", RecipeProvider.has(Content.TUNA)) + .unlockedBy("has_tuna", recipeProvider.has(Content.TUNA)) .save(exporter); - ShapedRecipeBuilder.shaped(RecipeCategory.MISC, Content.FRIED_CALAMARI, 2) + ShapedRecipeBuilder.shaped(items, MISC, Content.FRIED_CALAMARI, 2) .pattern("123") .pattern("456") .define('1', independentTag("calamari")) @@ -401,9 +420,9 @@ protected void generateMiscShaped(RecipeOutput exporter) { .define('4', independentTag("flour")) .define('5', Content.FRYING_PAN) .define('6', independentTag("sea_lettuce")) - .unlockedBy("has_calamari", RecipeProvider.has(Content.CALAMARI)) + .unlockedBy("has_calamari", recipeProvider.has(Content.CALAMARI)) .save(exporter); - ShapedRecipeBuilder.shaped(RecipeCategory.MISC, Content.CRAB_LEGS, 2) + ShapedRecipeBuilder.shaped(items, MISC, Content.CRAB_LEGS, 2) .pattern("123") .pattern("455") .pattern(" 7 ") @@ -413,9 +432,9 @@ protected void generateMiscShaped(RecipeOutput exporter) { .define('3', independentTag("salts")) .define('4', Content.PEPPER.asItem()) .define('7', Content.FRYING_PAN) - .unlockedBy("has_crab", RecipeProvider.has(Content.CRAB)) + .unlockedBy("has_crab", recipeProvider.has(Content.CRAB)) .save(exporter); - ShapedRecipeBuilder.shaped(RecipeCategory.MISC, Content.STEAMED_CLAMS, 2) + ShapedRecipeBuilder.shaped(items, MISC, Content.STEAMED_CLAMS, 2) .pattern("123") .pattern("455") .pattern(" 7 ") @@ -425,9 +444,9 @@ protected void generateMiscShaped(RecipeOutput exporter) { .define('3', independentTag("salts")) .define('4', Content.PEPPER.asItem()) .define('7', Content.FRYING_PAN) - .unlockedBy("has_clams", RecipeProvider.has(Content.CLAM)) + .unlockedBy("has_clams", recipeProvider.has(Content.CLAM)) .save(exporter); - ShapedRecipeBuilder.shaped(RecipeCategory.MISC, Content.GRILLED_OYSTERS, 2) + ShapedRecipeBuilder.shaped(items, MISC, Content.GRILLED_OYSTERS, 2) .pattern("121") .pattern("456") .pattern(" 7 ") @@ -437,9 +456,9 @@ protected void generateMiscShaped(RecipeOutput exporter) { .define('5', independentTag("garlic")) .define('6', independentTag("salts")) .define('7', Content.FRYING_PAN) - .unlockedBy("has_oysters", RecipeProvider.has(Content.GRILLED_OYSTERS)) + .unlockedBy("has_oysters", recipeProvider.has(Content.GRILLED_OYSTERS)) .save(exporter); - ShapedRecipeBuilder.shaped(RecipeCategory.MISC, Content.ANCHOVY_PIZZA, 1) + ShapedRecipeBuilder.shaped(items, MISC, Content.ANCHOVY_PIZZA, 1) .pattern("123") .pattern(" 4 ") .pattern(" 7 ") @@ -448,9 +467,9 @@ protected void generateMiscShaped(RecipeOutput exporter) { .define('3', independentTag("cheeses")) .define('4', independentTag("doughs")) .define('7', Content.FRYING_PAN) - .unlockedBy("has_anchovies", RecipeProvider.has(Content.ANCHOVY)) + .unlockedBy("has_anchovies", recipeProvider.has(Content.ANCHOVY)) .save(exporter); - ShapedRecipeBuilder.shaped(RecipeCategory.MISC, Content.MASHED_POTATOES, 1) + ShapedRecipeBuilder.shaped(items, MISC, Content.MASHED_POTATOES, 1) .pattern("1 ") .pattern("24") .pattern("3 ") @@ -458,16 +477,16 @@ protected void generateMiscShaped(RecipeOutput exporter) { .define('2', independentTag("salts")) .define('3', Content.MORTAR_AND_PESTLE) .define('4', independentTag("milks")) - .unlockedBy("has_milk", RecipeProvider.has(Items.MILK_BUCKET)) + .unlockedBy("has_milk", recipeProvider.has(Items.MILK_BUCKET)) .save(exporter); - ShapelessRecipeBuilder.shapeless(RecipeCategory.MISC, Content.TORTILLA, 2) + ShapelessRecipeBuilder.shapeless(items, MISC, Content.TORTILLA, 2) .requires(independentTag("flour")) .requires(Content.FRYING_PAN) .requires(independentTag("water_bottles")) - .unlockedBy("took_flour", RecipeProvider.has(independentTag("flour"))) - .unlockedBy("has_frying_pan", RecipeProvider.has(Content.FRYING_PAN)) + .unlockedBy("took_flour", recipeProvider.has(independentTag("flour"))) + .unlockedBy("has_frying_pan", recipeProvider.has(Content.FRYING_PAN)) .save(exporter); - ShapedRecipeBuilder.shaped(RecipeCategory.MISC, Content.SWEET_CREPES, 1) + ShapedRecipeBuilder.shaped(items, MISC, Content.SWEET_CREPES, 1) .pattern("123") .pattern("4 5") .pattern(" 6 ") @@ -477,10 +496,10 @@ protected void generateMiscShaped(RecipeOutput exporter) { .define('4', independentTag("jams")) .define('5', Items.SUGAR) .define('6', Content.FRYING_PAN) - .unlockedBy("took_flour", RecipeProvider.has(independentTag("flour"))) - .unlockedBy("has_frying_pan", RecipeProvider.has(Content.FRYING_PAN)) + .unlockedBy("took_flour", recipeProvider.has(independentTag("flour"))) + .unlockedBy("has_frying_pan", recipeProvider.has(Content.FRYING_PAN)) .save(exporter); - ShapedRecipeBuilder.shaped(RecipeCategory.MISC, Content.BAKED_CREPES, 1) + ShapedRecipeBuilder.shaped(items, MISC, Content.BAKED_CREPES, 1) .pattern("121") .pattern("356") .pattern(" 7 ") @@ -490,9 +509,9 @@ protected void generateMiscShaped(RecipeOutput exporter) { .define('7', Content.FRYING_PAN) .define('6', independentTag("cheeses")) .define('5', independentTag("spinach")) - .unlockedBy("has_frying_pan", RecipeProvider.has(Content.FRYING_PAN)) + .unlockedBy("has_frying_pan", recipeProvider.has(Content.FRYING_PAN)) .save(exporter); - ShapedRecipeBuilder.shaped(RecipeCategory.MISC, Content.QUICHE, 1) + ShapedRecipeBuilder.shaped(items, MISC, Content.QUICHE, 1) .pattern(" 1 ") .pattern("234") .pattern("5 6") @@ -502,9 +521,9 @@ protected void generateMiscShaped(RecipeOutput exporter) { .define('2', independentTag("milks")) .define('3', Items.EGG) .define('4', independentTag("spinach")) - .unlockedBy("has_frying_pan", RecipeProvider.has(Content.FRYING_PAN)) + .unlockedBy("has_frying_pan", recipeProvider.has(Content.FRYING_PAN)) .save(exporter); - ShapedRecipeBuilder.shaped(RecipeCategory.MISC, Content.DAUPHINE_POTATOES, 1) + ShapedRecipeBuilder.shaped(items, MISC, Content.DAUPHINE_POTATOES, 1) .pattern("213") .pattern("456") .define('1', Content.FRYING_PAN) @@ -513,9 +532,9 @@ protected void generateMiscShaped(RecipeOutput exporter) { .define('4', independentTag("butters")) .define('5', independentTag("flour")) .define('6', independentTag("olive_oils")) - .unlockedBy("has_frying_pan", RecipeProvider.has(Content.FRYING_PAN)) + .unlockedBy("has_frying_pan", recipeProvider.has(Content.FRYING_PAN)) .save(exporter); - ShapedRecipeBuilder.shaped(RecipeCategory.MISC, Content.CROQUE_MONSIEUR, 1) + ShapedRecipeBuilder.shaped(items, MISC, Content.CROQUE_MONSIEUR, 1) .pattern(" 1 ") .pattern(" 26") .pattern("435") @@ -525,9 +544,9 @@ protected void generateMiscShaped(RecipeOutput exporter) { .define('4', croptopia("pork_replacements")) .define('5', independentTag("butters")) .define('6', independentTag("flour")) - .unlockedBy("has_frying_pan", RecipeProvider.has(Content.FRYING_PAN)) + .unlockedBy("has_frying_pan", recipeProvider.has(Content.FRYING_PAN)) .save(exporter); - ShapedRecipeBuilder.shaped(RecipeCategory.MISC, Content.CROQUE_MADAME, 1) + ShapedRecipeBuilder.shaped(items, MISC, Content.CROQUE_MADAME, 1) .pattern(" 1 ") .pattern("726") .pattern("435") @@ -538,24 +557,24 @@ protected void generateMiscShaped(RecipeOutput exporter) { .define('5', independentTag("butters")) .define('6', independentTag("flour")) .define('7', Items.EGG) - .unlockedBy("has_frying_pan", RecipeProvider.has(Content.FRYING_PAN)) + .unlockedBy("has_frying_pan", recipeProvider.has(Content.FRYING_PAN)) .save(exporter); - ShapedRecipeBuilder.shaped(RecipeCategory.MISC, Content.SUNNY_SIDE_EGGS, 2) + ShapedRecipeBuilder.shaped(items, MISC, Content.SUNNY_SIDE_EGGS, 2) .pattern("121") .define('2', Content.FRYING_PAN) .define('1', Items.EGG) - .unlockedBy("has_frying_pan", RecipeProvider.has(Content.FRYING_PAN)) + .unlockedBy("has_frying_pan", recipeProvider.has(Content.FRYING_PAN)) .save(exporter); - ShapedRecipeBuilder.shaped(RecipeCategory.MISC, Content.MACARON, 2) + ShapedRecipeBuilder.shaped(items, MISC, Content.MACARON, 2) .pattern("122") .pattern("565") .define('1', Items.EGG) .define('2', Items.SUGAR) .define('5', independentTag("almonds")) .define('6', Content.FOOD_PRESS) - .unlockedBy("has_food_press", RecipeProvider.has(Content.FOOD_PRESS)) + .unlockedBy("has_food_press", recipeProvider.has(Content.FOOD_PRESS)) .save(exporter); - ShapedRecipeBuilder.shaped(RecipeCategory.MISC, Content.THE_BIG_BREAKFAST, 1) + ShapedRecipeBuilder.shaped(items, MISC, Content.THE_BIG_BREAKFAST, 1) .pattern("123") .pattern("736") .pattern(" 45") @@ -566,25 +585,25 @@ protected void generateMiscShaped(RecipeOutput exporter) { .define('4', Content.BAKED_BEANS) .define('5', independentTag("sausages")) .define('6', Content.TOAST) - .unlockedBy("has_frying_pan", RecipeProvider.has(Content.FRYING_PAN)) + .unlockedBy("has_frying_pan", recipeProvider.has(Content.FRYING_PAN)) .save(exporter); - ShapedRecipeBuilder.shaped(RecipeCategory.MISC, Content.GROUND_PORK, 2) + ShapedRecipeBuilder.shaped(items, MISC, Content.GROUND_PORK, 2) .pattern("1") .pattern("2") .define('1', croptopia("pork_replacements")) .define('2', Content.FOOD_PRESS) - .unlockedBy("has_food_press", RecipeProvider.has(Content.FOOD_PRESS)) + .unlockedBy("has_food_press", recipeProvider.has(Content.FOOD_PRESS)) .save(exporter); - ShapedRecipeBuilder.shaped(RecipeCategory.MISC, Content.SAUSAGE, 1) + ShapedRecipeBuilder.shaped(items, MISC, Content.SAUSAGE, 1) .pattern("1") .pattern("2") .pattern("3") .define('1', independentTag("ground_pork")) .define('2', independentTag("salts")) .define('3', independentTag("paprika")) - .unlockedBy("has_ground_pork", RecipeProvider.has(Content.GROUND_PORK)) + .unlockedBy("has_ground_pork", recipeProvider.has(Content.GROUND_PORK)) .save(exporter); - ShapedRecipeBuilder.shaped(RecipeCategory.MISC, Content.CINNAMON_ROLL, 3) + ShapedRecipeBuilder.shaped(items, MISC, Content.CINNAMON_ROLL, 3) .pattern("123") .pattern("456") .pattern("798") @@ -597,33 +616,33 @@ protected void generateMiscShaped(RecipeOutput exporter) { .define('7', independentTag("cinnamon")) .define('8', Content.WHIPPING_CREAM) .define('9', Content.FRYING_PAN) - .unlockedBy("has_frying_pan", RecipeProvider.has(Content.FRYING_PAN)) + .unlockedBy("has_frying_pan", recipeProvider.has(Content.FRYING_PAN)) .save(exporter); - ShapedRecipeBuilder.shaped(RecipeCategory.MISC, Content.HASHED_BROWN, 4) + ShapedRecipeBuilder.shaped(items, MISC, Content.HASHED_BROWN, 4) .pattern("123") .pattern(" 4 ") .define('4', Content.KNIFE) .define('1', independentTag("potatoes")) .define('2', Content.FRYING_PAN) .define('3', independentTag("olive_oils")) - .unlockedBy("has_frying_pan", RecipeProvider.has(Content.FRYING_PAN)) + .unlockedBy("has_frying_pan", recipeProvider.has(Content.FRYING_PAN)) .save(exporter); - ShapedRecipeBuilder.shaped(RecipeCategory.FOOD, Content.BEEF_JERKY, 14) + ShapedRecipeBuilder.shaped(items, RecipeCategory.FOOD, Content.BEEF_JERKY, 14) .pattern("111") .pattern("121") .pattern("111") .define('1', Items.BEEF) .define('2', independentTag("salts")) - .unlockedBy("has_salt", RecipeProvider.has(Content.SALT)) + .unlockedBy("has_salt", recipeProvider.has(Content.SALT)) .save(exporter); - ShapedRecipeBuilder.shaped(RecipeCategory.FOOD, Content.PORK_JERKY, 14) + ShapedRecipeBuilder.shaped(items, RecipeCategory.FOOD, Content.PORK_JERKY, 14) .pattern("111") .pattern("121") .pattern("111") .define('1', Items.PORKCHOP) .define('2', independentTag("salts")) - .unlockedBy("has_salt", RecipeProvider.has(Content.SALT)) + .unlockedBy("has_salt", recipeProvider.has(Content.SALT)) .save(exporter); //cooked frog leg furnace diff --git a/fabric/src/main/java/com/epherical/croptopia/datagen/DependentPathProvider.java b/fabric/src/main/java/com/epherical/croptopia/datagen/DependentPathProvider.java index 7fec12ae7..fef5fff92 100644 --- a/fabric/src/main/java/com/epherical/croptopia/datagen/DependentPathProvider.java +++ b/fabric/src/main/java/com/epherical/croptopia/datagen/DependentPathProvider.java @@ -1,7 +1,6 @@ package com.epherical.croptopia.datagen; import net.fabricmc.fabric.api.datagen.v1.FabricDataOutput; -import net.minecraft.data.DataGenerator; import net.minecraft.data.PackOutput; import net.minecraft.resources.ResourceLocation; diff --git a/fabric/src/main/java/com/epherical/croptopia/datagen/WorldGenFeatures.java b/fabric/src/main/java/com/epherical/croptopia/datagen/WorldGenFeatures.java index c3443b805..1ef6d99ee 100644 --- a/fabric/src/main/java/com/epherical/croptopia/datagen/WorldGenFeatures.java +++ b/fabric/src/main/java/com/epherical/croptopia/datagen/WorldGenFeatures.java @@ -12,7 +12,7 @@ import net.minecraft.data.worldgen.placement.PlacementUtils; import net.minecraft.resources.ResourceKey; import net.minecraft.resources.ResourceLocation; -import net.minecraft.util.random.SimpleWeightedRandomList; +import net.minecraft.util.random.WeightedList; import net.minecraft.util.valueproviders.UniformInt; import net.minecraft.world.level.block.Blocks; import net.minecraft.world.level.block.state.BlockState; @@ -46,7 +46,7 @@ public class WorldGenFeatures { public static final Map, List> datagenModifierLists = new HashMap<>(); public static final SimpleBlockConfiguration config = (new SimpleBlockConfiguration( - new WeightedStateProvider(SimpleWeightedRandomList.builder() + new WeightedStateProvider(WeightedList.builder() .add(Content.ARTICHOKE.asBlock().defaultBlockState().setValue(CroptopiaCropBlock.AGE, 7), 10) .add(Content.ASPARAGUS.asBlock().defaultBlockState().setValue(CroptopiaCropBlock.AGE, 7), 10) .add(Content.BARLEY.asBlock().defaultBlockState().setValue(CroptopiaCropBlock.AGE, 7), 10) diff --git a/fabric/src/main/java/com/epherical/croptopia/generator/BiomeModifiers.java b/fabric/src/main/java/com/epherical/croptopia/generator/BiomeModifiers.java index 4ca44086b..034069dee 100644 --- a/fabric/src/main/java/com/epherical/croptopia/generator/BiomeModifiers.java +++ b/fabric/src/main/java/com/epherical/croptopia/generator/BiomeModifiers.java @@ -3,7 +3,6 @@ import com.epherical.croptopia.Croptopia; import com.epherical.croptopia.common.generator.PlacedFeatureKeys; import com.epherical.croptopia.config.TreeConfiguration; -import com.epherical.croptopia.datagen.WorldGenFeatures; import com.mojang.logging.LogUtils; import net.fabricmc.fabric.api.biome.v1.BiomeModifications; import net.fabricmc.fabric.api.biome.v1.BiomeSelectors; diff --git a/fabric/src/main/java/com/epherical/croptopia/items/GuideBookItem.java b/fabric/src/main/java/com/epherical/croptopia/items/GuideBookItem.java index 5c0aa4773..2b8db5501 100644 --- a/fabric/src/main/java/com/epherical/croptopia/items/GuideBookItem.java +++ b/fabric/src/main/java/com/epherical/croptopia/items/GuideBookItem.java @@ -6,16 +6,16 @@ import net.minecraft.server.level.ServerPlayer; import net.minecraft.world.InteractionHand; import net.minecraft.world.InteractionResult; -import net.minecraft.world.InteractionResultHolder; import net.minecraft.world.entity.player.Player; import net.minecraft.world.item.Item; import net.minecraft.world.item.ItemStack; import net.minecraft.world.item.TooltipFlag; +import net.minecraft.world.item.component.TooltipDisplay; import net.minecraft.world.level.Level; -import org.jetbrains.annotations.Nullable; import vazkii.patchouli.api.PatchouliAPI; import java.util.List; +import java.util.function.Consumer; public class GuideBookItem extends Item { @@ -26,14 +26,14 @@ public GuideBookItem(Properties settings) { @Override - public void appendHoverText(ItemStack itemStack, TooltipContext tooltipContext, List list, TooltipFlag tooltipFlag) { + public void appendHoverText(ItemStack item, TooltipContext context, TooltipDisplay display, Consumer list, TooltipFlag flag) { if (!Croptopia.patchouli.isLoaded()) { - list.add(Component.nullToEmpty("Patchouli is not installed.")); + list.accept(Component.nullToEmpty("Patchouli is not installed.")); } } @Override - public InteractionResultHolder use(Level world, Player user, InteractionHand hand) { + public InteractionResult use(Level world, Player user, InteractionHand hand) { ItemStack stack = user.getItemInHand(hand); @@ -42,6 +42,6 @@ public InteractionResultHolder use(Level world, Player user, Interact PatchouliAPI.get().openBookGUI(player, BuiltInRegistries.ITEM.getKey(this)); } - return new InteractionResultHolder<>(InteractionResult.SUCCESS, stack); + return InteractionResult.SUCCESS.heldItemTransformedTo(stack); } } diff --git a/fabric/src/main/java/com/epherical/croptopia/mixin/FarmerWorkTaskMixin.java b/fabric/src/main/java/com/epherical/croptopia/mixin/FarmerWorkTaskMixin.java index f00fa52a2..ecaed2007 100644 --- a/fabric/src/main/java/com/epherical/croptopia/mixin/FarmerWorkTaskMixin.java +++ b/fabric/src/main/java/com/epherical/croptopia/mixin/FarmerWorkTaskMixin.java @@ -1,7 +1,6 @@ package com.epherical.croptopia.mixin; import com.epherical.croptopia.CroptopiaMod; -import com.epherical.croptopia.register.Content; import it.unimi.dsi.fastutil.objects.Object2IntArrayMap; import it.unimi.dsi.fastutil.objects.Object2IntMap; import net.minecraft.world.SimpleContainer; @@ -14,8 +13,6 @@ import org.spongepowered.asm.mixin.injection.At; import org.spongepowered.asm.mixin.injection.Redirect; -import java.util.List; - @Mixin(value = WorkAtComposter.class, priority = 999) public class FarmerWorkTaskMixin { diff --git a/fabric/src/main/java/com/epherical/croptopia/mixin/accessor/LootTableBuilderAccessor.java b/fabric/src/main/java/com/epherical/croptopia/mixin/accessor/LootTableBuilderAccessor.java index d91965e14..0739f99fa 100644 --- a/fabric/src/main/java/com/epherical/croptopia/mixin/accessor/LootTableBuilderAccessor.java +++ b/fabric/src/main/java/com/epherical/croptopia/mixin/accessor/LootTableBuilderAccessor.java @@ -6,8 +6,6 @@ import org.spongepowered.asm.mixin.Mixin; import org.spongepowered.asm.mixin.gen.Accessor; -import java.util.List; - @Mixin(LootTable.Builder.class) public interface LootTableBuilderAccessor { diff --git a/gradle.properties b/gradle.properties index 1963d02e2..a74afb4ae 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,9 +1,9 @@ # Done to increase the memory available to gradle. -org.gradle.jvmargs=-Xmx3G +org.gradle.jvmargs=-Xmx3G -Dfabric.log.level=debug org.gradle.parallel=true ## COMMON -mc_ver=1.21 +mc_ver=1.21.5 mod_version=3.0.5 maven_group=com.epherical.croptopia archives_base_name=Croptopia @@ -11,8 +11,9 @@ archives_base_name=Croptopia ## FABRIC # check these on https://modmuss50.me/fabric.html -loader_version=0.15.11 -fabric_version=0.100.1+1.21 +loader_version=0.17.2 +fabric_version=0.128.2+1.21.5 + ## OPTIONAL DEPENDENCIES dehydration_version=1.0.8 @@ -26,7 +27,6 @@ auto_config_version=3.2.2 forge_ver = 21.0.2-beta neo_version=21.0.0-beta -parchment_minecraft_version=1.20.6 -parchment_mappings_version=2024.06.02 -parchmentVersion=2023.07.09 - +parchment_minecraft_version=1.21.5 +parchment_mappings_version=2025.06.15 +parchment_version=1.21.5:2025.06.15 diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 0d1842103..5c82cb032 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-8.8-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/jars/EpheroLib-FABRIC-1.2.0-1.20.6.jar b/jars/EpheroLib-FABRIC-1.2.0-1.20.6.jar new file mode 100644 index 000000000..0b62469e2 Binary files /dev/null and b/jars/EpheroLib-FABRIC-1.2.0-1.20.6.jar differ diff --git a/jars/EpheroLib-FABRIC-1.2.0-1.21.3.jar b/jars/EpheroLib-FABRIC-1.2.0-1.21.3.jar new file mode 100644 index 000000000..1bb0b8bf9 Binary files /dev/null and b/jars/EpheroLib-FABRIC-1.2.0-1.21.3.jar differ diff --git a/jars/EpheroLib-FABRIC-1.2.0-1.21.5.jar b/jars/EpheroLib-FABRIC-1.2.0-1.21.5.jar new file mode 100644 index 000000000..93e5d4611 Binary files /dev/null and b/jars/EpheroLib-FABRIC-1.2.0-1.21.5.jar differ diff --git a/settings.gradle b/settings.gradle index 8d8a679eb..11af6817e 100644 --- a/settings.gradle +++ b/settings.gradle @@ -22,5 +22,5 @@ rootProject.name = 'croptopia3' //include 'shared' include 'fabric' -include 'forge' +//include 'forge' diff --git a/src/main/generated/.cache/04cdbc0977123b50e9e3f31a619c9f37fc5369d5 b/src/main/generated/.cache/04cdbc0977123b50e9e3f31a619c9f37fc5369d5 index 8430476a2..c25d40334 100644 --- a/src/main/generated/.cache/04cdbc0977123b50e9e3f31a619c9f37fc5369d5 +++ b/src/main/generated/.cache/04cdbc0977123b50e9e3f31a619c9f37fc5369d5 @@ -1 +1 @@ -// 1.21 2024-06-17T18:40:20.1665897 Croptopia/Tags for minecraft:worldgen/biome +// 1.21.5 -999999999-01-01T00:00:00 Croptopia/Tags for minecraft:worldgen/biome diff --git a/src/main/generated/.cache/5ce69988806e679742f7155e26bb846828e71764 b/src/main/generated/.cache/5ce69988806e679742f7155e26bb846828e71764 new file mode 100644 index 000000000..aeb5abcdb --- /dev/null +++ b/src/main/generated/.cache/5ce69988806e679742f7155e26bb846828e71764 @@ -0,0 +1,375 @@ +// 1.21.5 -999999999-01-01T00:00:00 Croptopia/CroptopiaRecipes +d7951ac3274d1887856d6535e23095cb106a6b36 data/croptopia/advancement/recipes/food/baked_beans_from_blackbean.json +262bc00c4cd44367b06bc11972020657f0f78e3f data/croptopia/advancement/recipes/food/baked_beans_from_smoking_blackbean.json +8bd4087d5f6abc0a5fa85243a27d9b09107c699e data/croptopia/advancement/recipes/food/baked_sweet_potato_from_smoking_sweetpotato.json +2448b5f1abfd2161305b93b45f541af6a3cb71c7 data/croptopia/advancement/recipes/food/baked_sweet_potato_from_sweetpotato.json +497c07fea33104e7a8dc4bf73b33640fb4931241 data/croptopia/advancement/recipes/food/baked_yam_from_smoking_yam.json +8bf8bc63d2fffbebf4afe0399aa0183634223112 data/croptopia/advancement/recipes/food/baked_yam_from_yam.json +5c6f33b48711b06ca9cbd5d0ba3f4274eda8465f data/croptopia/advancement/recipes/food/beef_jerky.json +647b78b5aa59d6d75214c62abbbf81e4e45503b5 data/croptopia/advancement/recipes/food/caramel_from_smoking_sugar.json +c0b17a541b6c4b93a53ba5a43b0e9bf4f3315fba data/croptopia/advancement/recipes/food/caramel_from_sugar.json +12d2bfb590bd3ab21d541cba06eeea58ecd162ba data/croptopia/advancement/recipes/food/cooked_anchovy_from_anchovy.json +d5a59503b560cf423d4238615a1e47b23383820f data/croptopia/advancement/recipes/food/cooked_anchovy_from_smoking_anchovy.json +5c63cce67fa74ea76244c250016082486ce54aa1 data/croptopia/advancement/recipes/food/cooked_bacon_from_bacon.json +5d2159add60fd752138849b961b10d15382a7296 data/croptopia/advancement/recipes/food/cooked_bacon_from_smoking_bacon.json +d69af088cad08218458a898af2edeaf3fd46d0b2 data/croptopia/advancement/recipes/food/cooked_calamari_from_calamari.json +9f515d6890e639ff4aa992571de30870b6a54094 data/croptopia/advancement/recipes/food/cooked_calamari_from_glowing_calamari.json +11f6035734666f13030fb777a76202b65d0aea7b data/croptopia/advancement/recipes/food/cooked_calamari_from_smoking_calamari.json +6a2098f274da2b4a6b35318bbd7e3247d2231b0b data/croptopia/advancement/recipes/food/cooked_calamari_from_smoking_glowing_calamari.json +82d3e7fffcb25ec5fedb37b4af674d721d78d79a data/croptopia/advancement/recipes/food/cooked_shrimp_from_shrimp.json +d0ac08cdb4f4cc48b241e6071ff591bbef7ce79f data/croptopia/advancement/recipes/food/cooked_shrimp_from_smoking_shrimp.json +b830126d1402dbff49575561ac44d952bf59fdb5 data/croptopia/advancement/recipes/food/cooked_tuna_from_smoking_tuna.json +1a6ffc4d58f49b4e1807513ac2700b6fa18cf903 data/croptopia/advancement/recipes/food/cooked_tuna_from_tuna.json +35e959fc43a4abb7bf531fe11780830044d48bab data/croptopia/advancement/recipes/food/molasses_from_smoking_sugar_cane.json +ba1042b6913701c994420281b389ffb5ced59216 data/croptopia/advancement/recipes/food/molasses_from_sugar_cane.json +7caec123dd056e1acb1512b421cb000a813c56f7 data/croptopia/advancement/recipes/food/popcorn_from_corn.json +279b66de8176b09eb31d55149c03b12336e1f331 data/croptopia/advancement/recipes/food/popcorn_from_smoking_corn.json +a874371ff1bd932fedd1f33f48e9b2dc1d0f3390 data/croptopia/advancement/recipes/food/pork_jerky.json +c3333cb9f040f99a9bf29943344b3ca83e5ec5f8 data/croptopia/advancement/recipes/food/raisins_from_grape.json +302a8ccea28209a521fad95e38b9d74b67a34b68 data/croptopia/advancement/recipes/food/raisins_from_smoking_grape.json +b64819725586a180c056a999534ae812ee194d45 data/croptopia/advancement/recipes/food/salt_from_smoking_water_bottle.json +5a733c3a2ebc08066eb2da9eb43e164d55d4e530 data/croptopia/advancement/recipes/food/salt_from_water_bottle.json +d8cd1d95779ecfb9407026b393e7cd1cb51c6d9a data/croptopia/advancement/recipes/food/toast_from_bread.json +c7c060551752f9f515ec9ba201b2137c74743561 data/croptopia/advancement/recipes/food/toast_from_smoking_bread.json +0f03f7983774f606eef53c52175a8b95398d5f5d data/croptopia/advancement/recipes/misc/almond_sapling.json +8487f0de970d95b1dc4635af5fc40350a11bd58b data/croptopia/advancement/recipes/misc/anchovy_pizza.json +1281a6d97267e803e471583d70fec817a376d7dc data/croptopia/advancement/recipes/misc/apple_juice.json +74424d4111c243f074fd75a968bc71af3f5e7705 data/croptopia/advancement/recipes/misc/apple_pie.json +5eba267206c553b8186c8680a56ff2dd2ee0f1cf data/croptopia/advancement/recipes/misc/apple_sapling.json +f30c866210bc409ee11fa7f19ee3f76db34cc510 data/croptopia/advancement/recipes/misc/apricot_jam.json +2941b14edfef16da09cdb82a4dc3e71f4f5e7223 data/croptopia/advancement/recipes/misc/apricot_sapling.json +bd00acc3d45507c6f8a46b762d51a331af6b3e8a data/croptopia/advancement/recipes/misc/artichoke_seed.json +4b88f6b4eb2a5d700b07e7f5ac08a8d54e2171e2 data/croptopia/advancement/recipes/misc/asparagus_seed.json +be4d05fc2aefbc8b8a6d64c8f5dfe1ec368708d2 data/croptopia/advancement/recipes/misc/avocado_sapling.json +f72d2d6fc52fa3daa164f93d7399d75e9c65afab data/croptopia/advancement/recipes/misc/baked_crepes.json +5e9d669fc348a08451c51253f0115b8426a26d4a data/croptopia/advancement/recipes/misc/banana_sapling.json +d692645e4e29c7b8118a870da32a8c13ef55fd96 data/croptopia/advancement/recipes/misc/banana_smoothie.json +a02922c86998cf1a6f7207afb287daaba0af2c75 data/croptopia/advancement/recipes/misc/barley_seed.json +864c063e978c8132a48c812c638118e47a5e5932 data/croptopia/advancement/recipes/misc/basil_seed.json +64684b24b9a3e8406d4f23589d73250bbbbab761 data/croptopia/advancement/recipes/misc/beetroot_salad.json +03426d270b094067b1ef51b50616b1a68565a80c data/croptopia/advancement/recipes/misc/bellpepper_seed.json +02c241bcbea6f743f3eff723a0b8aa0dd3d75669 data/croptopia/advancement/recipes/misc/blackbean_seed.json +56ec6f7f835b42d9e2b03350304db2b77a3c8d73 data/croptopia/advancement/recipes/misc/blackberry_jam.json +299ad3a63aa60e7226d1a392e954df508a896bd6 data/croptopia/advancement/recipes/misc/blackberry_seed.json +2f82edee402d2b0ec021aaa1d579f1e38e0ab412 data/croptopia/advancement/recipes/misc/blueberry_jam.json +dd96ce1eb89d568a4562e9f5910ba57fca1ca75c data/croptopia/advancement/recipes/misc/blueberry_seed.json +02be1390e4edf4adbcbfaf4e69ffd2289d59591b data/croptopia/advancement/recipes/misc/borscht.json +8a17acc3e8d3b6c4781310e428e781e0337635ed data/croptopia/advancement/recipes/misc/broccoli_seed.json +7b6152f8216d69f915bf3f5b084ad2874953d224 data/croptopia/advancement/recipes/misc/cabbage_roll.json +d44cc6ac24c5b28434977de344515e4cf7716881 data/croptopia/advancement/recipes/misc/cabbage_seed.json +ae854a8f89494afa06b07573ee54777ca0214668 data/croptopia/advancement/recipes/misc/candied_kumquats.json +e1365878b81460316763005c54e1804e6837b2e6 data/croptopia/advancement/recipes/misc/cantaloupe_seed.json +2c04903056f5433ed318d6a2c698cc6bc61ce6b1 data/croptopia/advancement/recipes/misc/cashew_sapling.json +0bf1ad5ed89c41f9af9646b509d6099d1d9e6b4a data/croptopia/advancement/recipes/misc/cauliflower_seed.json +b9bb17c81f91a4d4ea4e7d10fe770fcd3551e8bc data/croptopia/advancement/recipes/misc/celery_seed.json +441d87392ceb33c2f6173244865f9671df395a01 data/croptopia/advancement/recipes/misc/cherry_jam.json +bc559fc750520e2c557116f7a71e88b71142c32b data/croptopia/advancement/recipes/misc/cherry_pie.json +8cd6884de9bc91aa6d2b6af8f983a1a671370895 data/croptopia/advancement/recipes/misc/cherry_sapling.json +844854907970a4c6e83e3819fb6b762e421e7862 data/croptopia/advancement/recipes/misc/chile_pepper_seed.json +312aba583bdc5f415b1296021f653040bacf348d data/croptopia/advancement/recipes/misc/cinnamon_roll.json +15ba3dadce1e9c287286cffeed1d7b79d8ac60b0 data/croptopia/advancement/recipes/misc/cinnamon_wood.json +1a6be767360e63aa3a891a6c05bb41e2b7e43985 data/croptopia/advancement/recipes/misc/coconut_sapling.json +b805f75501a40d65efb4bcb04e002ac14c9c4f70 data/croptopia/advancement/recipes/misc/coffee_seed.json +af75a85c57178bbb30d2d1f10f7e4f738a629023 data/croptopia/advancement/recipes/misc/cooking_pot.json +eddbfa99587ff0a8d20296761cc45377b2818c5c data/croptopia/advancement/recipes/misc/corn_bread.json +dadb9962ed205cd7c14e0bf2640751017d7eff9e data/croptopia/advancement/recipes/misc/corn_seed.json +ea515aff1b925238252a106817ecd418bb14b802 data/croptopia/advancement/recipes/misc/crab_legs.json +9388b349270905cd4ee878eafedf26fe03bddefa data/croptopia/advancement/recipes/misc/cranberry_juice.json +79b3feb19cab19fc1cea428d4aa7a96a2e0ebcfc data/croptopia/advancement/recipes/misc/cranberry_seed.json +81d4039b33788db1898aabb3c4594ac746aba3a3 data/croptopia/advancement/recipes/misc/croque_madame.json +2722680e7c95fc08e3ccdf1dfb7fd487c4623dda data/croptopia/advancement/recipes/misc/croque_monsieur.json +accf0fb45171aba4a5f4011fe8cf537a9cf89f2c data/croptopia/advancement/recipes/misc/cucumber_seed.json +c6aac6334149ca1938327ca1f5f57aab05249dcc data/croptopia/advancement/recipes/misc/currant_seed.json +d689421bb03fd247b78134fd332d9a49882eadd6 data/croptopia/advancement/recipes/misc/date_sapling.json +785465b476426f991bfe7d694c87edf8e22d27e0 data/croptopia/advancement/recipes/misc/dauphine_potatoes.json +fe37fbed5175789afad57f528b683130a975b9e4 data/croptopia/advancement/recipes/misc/dead_bush.json +295f7985dd03c0541d4c6e9aa988d76d9b5fb024 data/croptopia/advancement/recipes/misc/deep_fried_shrimp.json +1f2835a15c40369070d99bff0b7ab49a6ec0f188 data/croptopia/advancement/recipes/misc/dragonfruit_sapling.json +04ae84c048691cfd5c1ca96ecab05bb8ac30f886 data/croptopia/advancement/recipes/misc/eggplant_seed.json +61236cc9f2efa324522dc23145352812bfa8bcf9 data/croptopia/advancement/recipes/misc/elderberry_jam.json +98e22cd47c561f83e1f091310da384e150577f0e data/croptopia/advancement/recipes/misc/elderberry_seed.json +5d582c3e4f14ddbe352679914559ecef21bd0649 data/croptopia/advancement/recipes/misc/fig_sapling.json +092ca77f237c79d3e545602ed4070d7ed2b10b5b data/croptopia/advancement/recipes/misc/food_press.json +073195b2cdc6310da889cb4fc6db37329b3f2831 data/croptopia/advancement/recipes/misc/fried_calamari.json +a8d8802b2c3b3486f6a02c28cc8ca3456315b01a data/croptopia/advancement/recipes/misc/frying_pan.json +5c2b20c03bbe9289781f2f1369baa2d824b374eb data/croptopia/advancement/recipes/misc/garlic_seed.json +fa9325b0f823c8e6e7b1166192ff43509608381e data/croptopia/advancement/recipes/misc/ginger_seed.json +c88c4ec72db43f395d7388726418307ca25de4c7 data/croptopia/advancement/recipes/misc/goulash.json +1d22602fb90329d412fa2c57cfe3d676ee5eab5a data/croptopia/advancement/recipes/misc/grape_jam.json +cb1253d266121a7c2c592e5b89d069f3a4eb4b26 data/croptopia/advancement/recipes/misc/grape_juice.json +94466d4b431addb2c3b04f192aedca2b8e3fc58f data/croptopia/advancement/recipes/misc/grape_seed.json +273c770fe7b71367fa81e0137d5478f1400eddb9 data/croptopia/advancement/recipes/misc/grapefruit_sapling.json +76c2a743c114ced95f17ae02cd3f89c3083e2862 data/croptopia/advancement/recipes/misc/greenbean_seed.json +5124e3120f08523d622eefeee20e05dd03b9ce93 data/croptopia/advancement/recipes/misc/greenonion_seed.json +a70dc28e2d96576e30aef08bbe50d6d326598b11 data/croptopia/advancement/recipes/misc/grilled_oysters.json +bb8368d5576b8ff79f3f527a474f5a8d89dcdbeb data/croptopia/advancement/recipes/misc/ground_pork.json +e9c7e0806db2ca40ec028651ef2ae8549beb0c4f data/croptopia/advancement/recipes/misc/hashed_brown.json +f524ed2d16d22dc784f9b5ad6bba39603cf3f0d9 data/croptopia/advancement/recipes/misc/honeydew_seed.json +2c457bbd470b598488da2537eb7c11cf53c9ba31 data/croptopia/advancement/recipes/misc/hops_seed.json +dbc9ef36f93bf009db9e62a03d524d7c735b3a6a data/croptopia/advancement/recipes/misc/kale_seed.json +aab113725745556cf847789aa4570a25a1f0c35a data/croptopia/advancement/recipes/misc/kiwi_seed.json +1296ae3d7a5f8011e4fc5229e05c41fdd63fb7e6 data/croptopia/advancement/recipes/misc/knife.json +bffab97f8812136528629b9981f128e0e3c935b0 data/croptopia/advancement/recipes/misc/kumquat_sapling.json +ff2c5a2450848b3d500f391d27a1881fef19814a data/croptopia/advancement/recipes/misc/leek_seed.json +8f3435ae781eaaac31d37b70bb3b03bbc08c9ae7 data/croptopia/advancement/recipes/misc/lemon_sapling.json +df15abc59e8435c4c18352eb10ce67e6c84ab3ee data/croptopia/advancement/recipes/misc/lettuce_seed.json +717e99b58e56774287bc80b7e6f54f2bf74d0604 data/croptopia/advancement/recipes/misc/lime_sapling.json +3fc1ed75fdb825c9bb094f93331e96267b4d6d71 data/croptopia/advancement/recipes/misc/macaron.json +649512a1391eb2c0adaad68f4b01db4c61ffa4db data/croptopia/advancement/recipes/misc/mango_ice_cream.json +a15ca40eff146ee71fcc4a758dea8db951c61acd data/croptopia/advancement/recipes/misc/mango_sapling.json +bbd006d95a6e7540ebc1bf631af291b874c98166 data/croptopia/advancement/recipes/misc/mashed_potatoes.json +ca947f14829f003f69fcadcc4b0a045a175b1c7e data/croptopia/advancement/recipes/misc/melon_juice.json +4eecf89e18bf63033ae00e52ddbe689ba9eb74ca data/croptopia/advancement/recipes/misc/meringue.json +097c9e019dc2172f7cf2c72158a7ee5d14c00f63 data/croptopia/advancement/recipes/misc/mortar_and_pestle.json +5f211ecbfc194bf141a0192215f6a76a38e5e9db data/croptopia/advancement/recipes/misc/mustard_seed.json +22aaeb4d39ce5c4c926c294e2f64abd7b5967ba6 data/croptopia/advancement/recipes/misc/nectarine_sapling.json +5980e04e6a378fc5e8f42968902ef24f35dc3cef data/croptopia/advancement/recipes/misc/nutmeg_sapling.json +d60b01deb49d0a0335a9a75f37b1814ef39615b0 data/croptopia/advancement/recipes/misc/oat_seed.json +5dc683bec7a33ab76dff0ee7b6152665ea1f22a7 data/croptopia/advancement/recipes/misc/olive_seed.json +6b786a8602a10685da3a6979df17dcc690f2f911 data/croptopia/advancement/recipes/misc/onion_seed.json +e641a559838000c0240590b497ac3acb5170f4fa data/croptopia/advancement/recipes/misc/orange_dye.json +ff32d5fb3c57c45ce099c4761cc0954a72b786b2 data/croptopia/advancement/recipes/misc/orange_juice.json +dfbad1aa76ca8b22a3807d2a03cb431d875eaad4 data/croptopia/advancement/recipes/misc/orange_sapling.json +b2dea8080310ba843a46aba819e915f560bc3b37 data/croptopia/advancement/recipes/misc/peach_jam.json +552f5d46bbed8be422128fda9fa9685eff04df19 data/croptopia/advancement/recipes/misc/peach_sapling.json +bd0cef10a40d080ed2a0fdb6f1cf3c594fe8c71d data/croptopia/advancement/recipes/misc/peanut_seed.json +17201652a6a9c44afab69df62d82720bfb206f49 data/croptopia/advancement/recipes/misc/pear_sapling.json +96bc7feda256edd89b3880c4a138feafa7027554 data/croptopia/advancement/recipes/misc/pecan_ice_cream.json +d84a5782a9ed54963196556a166a5db48c3d42d2 data/croptopia/advancement/recipes/misc/pecan_pie.json +acbfb6de06aecd3d7be107bc53dbf6d799c7e2c9 data/croptopia/advancement/recipes/misc/pecan_sapling.json +de772720b3387c0e7e0c751808ee9d71881ad774 data/croptopia/advancement/recipes/misc/pepper_seed.json +7f7d50bed587b04f383a862450507f3886d1e38a data/croptopia/advancement/recipes/misc/persimmon_sapling.json +1a24156bba36db85afd184a92bdb3cfe0cc40c85 data/croptopia/advancement/recipes/misc/pineapple_juice.json +720450c3756d5a8b6d33c80ecd3ea303ffcd6779 data/croptopia/advancement/recipes/misc/pineapple_seed.json +36602a7caf4039249af3ced7a7f81b5d2a87ed57 data/croptopia/advancement/recipes/misc/plum_sapling.json +ebdd35d930b83653575c2a42a2804ae889957dca data/croptopia/advancement/recipes/misc/pumpkin_bars.json +1dd8a1e613f068fde7832544dd6dff4018c282ea data/croptopia/advancement/recipes/misc/pumpkin_soup.json +7256687d7b0558f37e4a17b32d1fff2ab973a728 data/croptopia/advancement/recipes/misc/purple_dye.json +c63d68bf435d5c3689ff39e4cd8d5a59a30003e6 data/croptopia/advancement/recipes/misc/quiche.json +3fe50628a0438c0fe075b6a6a4f536a81865f659 data/croptopia/advancement/recipes/misc/radish_seed.json +7bcaa4cf332b7a91c7a7215513796e908d715808 data/croptopia/advancement/recipes/misc/raspberry_jam.json +2a396069413ddb4500dc5b9b207cf0537c4f7fb6 data/croptopia/advancement/recipes/misc/raspberry_seed.json +d97d99da38b0cbd880f3650fe1c5d825fa46707b data/croptopia/advancement/recipes/misc/rhubarb_pie.json +ea4ff66b087dfb6ad046547abd900fce1f98d76d data/croptopia/advancement/recipes/misc/rhubarb_seed.json +e037a08a344d17f7c5d17bab93aa4e79f321923d data/croptopia/advancement/recipes/misc/rice_seed.json +a6b8338ea5930f46ba1fa671277ece2ba6d456f9 data/croptopia/advancement/recipes/misc/roasted_pumpkin_seeds.json +38f13bbca118b30462645dc62565fa3372cd48d9 data/croptopia/advancement/recipes/misc/roasted_sunflower_seeds.json +091e2adfa7af43d170a7f0afb9c288424e224ad2 data/croptopia/advancement/recipes/misc/rutabaga_seed.json +4d5d9a4adc46aad72252c79d35b0ece421c4a49c data/croptopia/advancement/recipes/misc/saguaro_juice.json +97806ab3a64b8eda3fee478743b1ef3f6052eb43 data/croptopia/advancement/recipes/misc/saguaro_seed.json +5f36a29d51ad1e6aba976c61a711be090c34581a data/croptopia/advancement/recipes/misc/sausage.json +3ebfbe953568136b813cdc1bd1d3b610b6c83688 data/croptopia/advancement/recipes/misc/soybean_seed.json +482bb5925d3773eacb20dc496e299ce6d2e53c08 data/croptopia/advancement/recipes/misc/spinach_seed.json +f29c15e8694fd59977832928e1e62c0154a6febb data/croptopia/advancement/recipes/misc/squash_seed.json +1b2e24e566d304370abecfa7e0b2d5ae0ddf450f data/croptopia/advancement/recipes/misc/starfruit_sapling.json +c6e2af000906eaba2b7fa7ba66794605a02458d5 data/croptopia/advancement/recipes/misc/steamed_clams.json +c81af63087d6164222f44ccb13e3563d109bc2d0 data/croptopia/advancement/recipes/misc/steamed_crab.json +fcbd36be964c641d20be336bbd997ac33d704498 data/croptopia/advancement/recipes/misc/strawberry_ice_cream.json +178931bd3da89c0d93b5929f42958842b87728b3 data/croptopia/advancement/recipes/misc/strawberry_jam.json +d546d5ecb5b5ba610a56078541c056ca1070a27a data/croptopia/advancement/recipes/misc/strawberry_seed.json +e677f3f6f0876328b0193ce330d8c6e25181ca5c data/croptopia/advancement/recipes/misc/strawberry_smoothie.json +a492bafc4ce83a90c357be4e75f437df49179946 data/croptopia/advancement/recipes/misc/stripped_cinnamon_wood.json +8a4b6498678d8ead24d0124901b4a3f524c8f643 data/croptopia/advancement/recipes/misc/sunny_side_eggs.json +345e74bd9bb577fa62332a2e8ca0d171821c3bcb data/croptopia/advancement/recipes/misc/sweet_crepes.json +1ae2381c8314717c9fba459f0cc897b785b03891 data/croptopia/advancement/recipes/misc/sweetpotato_seed.json +b959c65bcc25280574f4001fb54f3437ae105ce7 data/croptopia/advancement/recipes/misc/tea_seed.json +3c374eced86effa9712c0b97285bc4df18340038 data/croptopia/advancement/recipes/misc/the_big_breakfast.json +8dbe2b9e8d423a95fd3bc9a70287f66a58042c23 data/croptopia/advancement/recipes/misc/tomatillo_seed.json +f921e494abc25822cc51bcf81aa849401e1c1c31 data/croptopia/advancement/recipes/misc/tomato_juice.json +88812572ece37f9b2a945365bf5e2391e19fa2bd data/croptopia/advancement/recipes/misc/tomato_seed.json +8490c2634508c96ab7a7128dceb66caebd9326bc data/croptopia/advancement/recipes/misc/tortilla.json +405330c32812cbde75c6714ab2a67387f0ac0381 data/croptopia/advancement/recipes/misc/tuna_roll.json +30e9a3879ee9a87b0aec9063ae1263d41ad940d0 data/croptopia/advancement/recipes/misc/turmeric_seed.json +174c7d6d11858a60b88b0c5889654e6433726f50 data/croptopia/advancement/recipes/misc/turnip_seed.json +0ad796771a1c1377e1cecdfc689820e58f4d6ae7 data/croptopia/advancement/recipes/misc/vanilla_ice_cream.json +a93678d4a4e23ca93a5df85cfe333e8e501a2e62 data/croptopia/advancement/recipes/misc/vanilla_seeds.json +989ac1b788c37f0744923f8a641948a2f4a6f18d data/croptopia/advancement/recipes/misc/walnut_sapling.json +27b8ad5ca0bcd688d29f3bc117d64e544c57847e data/croptopia/advancement/recipes/misc/yam_seed.json +2b66a0b0cf1f6220b050b755a55c7511efc397c8 data/croptopia/advancement/recipes/misc/zucchini_seed.json +bac48383edd742c0c116d7f1c4f05172cb14c4aa data/croptopia/recipe/almond_sapling.json +a6e283b1769123195527f0b559d935faf2242990 data/croptopia/recipe/anchovy_pizza.json +8373baafc3388c8a7d864f8034b9b016db26bf29 data/croptopia/recipe/apple_juice.json +c26d3d59486be89046611fd820d5262e3f615ec0 data/croptopia/recipe/apple_pie.json +63cd7e1d6bb7bf63f4702a81c1afde996fbca034 data/croptopia/recipe/apple_sapling.json +e394b1727d3b0be6ded4e079889de350105586a3 data/croptopia/recipe/apricot_jam.json +cca13d63d1d5c55600a06d733ecb73f4f35dd91b data/croptopia/recipe/apricot_sapling.json +ab7dc651f15c0bc3e3405d485e87984177ca2330 data/croptopia/recipe/artichoke_seed.json +4e85fd631b7b49d2de9c16cd8c77751feb70d075 data/croptopia/recipe/asparagus_seed.json +cc4ce1437439ddb7611da445d0d960cd78b63bba data/croptopia/recipe/avocado_sapling.json +f09adc07d5207dcf342114cead6204a5289650c1 data/croptopia/recipe/baked_beans_from_blackbean.json +e4347237671ecc1cd4138bf51a0dc96ad1b5b279 data/croptopia/recipe/baked_beans_from_smoking_blackbean.json +d91dce22db4960cbf01eac9ee5eee75f2748d830 data/croptopia/recipe/baked_crepes.json +1442d54fd71a3040bdeca4966e03b9354ef4296a data/croptopia/recipe/baked_sweet_potato_from_smoking_sweetpotato.json +34f5856698ff696f3d350e0bdf1219c77501be0b data/croptopia/recipe/baked_sweet_potato_from_sweetpotato.json +04d795b002771280edec17f1a9b2c607c9f475cd data/croptopia/recipe/baked_yam_from_smoking_yam.json +9618b4c12829b52472e3b57bb8c81a238f1c5652 data/croptopia/recipe/baked_yam_from_yam.json +1e35988b091d1e38c44a0f4fa9b47bdb4714f567 data/croptopia/recipe/banana_sapling.json +01bf841cdfbbd546892807aeafa1af7b1d45ef27 data/croptopia/recipe/banana_smoothie.json +96019ae7b06a6d045f07a3505b82b16f54bb4783 data/croptopia/recipe/barley_seed.json +304f6adc06006f607b67b9d5e612483902ff28f1 data/croptopia/recipe/basil_seed.json +64faaae920f55237731d8db57fdd89b20aaef8cd data/croptopia/recipe/beef_jerky.json +661625a7eeaf4e449014b85e24a903ca9097ae74 data/croptopia/recipe/beetroot_salad.json +4287e6588a92cfb3df25ef7bf6d65da2532c242e data/croptopia/recipe/bellpepper_seed.json +fd62f1c37f4906691f1a3c8f1ecc371511eeaecf data/croptopia/recipe/blackbean_seed.json +7f9f538ce5e8162cacf79120c2a363122c728e13 data/croptopia/recipe/blackberry_jam.json +55761d6d47f674c01ba9049b75439eb0e81054f1 data/croptopia/recipe/blackberry_seed.json +bf1a3b9771c4ae37381c456484fca479df5771ca data/croptopia/recipe/blueberry_jam.json +460d2e60eeee22a6333be6ade5c245a57042d7c1 data/croptopia/recipe/blueberry_seed.json +635cacd1c45ff81537bfebb9f59d85d62d221cee data/croptopia/recipe/borscht.json +1950b3cc67a36b32959aa46b31450dcf9cec557c data/croptopia/recipe/broccoli_seed.json +7c208941c1e9893ffbb1e146f1297dcc94348ff2 data/croptopia/recipe/cabbage_roll.json +4a170f668c30155229884c36676ab8c0c731d933 data/croptopia/recipe/cabbage_seed.json +f6c511e60992b3b33e14b80d8dfef16d26e5429d data/croptopia/recipe/candied_kumquats.json +1bdebce23d326b586fca0ea8fe57ff769f5c5011 data/croptopia/recipe/cantaloupe_seed.json +e0cbeb60d762b6492464975aea2fadb4ea5dfa2e data/croptopia/recipe/caramel_from_smoking_sugar.json +ffd1e1ed558781d3f5c578abf371245224ccf332 data/croptopia/recipe/caramel_from_sugar.json +87167e8fb749d5646c7a1e4a182d66b9e7df3791 data/croptopia/recipe/cashew_sapling.json +dec89ed14ece490ef199e3981ce9d526a38a8fce data/croptopia/recipe/cauliflower_seed.json +20128f09591c61ea5c8c186cf7e772b720cf6e23 data/croptopia/recipe/celery_seed.json +04f30821c78192d3938d909595b53aa89e965317 data/croptopia/recipe/cherry_jam.json +0444ade58057ebdcd0e2aa4f271f56e0fe133e13 data/croptopia/recipe/cherry_pie.json +59a01ccfde4ffede3ca292d9cd7d126b298de364 data/croptopia/recipe/cherry_sapling.json +2bc33994fef941b991c9a64078b19c947d0c93e9 data/croptopia/recipe/chile_pepper_seed.json +a6b266bf6a23d313ceb38654995a2387a8e58944 data/croptopia/recipe/cinnamon_roll.json +b21a796bcef2b3f14fc2a0a0d91dc1163794014b data/croptopia/recipe/cinnamon_wood.json +fb1f97a54a7f7fa7b0ba81e3cde371c8a7cdb3c4 data/croptopia/recipe/coconut_sapling.json +26aedcbe592dfe53700f9c776f7d235d37f30c53 data/croptopia/recipe/coffee_seed.json +eb77c81be0637e0a2f1eb2ce55c4d1808f6f5683 data/croptopia/recipe/cooked_anchovy_from_anchovy.json +d456e643a0ac49a9d97dc6e83904bf487f723553 data/croptopia/recipe/cooked_anchovy_from_smoking_anchovy.json +2a6d1efa0fcc85245eb4c627912cd97a11556f07 data/croptopia/recipe/cooked_bacon_from_bacon.json +7f172730ec7d91181d55340b56c6813b1459ad2b data/croptopia/recipe/cooked_bacon_from_smoking_bacon.json +8dbe1d29af9bc7c70fedef5b701c369187aff673 data/croptopia/recipe/cooked_calamari_from_calamari.json +dfe5431653240c05605c1395a464d06d7bc38093 data/croptopia/recipe/cooked_calamari_from_glowing_calamari.json +8941b879a7fb7858104a349c321264badd68015e data/croptopia/recipe/cooked_calamari_from_smoking_calamari.json +1d23a63966ee60f04569cac407bdb98c5240f654 data/croptopia/recipe/cooked_calamari_from_smoking_glowing_calamari.json +b4fe5003a67278d2849679a7d69efe02c5218e04 data/croptopia/recipe/cooked_shrimp_from_shrimp.json +9bcb1f20eee1c38d8629b08f72b1c515975d43c6 data/croptopia/recipe/cooked_shrimp_from_smoking_shrimp.json +a32d7450c7fcc9a1b692a9aff4bfa90f1b0c9b22 data/croptopia/recipe/cooked_tuna_from_smoking_tuna.json +124c02f3b95dd8e6ca98c6857c6e697803005589 data/croptopia/recipe/cooked_tuna_from_tuna.json +b7e940d99b9d36c471a6927d51dad90b42124925 data/croptopia/recipe/cooking_pot.json +ea031a94e6741990c32b57678a0d2a8dc5a532c5 data/croptopia/recipe/corn_bread.json +1ac9fe58287ef7765b34370ebbc7ba0644f07c8a data/croptopia/recipe/corn_seed.json +cf32e508755f811b8dbc2747d6bd155c548ddf62 data/croptopia/recipe/crab_legs.json +46fa43e1ab21b3cc2466efc0f587d0406b536aff data/croptopia/recipe/cranberry_juice.json +f93eed1130ff991ea69b2df5fca70798e16979bc data/croptopia/recipe/cranberry_seed.json +b0a94662c26f43d075ad7b74361a09e2f9a128c5 data/croptopia/recipe/croque_madame.json +4084e67a7603f033b975daea415974b5e0b9f846 data/croptopia/recipe/croque_monsieur.json +a317163d6c041897c854fdbcda07e366f09c949a data/croptopia/recipe/cucumber_seed.json +a0f9b44894d0b70f2be098fdaae36513911dd0d8 data/croptopia/recipe/currant_seed.json +865c16dc7664db295d681103032936580cee5c54 data/croptopia/recipe/date_sapling.json +8d6d84c157e8cb9506121e22a002fa9f8ad24d6b data/croptopia/recipe/dauphine_potatoes.json +ba85e4ce6d015406417e95e9ba0794e7dc7050bd data/croptopia/recipe/dead_bush.json +3da58b006a8e8733cafb1f825c2eb1cbe22a6b78 data/croptopia/recipe/deep_fried_shrimp.json +e145e9c90e1eb23a45ac3bad2f4d2118bcfb9b11 data/croptopia/recipe/dragonfruit_sapling.json +d9f11986de561dacacca2397e8be33330eabacb4 data/croptopia/recipe/eggplant_seed.json +16890b4eb7b34772d9d49a56c8c01216d111c3f8 data/croptopia/recipe/elderberry_jam.json +c25ecc7250a2e3dd10d15b893ebd414985c9f4d1 data/croptopia/recipe/elderberry_seed.json +9fb0e4a132a2ac19967071e03a5dd564c631bec6 data/croptopia/recipe/fig_sapling.json +4d0a05192a4a97c62a6f9b4fd54fde1285e87eb6 data/croptopia/recipe/food_press.json +9c192e9954d73490b149ef3359ac4c56729597d1 data/croptopia/recipe/fried_calamari.json +8a14a9b717907f18bfe339924be4934405f8e7cb data/croptopia/recipe/frying_pan.json +0fc7a943b37421e0c535605a743ed1f11935bc96 data/croptopia/recipe/garlic_seed.json +2c1e8a4d8b65fe200976e1ae392e8dc4bbd6e5c2 data/croptopia/recipe/ginger_seed.json +9b6f2999fa210e6204cf6520d9710b98208b2b94 data/croptopia/recipe/goulash.json +c1f7782e69064e23add3dea57bded8a565b12ede data/croptopia/recipe/grape_jam.json +3c1553a5ed58ff6a14f2d21e9d50f208624f7357 data/croptopia/recipe/grape_juice.json +b311cc84061308e449c6a00c57c773504ba4d8ca data/croptopia/recipe/grape_seed.json +39bb1b08323e62d723543c011af9acd4faab09e7 data/croptopia/recipe/grapefruit_sapling.json +0e9d25cec7386abf0768721ab6aa74b0611a3951 data/croptopia/recipe/greenbean_seed.json +d12d9663fb5c3dbb44cf8652d11009ee9761a3f9 data/croptopia/recipe/greenonion_seed.json +7e9b2ce9d70e8aa31e4ec21707a459afcdbd8ff8 data/croptopia/recipe/grilled_oysters.json +28d15b90eae7874c475710b7b9576aadb6dda0d9 data/croptopia/recipe/ground_pork.json +e99f4d8e633a3759c93b958b2f28ad880e385d02 data/croptopia/recipe/hashed_brown.json +c4b5ffe19d8afad7954e02a4becf23d5d29a0c7e data/croptopia/recipe/honeydew_seed.json +031aab4d258771c12ef0b2648cc8520cb475abdf data/croptopia/recipe/hops_seed.json +b4b32bb1a857245dda7c0fee004ceb5a139caa04 data/croptopia/recipe/kale_seed.json +67605b198edcacc967825cc79023ec67b4b7f030 data/croptopia/recipe/kiwi_seed.json +994b0b204f3ba8b2e82c68c8dad2e882bfeeba29 data/croptopia/recipe/knife.json +26ebeff42f555d531bbbe1ef32a46eb54277bf20 data/croptopia/recipe/kumquat_sapling.json +7ed763a4fca125b0071e0ef61c1e8b6743c9589a data/croptopia/recipe/leek_seed.json +fc57e081e6c9ae8ad68519605c36413321504ab6 data/croptopia/recipe/lemon_sapling.json +8fc292dc76f923850ee29529e6d1df82583981b0 data/croptopia/recipe/lettuce_seed.json +30dca525e92a960657a96ab7dd6fb0f314e83201 data/croptopia/recipe/lime_sapling.json +69c9afa73f2658aad5d8d08bd0c6636b8d6331e3 data/croptopia/recipe/macaron.json +994bccace2855056837542060e70eac5d4581c0d data/croptopia/recipe/mango_ice_cream.json +1d722ff3a8dcf65c9486983ef59c2212679cb586 data/croptopia/recipe/mango_sapling.json +29d5f4f9040d5c0827ca2d9f671b0749cedcc260 data/croptopia/recipe/mashed_potatoes.json +32cbda43be63d87810ad1c13d8a5a3060a2b88c1 data/croptopia/recipe/melon_juice.json +63449d909acce0426b026c60c7b5b0da72d701ea data/croptopia/recipe/meringue.json +d431ab07830677429d79252222e10cc8ca5adaf2 data/croptopia/recipe/molasses_from_smoking_sugar_cane.json +05174ba40c955bf711511d342954dcee48dd1097 data/croptopia/recipe/molasses_from_sugar_cane.json +9be5e9407ca8179f2907981502701e0e4f0e6017 data/croptopia/recipe/mortar_and_pestle.json +1ffa0a56afccb749b6c630e3ae4d176d0c1939d3 data/croptopia/recipe/mustard_seed.json +9bc6cfd94dee7d3d6def7b6b0a45c8c7a6716766 data/croptopia/recipe/nectarine_sapling.json +abe632cbf94181622d14ef8e0a6f979a8cfff8e7 data/croptopia/recipe/nutmeg_sapling.json +db7bb1e489f0c79440d2eda6e81cdeaffd427f02 data/croptopia/recipe/oat_seed.json +91e40c519d6fc044faeb81f4480c22fed7afbf67 data/croptopia/recipe/olive_seed.json +d18de0a3b393ebcc303c1d8b7f36841af053ec89 data/croptopia/recipe/onion_seed.json +7ba55045e23ccc7fae6a7c850a04367aa5aa3414 data/croptopia/recipe/orange_dye.json +2dddeca9cc96937d5a7f453805e685d0945598f1 data/croptopia/recipe/orange_juice.json +f9c14a5f1fc54121dd2914b0d0deb4911d96c790 data/croptopia/recipe/orange_sapling.json +78ebeacb223db129da674606cec7d9f465b6c8e7 data/croptopia/recipe/peach_jam.json +bb5a183b103e9e90c6ab22253653fb2f65e0e107 data/croptopia/recipe/peach_sapling.json +b3ab0cc652e99f75be9ad824dbb8ce6bc986a7b1 data/croptopia/recipe/peanut_seed.json +d2d9fe7ea47569046dfed29c6f61e830ced2b818 data/croptopia/recipe/pear_sapling.json +c80c1c7ecc46d5b3a502fa68f884299aafb70b9a data/croptopia/recipe/pecan_ice_cream.json +c50ff0149354c1deaa00a80698465c7ff433c49b data/croptopia/recipe/pecan_pie.json +dd73f6aa64c988c01c005f8826d9b96f1834ee49 data/croptopia/recipe/pecan_sapling.json +dcbe71e06323686b5b404525bf358ae92375aff2 data/croptopia/recipe/pepper_seed.json +cdf681c284cf919b84c9872b13b867629fa44745 data/croptopia/recipe/persimmon_sapling.json +546ef6420670e50dbc1aac83d0803b4b18de66e9 data/croptopia/recipe/pineapple_juice.json +b70006b8fefe38f09358215d42a517ba06c614d2 data/croptopia/recipe/pineapple_seed.json +59d274b3767d9b61ef5b6a4960ff676a6e4e79f0 data/croptopia/recipe/plum_sapling.json +e8528a2e0a22aec86e22f4ec025d6dd51cc05c1e data/croptopia/recipe/popcorn_from_corn.json +fc9d163b49aac040702015ea6907fa428ca04938 data/croptopia/recipe/popcorn_from_smoking_corn.json +4adf9ad355c7588120c1d2d120555ad05d30758e data/croptopia/recipe/pork_jerky.json +35e612addecdba13fc8be117dad5822e60b2edb4 data/croptopia/recipe/pumpkin_bars.json +343b8f81fdc96bc05340ea45e58fa27a2014a017 data/croptopia/recipe/pumpkin_soup.json +4b916debdd0fb73d0c282a307e74f0f86a080b9a data/croptopia/recipe/purple_dye.json +caddb1031ebbe652534d43d0ed284e9326ef5c73 data/croptopia/recipe/quiche.json +402350caf4fd6659cd8f992556ab1f0f8315df62 data/croptopia/recipe/radish_seed.json +f94beedb7e5f302d0e8e70e2b310a9dfcbfff89a data/croptopia/recipe/raisins_from_grape.json +e1aa84ededf04f518c50f820e14aadd70a16cea3 data/croptopia/recipe/raisins_from_smoking_grape.json +fe500e29f2b62ec4ff8ba7e58d635eb436ccbf63 data/croptopia/recipe/raspberry_jam.json +903a8d661ea2e2517a037bf9baa712a942f24adb data/croptopia/recipe/raspberry_seed.json +05c4b032a80e6bd0b834c06c74325f431645b669 data/croptopia/recipe/rhubarb_pie.json +09b97262dd3d06753b347bc6f885c76ed18aef28 data/croptopia/recipe/rhubarb_seed.json +45b3cd5b4ae9a0c1edbf75754da4046d36cdcccf data/croptopia/recipe/rice_seed.json +8c3384dec83465f54687321482266f1ea4c3e937 data/croptopia/recipe/roasted_pumpkin_seeds.json +e5d8afa9ec98d6839aac02247b93209328e0dd1c data/croptopia/recipe/roasted_sunflower_seeds.json +71e4b548cd59dfac28c06773653eeed01ef7a994 data/croptopia/recipe/rutabaga_seed.json +684dbb0394296d035adfcde1b6f6351b28b90acd data/croptopia/recipe/saguaro_juice.json +4adaf501330e38520ccca3373969254fa1a845c4 data/croptopia/recipe/saguaro_seed.json +79380a0df87ebf470cacd23a88efe3626f2156ec data/croptopia/recipe/salt_from_smoking_water_bottle.json +9c039d47991c0471e133af2caf89bacdf4f3ee4d data/croptopia/recipe/salt_from_water_bottle.json +b5c9b09f28805c40f0b403063843049c65df411d data/croptopia/recipe/sausage.json +f26ba8fcaaffd47513ce0aae993a31ee4a2dfe61 data/croptopia/recipe/soybean_seed.json +2496306c9413f452fad1eaf1127f37a25718155f data/croptopia/recipe/spinach_seed.json +d4a44991123f5a7e1dbcbb37a275cbfbbf19a6b1 data/croptopia/recipe/squash_seed.json +ffc4032d1575e9b94502754ddaf1365d1d39cb7d data/croptopia/recipe/starfruit_sapling.json +1620fb14563de921742dce91e45587520c3eb311 data/croptopia/recipe/steamed_clams.json +a5821badbabc54f046c909506c1353ba253a0d6d data/croptopia/recipe/steamed_crab.json +97fef4f937e8ff2d9ca4bf5495f09f1d7f056fa7 data/croptopia/recipe/strawberry_ice_cream.json +6de3b900b33e252851a624300cb455c4bb522ad1 data/croptopia/recipe/strawberry_jam.json +55cb7a4fadad8ece01550e38bddf12000c010412 data/croptopia/recipe/strawberry_seed.json +0372b6e2fd6c5d531ef870a1c28e75ebb2a24e75 data/croptopia/recipe/strawberry_smoothie.json +b68f8dc548f144463dce797cd45c13e3a0e86a36 data/croptopia/recipe/stripped_cinnamon_wood.json +cc90ff66c5eba9deaf2f112eb0c004642026268e data/croptopia/recipe/sunny_side_eggs.json +2ba68e02c97dd872f049f9e40c7a39e5c83ec036 data/croptopia/recipe/sweet_crepes.json +be4dc1628860faafaeef153da23859a036498a2b data/croptopia/recipe/sweetpotato_seed.json +fbe5b4baf37764d177ea02668a874e639f0c171d data/croptopia/recipe/tea_seed.json +c8de14be01ee95b501b922debff50bd93d54fa6f data/croptopia/recipe/the_big_breakfast.json +39172d8163a7d4d166bd5a937212eba5c3b61b51 data/croptopia/recipe/toast_from_bread.json +a1b778776b0c5fb3c55d1418a4f603fe1dba3d86 data/croptopia/recipe/toast_from_smoking_bread.json +6a261e379429a5126493a230d6e3cf7b13e0af52 data/croptopia/recipe/tomatillo_seed.json +ee8148fd6115950aaaf738ff81dc8b65276f8ec3 data/croptopia/recipe/tomato_juice.json +831d24f8d56a74c952abf6a21b5dc0319ef68831 data/croptopia/recipe/tomato_seed.json +c529c01a426e712ba4c1738ed495116f19572401 data/croptopia/recipe/tortilla.json +a8cb2bfb3276f70288cdb25ca0f0a7ca92252dd6 data/croptopia/recipe/tuna_roll.json +18ca02f235cf26d3a198d07241fd50f4d0490bb5 data/croptopia/recipe/turmeric_seed.json +d587923252f1877b7a0ba7f760fbc2376a3589b4 data/croptopia/recipe/turnip_seed.json +df6592145f272218a04d7176d45f091c09254e27 data/croptopia/recipe/vanilla_ice_cream.json +493d0da29396e74889c1d9c88b56cad0db9cee37 data/croptopia/recipe/vanilla_seeds.json +6dd18937e416d11a57f938bc921a785e911890c7 data/croptopia/recipe/walnut_sapling.json +4fd40e0e1ebfdff1afdfceed87adc1394678bd12 data/croptopia/recipe/yam_seed.json +bdc2beaf98f1c9511fc43f36e3b2e7e48c3d0b47 data/croptopia/recipe/zucchini_seed.json diff --git a/src/main/generated/.cache/6946bb6e5b2634a44a97f8d3917158c6ed290a13 b/src/main/generated/.cache/6946bb6e5b2634a44a97f8d3917158c6ed290a13 deleted file mode 100644 index c09d3e160..000000000 --- a/src/main/generated/.cache/6946bb6e5b2634a44a97f8d3917158c6ed290a13 +++ /dev/null @@ -1,375 +0,0 @@ -// 1.21 2024-06-17T18:40:20.1725903 Croptopia/Recipes -7c65fff9c6457abba37b02b7b0386f8ce44e9420 data\croptopia\recipe\blueberry_seed.json -403e95244c9cc784f6b7e36d224ca4b8362d98ac data\croptopia\recipe\elderberry_seed.json -5124e3120f08523d622eefeee20e05dd03b9ce93 data\croptopia\advancement\recipes\misc\greenonion_seed.json -8821488df4bc958610187fe0cf9063591472d243 data\croptopia\recipe\mortar_and_pestle.json -312aba583bdc5f415b1296021f653040bacf348d data\croptopia\advancement\recipes\misc\cinnamon_roll.json -587b9f7c222141c78a5dc378e5fb325c0e6e7021 data\croptopia\recipe\cinnamon_wood.json -4eecf89e18bf63033ae00e52ddbe689ba9eb74ca data\croptopia\advancement\recipes\misc\meringue.json -174c7d6d11858a60b88b0c5889654e6433726f50 data\croptopia\advancement\recipes\misc\turnip_seed.json -e06334caa22fb343cc7f11ae328a3818edb134b1 data\croptopia\advancement\recipes\food\raisins_from_grape.json -5c2b20c03bbe9289781f2f1369baa2d824b374eb data\croptopia\advancement\recipes\misc\garlic_seed.json -eddbfa99587ff0a8d20296761cc45377b2818c5c data\croptopia\advancement\recipes\misc\corn_bread.json -35d1af559e17b2073d9255cc89bfe28f2b1101f3 data\croptopia\advancement\recipes\misc\orange_dye.json -e5b5c87051cc4964eacda12e0160dbf19f553623 data\croptopia\advancement\recipes\food\cooked_anchovy_from_smoking_anchovy.json -9a78c74856f0cef30071cb4ca3bcd32f949f8ac8 data\croptopia\advancement\recipes\food\raisins_from_smoking_grape.json -450154415506ff6613dd2a4d39792677683c676b data\croptopia\recipe\saguaro_juice.json -2c31e9c6d2798116869c9df0633ad158f7d37faf data\croptopia\recipe\honeydew_seed.json -5c6f33b48711b06ca9cbd5d0ba3f4274eda8465f data\croptopia\advancement\recipes\food\beef_jerky.json -36602a7caf4039249af3ced7a7f81b5d2a87ed57 data\croptopia\advancement\recipes\misc\plum_sapling.json -2559e1d58ee5b6b7a7864ff1ec6c2ec776dbbdfd data\croptopia\advancement\recipes\food\cooked_calamari_from_glowing_calamari.json -ea7668647dec4ae9663fda435ff15729fad4501b data\croptopia\recipe\bellpepper_seed.json -b696778fc339add475022a2fe4b30e71fe0f20f9 data\croptopia\recipe\nectarine_sapling.json -da109f70b9351270ec539ae99c258a4281ab1fe2 data\croptopia\advancement\recipes\food\cooked_bacon_from_smoking_bacon.json -6aedcfb8320b4aec86b53fa6d19f7ac317113db0 data\croptopia\recipe\lime_sapling.json -295f7985dd03c0541d4c6e9aa988d76d9b5fb024 data\croptopia\advancement\recipes\misc\deep_fried_shrimp.json -56023496a14931493f4d5022bafd1953fbe18856 data\croptopia\recipe\blackbean_seed.json -c6aac6334149ca1938327ca1f5f57aab05249dcc data\croptopia\advancement\recipes\misc\currant_seed.json -2f4b42362b95dcb9022c8ce17fc5efd7d06938f4 data\croptopia\recipe\olive_seed.json -c97782f36a0acd96b64a202ebf054e1835b1d475 data\croptopia\recipe\dead_bush.json -b6ed1a59055a415b1d41969ab3bd5b0526007baf data\croptopia\recipe\anchovy_pizza.json -437cee85656b275718d9cd426ad9107ef6003d93 data\croptopia\recipe\the_big_breakfast.json -025f2205a0ad421759f1507a93b7e74a629c690b data\croptopia\recipe\pork_jerky.json -273c770fe7b71367fa81e0137d5478f1400eddb9 data\croptopia\advancement\recipes\misc\grapefruit_sapling.json -c1e93a977c1551bc23cfaf0ec0f658f176fe1402 data\croptopia\recipe\fig_sapling.json -077dbeb981a7382d8a4718fa6cb26f970bc3d0a6 data\croptopia\advancement\recipes\food\baked_yam_from_yam.json -98e22cd47c561f83e1f091310da384e150577f0e data\croptopia\advancement\recipes\misc\elderberry_seed.json -e08aa449ca14f7d834032c003d149352f61b5683 data\croptopia\recipe\greenonion_seed.json -f30c866210bc409ee11fa7f19ee3f76db34cc510 data\croptopia\advancement\recipes\misc\apricot_jam.json -743fce1ed9fdbdb6121f97d4775dc53efb69db3d data\croptopia\recipe\hops_seed.json -178931bd3da89c0d93b5929f42958842b87728b3 data\croptopia\advancement\recipes\misc\strawberry_jam.json -501f9ec8a4935342f7b6609303f6eab03d7f21ad data\croptopia\recipe\leek_seed.json -2c457bbd470b598488da2537eb7c11cf53c9ba31 data\croptopia\advancement\recipes\misc\hops_seed.json -03426d270b094067b1ef51b50616b1a68565a80c data\croptopia\advancement\recipes\misc\bellpepper_seed.json -99447d5497ee2a32ded33e468364e27543e789a6 data\croptopia\recipe\vanilla_ice_cream.json -3c84567d42a9157768dc245c319150f566e8fb2e data\croptopia\advancement\recipes\misc\dead_bush.json -5f211ecbfc194bf141a0192215f6a76a38e5e9db data\croptopia\advancement\recipes\misc\mustard_seed.json -6abfb95e53044f2855821e3a6b023325aea29261 data\croptopia\recipe\rice_seed.json -f8c61a2d59e6b0ead67da17a9b21f48c53caf9a5 data\croptopia\recipe\cabbage_roll.json -3318384d09cefc5dfe02618ad08366a5b13156ca data\croptopia\advancement\recipes\food\cooked_shrimp_from_smoking_shrimp.json -8590c5ebdc56f96aaba1a5304e93a1895401901a data\croptopia\recipe\nutmeg_sapling.json -d97d99da38b0cbd880f3650fe1c5d825fa46707b data\croptopia\advancement\recipes\misc\rhubarb_pie.json -4b88f6b4eb2a5d700b07e7f5ac08a8d54e2171e2 data\croptopia\advancement\recipes\misc\asparagus_seed.json -af899eb413b4bf2cacfba433daf7cbaa6a29576a data\croptopia\advancement\recipes\food\cooked_anchovy_from_anchovy.json -ab6e907b689442d830208bd1417817b6db8a0030 data\croptopia\recipe\cooked_shrimp_from_smoking_shrimp.json -7000d5f060cf03b30526fbdaa75bc5920b9549fc data\croptopia\recipe\caramel_from_sugar.json -d9a9c71e3e19aca0f1e0de53f1888bd3f76e275d data\croptopia\recipe\tomatillo_seed.json -94a0541f60d90b8f72d1a899a0c4a91eb9a78971 data\croptopia\recipe\crab_legs.json -d689421bb03fd247b78134fd332d9a49882eadd6 data\croptopia\advancement\recipes\misc\date_sapling.json -020ad7a0eeae2615d0879005481845db007827ff data\croptopia\recipe\rhubarb_seed.json -fcbd36be964c641d20be336bbd997ac33d704498 data\croptopia\advancement\recipes\misc\strawberry_ice_cream.json -1d58964fb30b425b1b8e1e384466381b71e77c59 data\croptopia\recipe\starfruit_sapling.json -96bc7feda256edd89b3880c4a138feafa7027554 data\croptopia\advancement\recipes\misc\pecan_ice_cream.json -7eece267d831d0b3c55795e5b315eb7f4d0be57d data\croptopia\recipe\caramel_from_smoking_sugar.json -94466d4b431addb2c3b04f192aedca2b8e3fc58f data\croptopia\advancement\recipes\misc\grape_seed.json -441d87392ceb33c2f6173244865f9671df395a01 data\croptopia\advancement\recipes\misc\cherry_jam.json -7bcaa4cf332b7a91c7a7215513796e908d715808 data\croptopia\advancement\recipes\misc\raspberry_jam.json -c6707b3e9ec2675081dfafaf93267596672fe261 data\croptopia\advancement\recipes\food\toast_from_bread.json -b4349e2f94a18a199c6f5b5ee17bb93c6f3d1adc data\croptopia\recipe\raspberry_jam.json -d44cc6ac24c5b28434977de344515e4cf7716881 data\croptopia\advancement\recipes\misc\cabbage_seed.json -ea515aff1b925238252a106817ecd418bb14b802 data\croptopia\advancement\recipes\misc\crab_legs.json -345e74bd9bb577fa62332a2e8ca0d171821c3bcb data\croptopia\advancement\recipes\misc\sweet_crepes.json -5980e04e6a378fc5e8f42968902ef24f35dc3cef data\croptopia\advancement\recipes\misc\nutmeg_sapling.json -a8d8802b2c3b3486f6a02c28cc8ca3456315b01a data\croptopia\advancement\recipes\misc\frying_pan.json -989ac1b788c37f0744923f8a641948a2f4a6f18d data\croptopia\advancement\recipes\misc\walnut_sapling.json -ba421addbbb0ef31fdfda9ba0d677037eae407cc data\croptopia\recipe\pecan_ice_cream.json -e037a08a344d17f7c5d17bab93aa4e79f321923d data\croptopia\advancement\recipes\misc\rice_seed.json -bbd006d95a6e7540ebc1bf631af291b874c98166 data\croptopia\advancement\recipes\misc\mashed_potatoes.json -4d052f1cffc059caa8609163989bd091eeee563a data\croptopia\recipe\grapefruit_sapling.json -96a377367f5db0474cd170ea3e52dd91f506d735 data\croptopia\advancement\recipes\food\cooked_tuna_from_tuna.json -b659567eac88bd75df5730c1e3866d192d428cb4 data\croptopia\recipe\pear_sapling.json -ff2c5a2450848b3d500f391d27a1881fef19814a data\croptopia\advancement\recipes\misc\leek_seed.json -a2ac87d79c6860e2aa858546b7d6f5bb62ea9d98 data\croptopia\recipe\blackberry_seed.json -1281a6d97267e803e471583d70fec817a376d7dc data\croptopia\advancement\recipes\misc\apple_juice.json -4f71ddf635a905b60cc6c7edd7e5281e059be2e9 data\croptopia\recipe\cauliflower_seed.json -e5d3ddf097841117ed77cf27290c9edbd6bc942f data\croptopia\recipe\orange_juice.json -b805f75501a40d65efb4bcb04e002ac14c9c4f70 data\croptopia\advancement\recipes\misc\coffee_seed.json -d78ded1cc9b669a373f57aeeadd2f4bd6049a9f6 data\croptopia\recipe\date_sapling.json -49424c280e7e3bf4778602b3c37fbd01cc3fc247 data\croptopia\advancement\recipes\food\cooked_calamari_from_smoking_glowing_calamari.json -ebdd35d930b83653575c2a42a2804ae889957dca data\croptopia\advancement\recipes\misc\pumpkin_bars.json -2f82edee402d2b0ec021aaa1d579f1e38e0ab412 data\croptopia\advancement\recipes\misc\blueberry_jam.json -069394cafdab2cce6e04d10ee23980ebd973542e data\croptopia\recipe\stripped_cinnamon_wood.json -412f61eb72a1aa23992548a61458554e1cb0c517 data\croptopia\recipe\raisins_from_smoking_grape.json -de772720b3387c0e7e0c751808ee9d71881ad774 data\croptopia\advancement\recipes\misc\pepper_seed.json -bd0cef10a40d080ed2a0fdb6f1cf3c594fe8c71d data\croptopia\advancement\recipes\misc\peanut_seed.json -ec40c243a590215860e7ca408d8c7504875e1b63 data\croptopia\recipe\asparagus_seed.json -0f03f7983774f606eef53c52175a8b95398d5f5d data\croptopia\advancement\recipes\misc\almond_sapling.json -6da1170eae1023b3c1dbab98a814bab98a4c01fa data\croptopia\advancement\recipes\food\caramel_from_smoking_sugar.json -844854907970a4c6e83e3819fb6b762e421e7862 data\croptopia\advancement\recipes\misc\chile_pepper_seed.json -8a4b6498678d8ead24d0124901b4a3f524c8f643 data\croptopia\advancement\recipes\misc\sunny_side_eggs.json -c8d6dcaf9e471fe29a4ad4035d4e9ff174fa57c3 data\croptopia\recipe\orange_sapling.json -d60b01deb49d0a0335a9a75f37b1814ef39615b0 data\croptopia\advancement\recipes\misc\oat_seed.json -8487f0de970d95b1dc4635af5fc40350a11bd58b data\croptopia\advancement\recipes\misc\anchovy_pizza.json -38f13bbca118b30462645dc62565fa3372cd48d9 data\croptopia\advancement\recipes\misc\roasted_sunflower_seeds.json -4d5d9a4adc46aad72252c79d35b0ece421c4a49c data\croptopia\advancement\recipes\misc\saguaro_juice.json -720450c3756d5a8b6d33c80ecd3ea303ffcd6779 data\croptopia\advancement\recipes\misc\pineapple_seed.json -2b66a0b0cf1f6220b050b755a55c7511efc397c8 data\croptopia\advancement\recipes\misc\zucchini_seed.json -48462ac4959d26a9b611ab92104fe6cac46dff78 data\croptopia\recipe\toast_from_smoking_bread.json -81d4039b33788db1898aabb3c4594ac746aba3a3 data\croptopia\advancement\recipes\misc\croque_madame.json -15ba3dadce1e9c287286cffeed1d7b79d8ac60b0 data\croptopia\advancement\recipes\misc\cinnamon_wood.json -e677f3f6f0876328b0193ce330d8c6e25181ca5c data\croptopia\advancement\recipes\misc\strawberry_smoothie.json -ad20652a2260ffd034922a493bae646f5892139b data\croptopia\recipe\quiche.json -64d61a3cfd37c84396af745e7feb707aa7baf888 data\croptopia\recipe\cinnamon_roll.json -dadb9962ed205cd7c14e0bf2640751017d7eff9e data\croptopia\advancement\recipes\misc\corn_seed.json -1a6be767360e63aa3a891a6c05bb41e2b7e43985 data\croptopia\advancement\recipes\misc\coconut_sapling.json -e82ef768cb18e011c3fb9829b2ea1862399e32b1 data\croptopia\recipe\coconut_sapling.json -accf0fb45171aba4a5f4011fe8cf537a9cf89f2c data\croptopia\advancement\recipes\misc\cucumber_seed.json -5e6fc747651aed816ed8f06cb806302cb47ab7a7 data\croptopia\recipe\grape_seed.json -84f8abfe10b7a32969b48b560a0667d45d280cd7 data\croptopia\recipe\mustard_seed.json -01afddbf79e2bf73077c6436334c3fd719875464 data\croptopia\recipe\yam_seed.json -d67e10be15b8475e0d496abef5ead14a34ab7fe6 data\croptopia\advancement\recipes\food\molasses_from_sugar_cane.json -3ef9d77033ad7a5cd5d3ade239e16e86b216649d data\croptopia\advancement\recipes\food\salt_from_water_bottle.json -1f2835a15c40369070d99bff0b7ab49a6ec0f188 data\croptopia\advancement\recipes\misc\dragonfruit_sapling.json -bffab97f8812136528629b9981f128e0e3c935b0 data\croptopia\advancement\recipes\misc\kumquat_sapling.json -5883376faf993f56aa8e238e94f6b05c33193895 data\croptopia\recipe\cooked_bacon_from_smoking_bacon.json -96a179f37ba467ba26a49e42ab6f3e25f30970ac data\croptopia\recipe\food_press.json -61940df5e3b9645e36f7c2ed79fe898b3ddf863f data\croptopia\recipe\pumpkin_bars.json -06bca35a9f343c906b6c7751bf2c6d8d1db8ba2b data\croptopia\advancement\recipes\food\baked_sweet_potato_from_smoking_sweetpotato.json -cd2dde411fd04389283bd5131f10a92eea76bdaf data\croptopia\recipe\candied_kumquats.json -9077c9edde5b7498281dbf58fe9375defb420e99 data\croptopia\recipe\garlic_seed.json -f29c15e8694fd59977832928e1e62c0154a6febb data\croptopia\advancement\recipes\misc\squash_seed.json -b0947c66876345a2d1d003508a11a04ad5726189 data\croptopia\recipe\blackberry_jam.json -ae854a8f89494afa06b07573ee54777ca0214668 data\croptopia\advancement\recipes\misc\candied_kumquats.json -e573df00e8b8938a692d117830e6f60b23fa0725 data\croptopia\recipe\lemon_sapling.json -a93678d4a4e23ca93a5df85cfe333e8e501a2e62 data\croptopia\advancement\recipes\misc\vanilla_seeds.json -619e3ff9baa03b113f7061f7ddc54d98bb9ebe8d data\croptopia\recipe\apple_juice.json -4f4270ced4c6815d9f5b1a46e7ba310874c57110 data\croptopia\recipe\baked_sweet_potato_from_sweetpotato.json -88812572ece37f9b2a945365bf5e2391e19fa2bd data\croptopia\advancement\recipes\misc\tomato_seed.json -8490c2634508c96ab7a7128dceb66caebd9326bc data\croptopia\advancement\recipes\misc\tortilla.json -405330c32812cbde75c6714ab2a67387f0ac0381 data\croptopia\advancement\recipes\misc\tuna_roll.json -c8e532b5d82a036b99c96c17379ee79ec7e9fe1f data\croptopia\recipe\corn_seed.json -61998b02713cf970d3e40b75736b39db84e368f9 data\croptopia\recipe\baked_sweet_potato_from_smoking_sweetpotato.json -8cd6884de9bc91aa6d2b6af8f983a1a671370895 data\croptopia\advancement\recipes\misc\cherry_sapling.json -30e9a3879ee9a87b0aec9063ae1263d41ad940d0 data\croptopia\advancement\recipes\misc\turmeric_seed.json -7b85e4b259d37d30099142c12c2629896080bad0 data\croptopia\recipe\mashed_potatoes.json -272829449ac5fbaf2075898706c76c3f6aa7748d data\croptopia\recipe\lettuce_seed.json -b2dea8080310ba843a46aba819e915f560bc3b37 data\croptopia\advancement\recipes\misc\peach_jam.json -1594d9c1c30c8133fbe8dafde929b081bcfee51e data\croptopia\recipe\kale_seed.json -26f359075395cbfe8ab05ca710bf7cc79aecb723 data\croptopia\advancement\recipes\food\baked_yam_from_smoking_yam.json -135b079fad3e89d8f0828326863221edce5152df data\croptopia\recipe\turmeric_seed.json -5be06cb7cb5adcb6c49935b954618fc22371d913 data\croptopia\recipe\ground_pork.json -4086a95490b4a409f4ce7afe629319c867c1f8cb data\croptopia\advancement\recipes\food\cooked_calamari_from_calamari.json -b46bbec05eb520df93540336c849fde73233bf66 data\croptopia\recipe\currant_seed.json -a492bafc4ce83a90c357be4e75f437df49179946 data\croptopia\advancement\recipes\misc\stripped_cinnamon_wood.json -be4d05fc2aefbc8b8a6d64c8f5dfe1ec368708d2 data\croptopia\advancement\recipes\misc\avocado_sapling.json -0c4c2a0a766ce8e9a4183f7ae34c6da02698efdd data\croptopia\recipe\roasted_pumpkin_seeds.json -b554dd3ed253a642c9c0d0fb0c05aeac5137df26 data\croptopia\recipe\artichoke_seed.json -785465b476426f991bfe7d694c87edf8e22d27e0 data\croptopia\advancement\recipes\misc\dauphine_potatoes.json -92b7992238b4e8fd235f0c6e12c547b5bc3a72ff data\croptopia\recipe\frying_pan.json -1296ae3d7a5f8011e4fc5229e05c41fdd63fb7e6 data\croptopia\advancement\recipes\misc\knife.json -455d37b7559b55e5b7699ee1d875e8a5ad03f5b9 data\croptopia\recipe\vanilla_seeds.json -a15ca40eff146ee71fcc4a758dea8db951c61acd data\croptopia\advancement\recipes\misc\mango_sapling.json -242da94edd5eeb1806537a025c893f859d809f72 data\croptopia\advancement\recipes\food\salt_from_smoking_water_bottle.json -1dd8a1e613f068fde7832544dd6dff4018c282ea data\croptopia\advancement\recipes\misc\pumpkin_soup.json -c88c4ec72db43f395d7388726418307ca25de4c7 data\croptopia\advancement\recipes\misc\goulash.json -c5f3bc543e3d7c2b93e72d83268855bddee81885 data\croptopia\recipe\baked_beans_from_smoking_blackbean.json -401c7f8fad301c0d0992769902266c68a05fbd05 data\croptopia\recipe\pumpkin_soup.json -6cc2590584f7a08f4bcfcbab2aa428f1940c3ac2 data\croptopia\advancement\recipes\food\caramel_from_sugar.json -8f3435ae781eaaac31d37b70bb3b03bbc08c9ae7 data\croptopia\advancement\recipes\misc\lemon_sapling.json -399c68aadb35088cf4e0780db4f432ff5b106331 data\croptopia\recipe\baked_yam_from_smoking_yam.json -2c04903056f5433ed318d6a2c698cc6bc61ce6b1 data\croptopia\advancement\recipes\misc\cashew_sapling.json -7f7d50bed587b04f383a862450507f3886d1e38a data\croptopia\advancement\recipes\misc\persimmon_sapling.json -a78ebc3e177b15eda891512fa445eb828c3092fc data\croptopia\recipe\cooked_calamari_from_smoking_calamari.json -bb8368d5576b8ff79f3f527a474f5a8d89dcdbeb data\croptopia\advancement\recipes\misc\ground_pork.json -dd96ce1eb89d568a4562e9f5910ba57fca1ca75c data\croptopia\advancement\recipes\misc\blueberry_seed.json -707225b4095d2255ae752de57681139ed469fbd3 data\croptopia\recipe\pecan_pie.json -76c2a743c114ced95f17ae02cd3f89c3083e2862 data\croptopia\advancement\recipes\misc\greenbean_seed.json -cd95281053551690ed9d1603d90e3522fb0c7ad1 data\croptopia\recipe\avocado_sapling.json -b959c65bcc25280574f4001fb54f3437ae105ce7 data\croptopia\advancement\recipes\misc\tea_seed.json -1546f613d3da6c36c220658e5ba3b8919876e9d2 data\croptopia\recipe\fried_calamari.json -44cb6f81c70378aefbab4ddda45fa793045e50bb data\croptopia\recipe\cooked_calamari_from_calamari.json -fdfee6feafddeed9cb9d672c61db54d9e59901d7 data\croptopia\advancement\recipes\misc\purple_dye.json -3fc1ed75fdb825c9bb094f93331e96267b4d6d71 data\croptopia\advancement\recipes\misc\macaron.json -bcedd80f9bb2ba675cc161b072c7c407c08c06f9 data\croptopia\advancement\recipes\food\popcorn_from_corn.json -2d95fd2da647c2aca1d112826324fa05258ad9b8 data\croptopia\recipe\strawberry_ice_cream.json -5f36a29d51ad1e6aba976c61a711be090c34581a data\croptopia\advancement\recipes\misc\sausage.json -df295f952436347f7ac9aac41bc6a8eb32fd3680 data\croptopia\recipe\zucchini_seed.json -5924dae4a86dd49cdb4070e2f2a591f8dfc64b1c data\croptopia\recipe\peach_sapling.json -5fcec366a56e83021698c0bb374668ab0dc832d0 data\croptopia\recipe\cantaloupe_seed.json -010832ba5306575ff1c4e44509ab381e61d4ac6a data\croptopia\recipe\tomato_seed.json -d546d5ecb5b5ba610a56078541c056ca1070a27a data\croptopia\advancement\recipes\misc\strawberry_seed.json -097c9e019dc2172f7cf2c72158a7ee5d14c00f63 data\croptopia\advancement\recipes\misc\mortar_and_pestle.json -8df401b7421c355d745a1b7c7a494059859a9d2d data\croptopia\recipe\croque_madame.json -c81af63087d6164222f44ccb13e3563d109bc2d0 data\croptopia\advancement\recipes\misc\steamed_crab.json -3c374eced86effa9712c0b97285bc4df18340038 data\croptopia\advancement\recipes\misc\the_big_breakfast.json -df15abc59e8435c4c18352eb10ce67e6c84ab3ee data\croptopia\advancement\recipes\misc\lettuce_seed.json -c296b27cc16fdf7ac3eac7ad954fd9e7b9bc8f2e data\croptopia\recipe\saguaro_seed.json -a5d3d53d036db33773cb4050c5f4d6738abf33d1 data\croptopia\recipe\meringue.json -664c1cd2f0e22ff849d660546e38c8577331b275 data\croptopia\recipe\dragonfruit_sapling.json -5e9d669fc348a08451c51253f0115b8426a26d4a data\croptopia\advancement\recipes\misc\banana_sapling.json -2bdb30920dce25850c8dc9ed78d1b1a345df57ef data\croptopia\recipe\hashed_brown.json -e405579e5cfe04d12d8a939b795f2d0bfefa98dc data\croptopia\recipe\chile_pepper_seed.json -a173796dd05e1287c0202c2ee8208ff69a94dc0c data\croptopia\recipe\raspberry_seed.json -7632aa2a54fcc167e6d9273af2ac57a4b2d42e35 data\croptopia\recipe\mango_ice_cream.json -816c5685cc48bdbd2afd6b80167df6d2dbe7e02f data\croptopia\recipe\salt_from_water_bottle.json -79b3feb19cab19fc1cea428d4aa7a96a2e0ebcfc data\croptopia\advancement\recipes\misc\cranberry_seed.json -649512a1391eb2c0adaad68f4b01db4c61ffa4db data\croptopia\advancement\recipes\misc\mango_ice_cream.json -d2daeaaddb74d21def1ea7ab2c7e6a900d8e9cfd data\croptopia\recipe\cooking_pot.json -0ad796771a1c1377e1cecdfc689820e58f4d6ae7 data\croptopia\advancement\recipes\misc\vanilla_ice_cream.json -22aaeb4d39ce5c4c926c294e2f64abd7b5967ba6 data\croptopia\advancement\recipes\misc\nectarine_sapling.json -c6e2af000906eaba2b7fa7ba66794605a02458d5 data\croptopia\advancement\recipes\misc\steamed_clams.json -2f48834d5ac478b28befd9f25301094ce29f672c data\croptopia\recipe\strawberry_smoothie.json -073195b2cdc6310da889cb4fc6db37329b3f2831 data\croptopia\advancement\recipes\misc\fried_calamari.json -ad18bf9caebeaa1d998f9bb08bd7633f00b22d53 data\croptopia\recipe\beetroot_salad.json -e5fff459a78689bf50c2f9d1679875ba3068b9e0 data\croptopia\advancement\recipes\food\popcorn_from_smoking_corn.json -727f2d8eb3292b11445728c8ba7b9d4727148652 data\croptopia\recipe\cherry_pie.json -bd27cf395afc588dca689fe54fc2e7c475df3385 data\croptopia\recipe\cooked_bacon_from_bacon.json -61236cc9f2efa324522dc23145352812bfa8bcf9 data\croptopia\advancement\recipes\misc\elderberry_jam.json -17201652a6a9c44afab69df62d82720bfb206f49 data\croptopia\advancement\recipes\misc\pear_sapling.json -69aeff463cd1ab26e26949efb2301a65c84de116 data\croptopia\recipe\cucumber_seed.json -27a4098924f2264416add063a22a340e5d6321fc data\croptopia\recipe\greenbean_seed.json -ddf9fe7901cf979f619ec0be76d70404e933e23e data\croptopia\recipe\broccoli_seed.json -1586ff8f4021dc85436dbbb44f6f2bd577e56fcb data\croptopia\recipe\cashew_sapling.json -dfbad1aa76ca8b22a3807d2a03cb431d875eaad4 data\croptopia\advancement\recipes\misc\orange_sapling.json -71ecf4a00a49f43664c99515d231634a39cd3814 data\croptopia\recipe\orange_dye.json -a75847ce275ea879b2e03cb703d1e405c8b95459 data\croptopia\recipe\apple_pie.json -04ae84c048691cfd5c1ca96ecab05bb8ac30f886 data\croptopia\advancement\recipes\misc\eggplant_seed.json -b66b80ba418655168eab0c9815ea5645394232ab data\croptopia\recipe\pineapple_seed.json -6328ce90654e784f35d348b1f3e983097bc25c07 data\croptopia\recipe\corn_bread.json -f49d95ba275e9cfba8ab7f9b6ff0473da2c9398e data\croptopia\recipe\mango_sapling.json -d692645e4e29c7b8118a870da32a8c13ef55fd96 data\croptopia\advancement\recipes\misc\banana_smoothie.json -e3983a7a7592d88af43fa9faf8d3e6fb3c222c17 data\croptopia\recipe\elderberry_jam.json -df76a6b20139d669fd3609aede1cdb1f47a80d64 data\croptopia\recipe\tuna_roll.json -5eba267206c553b8186c8680a56ff2dd2ee0f1cf data\croptopia\advancement\recipes\misc\apple_sapling.json -3ebfbe953568136b813cdc1bd1d3b610b6c83688 data\croptopia\advancement\recipes\misc\soybean_seed.json -1a24156bba36db85afd184a92bdb3cfe0cc40c85 data\croptopia\advancement\recipes\misc\pineapple_juice.json -56ec6f7f835b42d9e2b03350304db2b77a3c8d73 data\croptopia\advancement\recipes\misc\blackberry_jam.json -d0e0de382a8ccd0556db24270c6940b4f5e48d64 data\croptopia\recipe\banana_sapling.json -1b2e24e566d304370abecfa7e0b2d5ae0ddf450f data\croptopia\advancement\recipes\misc\starfruit_sapling.json -bcaa6d2c9e0057e7af983ee45ca2010ad5b7f74c data\croptopia\recipe\molasses_from_smoking_sugar_cane.json -a02922c86998cf1a6f7207afb287daaba0af2c75 data\croptopia\advancement\recipes\misc\barley_seed.json -bf36a04f541f79052d0911608ab3ae3654c468d6 data\croptopia\recipe\peach_jam.json -dbc9ef36f93bf009db9e62a03d524d7c735b3a6a data\croptopia\advancement\recipes\misc\kale_seed.json -a3a259a968c386104666e66e8be5e4a1397ad4ce data\croptopia\recipe\kumquat_sapling.json -74424d4111c243f074fd75a968bc71af3f5e7705 data\croptopia\advancement\recipes\misc\apple_pie.json -dd670f7814cf7540077e0e75e879ae07f9c3ed16 data\croptopia\recipe\cranberry_seed.json -7c2a0b2336d3351e52ea8e96748dee85975f1603 data\croptopia\recipe\cranberry_juice.json -bc981d102386ea2f7a07041296fad6b4a0143b9a data\croptopia\recipe\basil_seed.json -82995356385fff7003edc37e8b06e383edefd00f data\croptopia\recipe\ginger_seed.json -5f1f3838fff0ad85177fff2282ae734b64fff38a data\croptopia\recipe\macaron.json -ff32d5fb3c57c45ce099c4761cc0954a72b786b2 data\croptopia\advancement\recipes\misc\orange_juice.json -5d582c3e4f14ddbe352679914559ecef21bd0649 data\croptopia\advancement\recipes\misc\fig_sapling.json -38fcabd0b2ef10152779b3bf57e884e4079225c2 data\croptopia\recipe\borscht.json -ef8b44e7d9762853b1025e72bc64877400030c3c data\croptopia\recipe\cooked_tuna_from_smoking_tuna.json -a874371ff1bd932fedd1f33f48e9b2dc1d0f3390 data\croptopia\advancement\recipes\food\pork_jerky.json -c39847c55d942cecfaff1bc096ca8cd6038e3aa1 data\croptopia\recipe\cooked_anchovy_from_smoking_anchovy.json -7b5000688046e45c02fb9928a2b3ca80d4e807a6 data\croptopia\recipe\cabbage_seed.json -0bbad5c0924facacbd1d5fd4f7ea6afa3930e8a2 data\croptopia\recipe\beef_jerky.json -fd86b7b9e150fa4b24fc3a43f3401aa4430a3bbb data\croptopia\recipe\salt_from_smoking_water_bottle.json -27b8ad5ca0bcd688d29f3bc117d64e544c57847e data\croptopia\advancement\recipes\misc\yam_seed.json -3fe50628a0438c0fe075b6a6a4f536a81865f659 data\croptopia\advancement\recipes\misc\radish_seed.json -cba0981bd0a9ddf1913f2d80f9ded66bc7daa77c data\croptopia\recipe\plum_sapling.json -a6b8338ea5930f46ba1fa671277ece2ba6d456f9 data\croptopia\advancement\recipes\misc\roasted_pumpkin_seeds.json -d84a5782a9ed54963196556a166a5db48c3d42d2 data\croptopia\advancement\recipes\misc\pecan_pie.json -e1365878b81460316763005c54e1804e6837b2e6 data\croptopia\advancement\recipes\misc\cantaloupe_seed.json -8afc3e1195b7c655e230bb5e0b1cad5bd0c0a3a9 data\croptopia\recipe\strawberry_seed.json -1bf17094f74beaa369f9d204bcb997b8a397617e data\croptopia\advancement\recipes\food\cooked_tuna_from_smoking_tuna.json -3f1932654fcef47964faa15c02f7360a50b4d280 data\croptopia\advancement\recipes\food\cooked_bacon_from_bacon.json -2a396069413ddb4500dc5b9b207cf0537c4f7fb6 data\croptopia\advancement\recipes\misc\raspberry_seed.json -cf5630a0ecbfc1b17ad4dd1fc3d8a18b65d75ded data\croptopia\recipe\purple_dye.json -e19f1023fc96027eb1ec2f79a9d46488cbe95461 data\croptopia\recipe\deep_fried_shrimp.json -7bc214c58eb9a1a7bac79c918c965098fa784100 data\croptopia\recipe\baked_crepes.json -83949de1bbdb3ac62f830726c7ac6e9a38472405 data\croptopia\recipe\roasted_sunflower_seeds.json -a535caf4a78e90ff082ed88c322459810d2d5aa0 data\croptopia\recipe\cherry_sapling.json -f921e494abc25822cc51bcf81aa849401e1c1c31 data\croptopia\advancement\recipes\misc\tomato_juice.json -e2b1fe2188edbbe68a1a31ceadab84b452220c41 data\croptopia\recipe\squash_seed.json -e417fc0064a9534336344101af26f40e2c7af0b2 data\croptopia\recipe\apple_sapling.json -2453ce9f0ec4ad5dfaf1382dbc6c6180408850e5 data\croptopia\recipe\apricot_jam.json -665845f62aeb3c5e7064fc10af1581e9e4ffd6f5 data\croptopia\recipe\dauphine_potatoes.json -af75a85c57178bbb30d2d1f10f7e4f738a629023 data\croptopia\advancement\recipes\misc\cooking_pot.json -64684b24b9a3e8406d4f23589d73250bbbbab761 data\croptopia\advancement\recipes\misc\beetroot_salad.json -a30d52bdb440a78db2d17ff7b679c2375d8705eb data\croptopia\advancement\recipes\food\cooked_calamari_from_smoking_calamari.json -6e30e158b7a889e8566caf626ef33fe7ecd2c462 data\croptopia\advancement\recipes\food\molasses_from_smoking_sugar_cane.json -7b6152f8216d69f915bf3f5b084ad2874953d224 data\croptopia\advancement\recipes\misc\cabbage_roll.json -06ac064b69cbcc8b5a5ef62588bd979d817f7f5d data\croptopia\recipe\banana_smoothie.json -00655edda65cc26d10714e9f3b8ee4a6d2ee2e9f data\croptopia\recipe\raisins_from_grape.json -482bb5925d3773eacb20dc496e299ce6d2e53c08 data\croptopia\advancement\recipes\misc\spinach_seed.json -bd00acc3d45507c6f8a46b762d51a331af6b3e8a data\croptopia\advancement\recipes\misc\artichoke_seed.json -cb51aa358a446e165d57544370f91313534bb897 data\croptopia\recipe\popcorn_from_smoking_corn.json -806fe8bc59cdd959a1d443b2d5ba7bebd4a9d6b3 data\croptopia\recipe\tomato_juice.json -04bad77ce075d8f3a1f430c95e7c11b417b8db61 data\croptopia\recipe\baked_beans_from_blackbean.json -9ec3febfb1a8233926fc2a67d6f3ef3233d7443d data\croptopia\recipe\blueberry_jam.json -8dbe2b9e8d423a95fd3bc9a70287f66a58042c23 data\croptopia\advancement\recipes\misc\tomatillo_seed.json -ca947f14829f003f69fcadcc4b0a045a175b1c7e data\croptopia\advancement\recipes\misc\melon_juice.json -e6fd4c3bd909e08f536facfbb365f71c5ace6f20 data\croptopia\recipe\cooked_tuna_from_tuna.json -299ad3a63aa60e7226d1a392e954df508a896bd6 data\croptopia\advancement\recipes\misc\blackberry_seed.json -552f5d46bbed8be422128fda9fa9685eff04df19 data\croptopia\advancement\recipes\misc\peach_sapling.json -bd79fc2b1d5f74bc24442dae1bd050f98dc5882a data\croptopia\recipe\grape_jam.json -3c2b607201744bad1b77f27c9a2c45fc5e7b2360 data\croptopia\recipe\sweet_crepes.json -ea4ff66b087dfb6ad046547abd900fce1f98d76d data\croptopia\advancement\recipes\misc\rhubarb_seed.json -76f600f5fbccb5ec2ad2a501e4a43eeee8826d5b data\croptopia\recipe\cherry_jam.json -259af7aa5854a671adfd09fa7bbb4d00918696a1 data\croptopia\recipe\kiwi_seed.json -45b85c55fc0913a2468ac8a7d6a984de5364eebb data\croptopia\recipe\strawberry_jam.json -e3e717645b3c852099b6741f734029e95b75df10 data\croptopia\recipe\croque_monsieur.json -bcb15f747c0b69c82c252e19e5ce2ffb6b09e70c data\croptopia\recipe\cooked_shrimp_from_shrimp.json -d3d537e511b760ab02f3fb7c5fd8ff2be77e1ee3 data\croptopia\recipe\eggplant_seed.json -aca68fe35c5853a2651a99cddd6bf084efd3b110 data\croptopia\recipe\walnut_sapling.json -832f8af27d9f375dc289979f152f650c71984d06 data\croptopia\recipe\sweetpotato_seed.json -fa9325b0f823c8e6e7b1166192ff43509608381e data\croptopia\advancement\recipes\misc\ginger_seed.json -2977b9a8d6389df4caaae936f65f06570fdaec67 data\croptopia\recipe\cooked_calamari_from_glowing_calamari.json -04647cc1fdcc5ec8bfd8503ab48e2fe079585a67 data\croptopia\recipe\onion_seed.json -e9c7e0806db2ca40ec028651ef2ae8549beb0c4f data\croptopia\advancement\recipes\misc\hashed_brown.json -2556aa4f55de00875bc7de8519ccca8393195828 data\croptopia\recipe\sunny_side_eggs.json -51042501d3042c98440030995ff6d9c499b140a7 data\croptopia\recipe\peanut_seed.json -ee60bd500e658a4e1f94153ba7c47fad48bc5c2e data\croptopia\recipe\pepper_seed.json -d7a998668d3b4412111e8036b2c1bf79ab804ce5 data\croptopia\advancement\recipes\food\baked_beans_from_blackbean.json -810e17cd46c33b6d08c77661b0f0ec346a229dfd data\croptopia\advancement\recipes\food\toast_from_smoking_bread.json -300d41ac38b77a4f559a6af3b4b0087dbcbf96f6 data\croptopia\recipe\knife.json -8a17acc3e8d3b6c4781310e428e781e0337635ed data\croptopia\advancement\recipes\misc\broccoli_seed.json -0bf1ad5ed89c41f9af9646b509d6099d1d9e6b4a data\croptopia\advancement\recipes\misc\cauliflower_seed.json -2795afde239b9e832071905f3791852f092532d5 data\croptopia\recipe\tortilla.json -3252486aa07002e0eb3978ac82a9ad98eeae9777 data\croptopia\recipe\apricot_sapling.json -6b786a8602a10685da3a6979df17dcc690f2f911 data\croptopia\advancement\recipes\misc\onion_seed.json -3a11ba25ed5de1d935a0609d0a4f926110792e59 data\croptopia\recipe\almond_sapling.json -717e99b58e56774287bc80b7e6f54f2bf74d0604 data\croptopia\advancement\recipes\misc\lime_sapling.json -1c82a24113a3e078360001a18e71ce5b26be1291 data\croptopia\recipe\turnip_seed.json -27253e17241ccf75679ee0ba2875b0db73bceb48 data\croptopia\recipe\baked_yam_from_yam.json -99619a0eb3cf8b8eac1e3a7c0d1899ba8ce40148 data\croptopia\recipe\popcorn_from_corn.json -f84bf39a1c6a6413dea794e5ae6f88ed664d3f4b data\croptopia\recipe\soybean_seed.json -2fe57d933c0b463094889cbdf1f93bc5801c8c86 data\croptopia\recipe\celery_seed.json -97806ab3a64b8eda3fee478743b1ef3f6052eb43 data\croptopia\advancement\recipes\misc\saguaro_seed.json -bc559fc750520e2c557116f7a71e88b71142c32b data\croptopia\advancement\recipes\misc\cherry_pie.json -45390305baf4fa582db1ba755080cc926687a234 data\croptopia\recipe\goulash.json -985e28762ce1df47ac5e349edabe4a7f7117d032 data\croptopia\recipe\persimmon_sapling.json -f72d2d6fc52fa3daa164f93d7399d75e9c65afab data\croptopia\advancement\recipes\misc\baked_crepes.json -f524ed2d16d22dc784f9b5ad6bba39603cf3f0d9 data\croptopia\advancement\recipes\misc\honeydew_seed.json -2bb906738bd94e3210932d96e24cecaca4b1d9ef data\croptopia\recipe\coffee_seed.json -c63d68bf435d5c3689ff39e4cd8d5a59a30003e6 data\croptopia\advancement\recipes\misc\quiche.json -376dbdaa8f15c62579ac9da889de4130ec8d221d data\croptopia\recipe\radish_seed.json -7628f1c2532d9ad29078160c89c78a7251381870 data\croptopia\recipe\rhubarb_pie.json -eb68a670f888efe1269d264d505e28099badb71d data\croptopia\recipe\cooked_anchovy_from_anchovy.json -9388b349270905cd4ee878eafedf26fe03bddefa data\croptopia\advancement\recipes\misc\cranberry_juice.json -02c241bcbea6f743f3eff723a0b8aa0dd3d75669 data\croptopia\advancement\recipes\misc\blackbean_seed.json -2e45685e39f604cff1b2d9b334bab1cf52c8b3e9 data\croptopia\recipe\grape_juice.json -9a6f37c077b54587fcb56a7cb465126e7b84aee1 data\croptopia\recipe\sausage.json -a70dc28e2d96576e30aef08bbe50d6d326598b11 data\croptopia\advancement\recipes\misc\grilled_oysters.json -2722680e7c95fc08e3ccdf1dfb7fd487c4623dda data\croptopia\advancement\recipes\misc\croque_monsieur.json -8ea36d4fbbd1e0a0d04eb0ac7589caaa812ff812 data\croptopia\recipe\grilled_oysters.json -092ca77f237c79d3e545602ed4070d7ed2b10b5b data\croptopia\advancement\recipes\misc\food_press.json -2941b14edfef16da09cdb82a4dc3e71f4f5e7223 data\croptopia\advancement\recipes\misc\apricot_sapling.json -8f707aad6c38ea58e8c9bf9ab9d81382d577e984 data\croptopia\recipe\rutabaga_seed.json -59abcc3cef9ed6b68f5cac098ba1b7b2afac1c73 data\croptopia\recipe\steamed_crab.json -acbfb6de06aecd3d7be107bc53dbf6d799c7e2c9 data\croptopia\advancement\recipes\misc\pecan_sapling.json -da8d65d465b8eab5e2e5b6b1b0970d2e6b3b0bb7 data\croptopia\recipe\barley_seed.json -662d7d5d1d19fdd52ef55ad2882a34e9de2aa19d data\croptopia\recipe\cooked_calamari_from_smoking_glowing_calamari.json -a2d05818d95f052dbf91957d3e15b408860cb599 data\croptopia\advancement\recipes\food\baked_beans_from_smoking_blackbean.json -02be1390e4edf4adbcbfaf4e69ffd2289d59591b data\croptopia\advancement\recipes\misc\borscht.json -9a68b0a7cb0a62ecd75bfe4a7700094c6302ae16 data\croptopia\recipe\steamed_clams.json -53dd51990ee2e9fb9774e2d0e6bc18dcf19e8af1 data\croptopia\recipe\tea_seed.json -5dc683bec7a33ab76dff0ee7b6152665ea1f22a7 data\croptopia\advancement\recipes\misc\olive_seed.json -cb1253d266121a7c2c592e5b89d069f3a4eb4b26 data\croptopia\advancement\recipes\misc\grape_juice.json -c8c273f89e0c3d5f8ff28033c7df47c05b345eca data\croptopia\recipe\melon_juice.json -1ae2381c8314717c9fba459f0cc897b785b03891 data\croptopia\advancement\recipes\misc\sweetpotato_seed.json -967afe2f0499e2686b155228d00683665335e1c1 data\croptopia\recipe\spinach_seed.json -51ed9aee055460a85697521aad33ca7bd5699478 data\croptopia\recipe\pecan_sapling.json -b9bb17c81f91a4d4ea4e7d10fe770fcd3551e8bc data\croptopia\advancement\recipes\misc\celery_seed.json -1d22602fb90329d412fa2c57cfe3d676ee5eab5a data\croptopia\advancement\recipes\misc\grape_jam.json -cf367c4c57d50ecabfaba58c74bb5ef8589a0c7a data\croptopia\advancement\recipes\food\cooked_shrimp_from_shrimp.json -96c1ef1b364db535ed69cca0e03fb6b7a7aaface data\croptopia\recipe\molasses_from_sugar_cane.json -d7426a5ba416e036750cf5aeeb2b10f14e9290f4 data\croptopia\recipe\toast_from_bread.json -864c063e978c8132a48c812c638118e47a5e5932 data\croptopia\advancement\recipes\misc\basil_seed.json -091e2adfa7af43d170a7f0afb9c288424e224ad2 data\croptopia\advancement\recipes\misc\rutabaga_seed.json -3231000aa5b78c2915d40e671a3d6336642724df data\croptopia\recipe\pineapple_juice.json -e302bde934a928e949f6f5418ea65f0f2d7a3f22 data\croptopia\advancement\recipes\food\baked_sweet_potato_from_sweetpotato.json -aab113725745556cf847789aa4570a25a1f0c35a data\croptopia\advancement\recipes\misc\kiwi_seed.json -653acac6f90a046217b842a369b81e719c9ba71d data\croptopia\recipe\oat_seed.json diff --git a/src/main/generated/.cache/84309f47a16f25044296c453d5f57cc69cc1eeef b/src/main/generated/.cache/84309f47a16f25044296c453d5f57cc69cc1eeef index f30acd966..c98337a12 100644 --- a/src/main/generated/.cache/84309f47a16f25044296c453d5f57cc69cc1eeef +++ b/src/main/generated/.cache/84309f47a16f25044296c453d5f57cc69cc1eeef @@ -1,59 +1,59 @@ -// 1.21 2024-06-17T18:40:20.1675889 Croptopia/Croptopia World Gen -33c4f4e39f19bc769ec675a7e4134cd61d46f39b data\croptopia\worldgen\placed_feature\avocado_tree_placed.json -214242935354b95627270250986ed902687266ad data\croptopia\worldgen\configured_feature\peach_tree.json -e6a5356a100d13c5108f0ee2a7209f0cd4587b29 data\croptopia\worldgen\placed_feature\apple_tree_placed.json -f12721b846a3df0ce709baee4425c18e48eca48b data\croptopia\worldgen\configured_feature\dragonfruit_tree.json -5b01aa6e67b0093f9b922680a7798168e941aea7 data\croptopia\worldgen\placed_feature\plum_tree_placed.json -13fb797998768a2fe504e8c7a99719e25c7984e6 data\croptopia\worldgen\placed_feature\nectarine_tree_placed.json -5eeb90c9741b1dc63cc81fcfd121eb62bb2984a9 data\croptopia\worldgen\placed_feature\date_tree_placed.json -813f48cc6c32d1a786778f55c9a77ba9a3efc73f data\croptopia\worldgen\configured_feature\date_tree.json -a00b5a14c42ac706b89b4e775eb67774c80df38e data\croptopia\worldgen\placed_feature\lemon_tree_placed.json -1c4cc9e046441f0ee187581a6f7ff265e6f3d586 data\croptopia\worldgen\placed_feature\cinnamon_tree_placed.json -e764d108528220712a0c74a81a1d0174308d69b4 data\croptopia\worldgen\configured_feature\plum_tree.json -e207465434ca943ee70ecb78809271bfc986238d data\croptopia\worldgen\placed_feature\orange_tree_placed.json -07e5ff3bd3fb7e47075d7970e9f87fe9c18e821f data\croptopia\worldgen\configured_feature\persimmon_tree.json -4f00cea8735fcbee05c6f9bd3f9075869d5c3c6c data\croptopia\worldgen\configured_feature\mango_tree.json -ee32ae772fdfd77d3841cfc42895eb6403ebdbeb data\croptopia\worldgen\configured_feature\coconut_tree.json -f231022737a816e417a7641edefb4e2611985863 data\croptopia\worldgen\placed_feature\starfruit_tree_placed.json -805e16b6a8a256d14d987f621c5520c257e68985 data\croptopia\worldgen\configured_feature\cinnamon_tree.json -49b83e741547823f2a337d25c1ce8cd461311844 data\croptopia\worldgen\configured_feature\disk_salt.json -d9873273389a8ca02bf07860736fece2b80efc98 data\croptopia\worldgen\configured_feature\pecan_tree.json -d8126257cc5b39286dc27dce0617b50631e18ab7 data\croptopia\worldgen\configured_feature\lemon_tree.json -82fde5ee2214a7e5308cf9854eb1a37107ed1f3b data\croptopia\worldgen\configured_feature\kumquat_tree.json -0b2f750be7fb4af8dc23ae082edfe1f9a030f282 data\croptopia\worldgen\placed_feature\apricot_tree_placed.json -4ef43fb53a386ee7b60a93bdb58725218831c68d data\croptopia\worldgen\placed_feature\almond_tree_placed.json -074fc6deec71b396a9305b75ea43cf9ea0a1da2c data\croptopia\worldgen\placed_feature\lime_tree_placed.json -e13b8acc78c420c630eae4a242c846fe0bb53504 data\croptopia\worldgen\configured_feature\walnut_tree.json -6f72fabc1d1e72282686ea677c34b6078c41ff9b data\croptopia\worldgen\configured_feature\random_crop.json -5ff240c2f53c83777ed6477ff6f8eedbd467059e data\croptopia\worldgen\placed_feature\cashew_tree_placed.json -8002c6943cb110bac8eec55011405bd31d7e0f09 data\croptopia\worldgen\configured_feature\grapefruit_tree.json -800ddc07b6772d92b160b29ff33c315df57bab4e data\croptopia\worldgen\placed_feature\peach_tree_placed.json -5f7cdc5b9007e9d0339c427daa02ed429d3d8fe8 data\croptopia\worldgen\placed_feature\grapefruit_tree_placed.json -c29220547dee35e66339647627b3220625140457 data\croptopia\worldgen\configured_feature\cashew_tree.json -18cf83499a53411e3e8a728f1f54397235ff94d9 data\croptopia\worldgen\placed_feature\disk_salt_placed.json -d84afbe6c982eb2cc38c7e7e3f1528674460a91c data\croptopia\worldgen\configured_feature\orange_tree.json -5053f714c820e39f395d1adbe0d6f8d83e423d29 data\croptopia\worldgen\placed_feature\dragonfruit_tree_placed.json -386c5ec0061a58f4dcb399c6b42f07cd7fc5d2c5 data\croptopia\worldgen\placed_feature\walnut_tree_placed.json -7bd59c4f49c9107fb8dfa25a46dd3fc15a37e2b3 data\croptopia\worldgen\placed_feature\nutmeg_tree_placed.json -f0f650c11e605f792f287e454167101a6b47c4ae data\croptopia\worldgen\configured_feature\fig_tree.json -96bc3adfc331402bc680ceb052b4a93a9ec0c6ba data\croptopia\worldgen\configured_feature\apricot_tree.json -a94fbcb5b4489c342dbc010c06f37b14d3bf62ec data\croptopia\worldgen\configured_feature\cherry_tree.json -c2345e4bb794bef6c582f3cd9bc9cfe9ac21b59a data\croptopia\worldgen\placed_feature\mango_tree_placed.json -79394217e3941d4bed9bba8edd2161488bd860ba data\croptopia\worldgen\placed_feature\random_crop_placed.json -e6a5a10e98e64783fac60fda84c98ef9b2c776e5 data\croptopia\worldgen\placed_feature\coconut_tree_placed.json -f08fa26ebdb2f929846317fe4f4f4a68744a8787 data\croptopia\worldgen\configured_feature\banana_tree.json -5ffa06fee7d8d1c152b5877fc0eea3f6e7bdc46e data\croptopia\worldgen\placed_feature\kumquat_tree_placed.json -497f80f5f4ef2323047718fac0f773f1d06602ba data\croptopia\worldgen\placed_feature\pear_tree_placed.json -e1d71107811672b2bf8b4273815fa0819122c05b data\croptopia\worldgen\configured_feature\almond_tree.json -a219936e10b30fae02e87d838b527cb6cd6a2845 data\croptopia\worldgen\placed_feature\banana_tree_placed.json -d34043054831868febbeaf3ecdbd07d2cbef726e data\croptopia\worldgen\configured_feature\starfruit_tree.json -bf05245cf521f5c64f41b2eacece573e273356be data\croptopia\worldgen\placed_feature\cherry_tree_placed.json -c1bfab011652f65afa6f8f1a8cf7a482cf9795a9 data\croptopia\worldgen\configured_feature\nutmeg_tree.json -f9632c71d6048fdbbf4b290cb4907a120983e587 data\croptopia\worldgen\placed_feature\fig_tree_placed.json -66770d43a9427763b7c7ff6942727eb50b08d155 data\croptopia\worldgen\configured_feature\nectarine_tree.json -78e000eae677cade479aba13e06d4353ee13fa30 data\croptopia\worldgen\configured_feature\avocado_tree.json -c60cf190d7883437144032e2650a0ce3894e2988 data\croptopia\worldgen\configured_feature\lime_tree.json -de2ce08ce10dcef8bd8481211bacbaeb38e1a612 data\croptopia\worldgen\placed_feature\pecan_tree_placed.json -a7161b2ea7fecd625a24a51c90266c3641870a2d data\croptopia\worldgen\placed_feature\persimmon_tree_placed.json -27712d11bd3d8ea99ad30603eb50fa31464fafdb data\croptopia\worldgen\configured_feature\pear_tree.json -fe3f983d2baf98ed747f6da28a0580901d156e96 data\croptopia\worldgen\configured_feature\apple_tree.json +// 1.21.5 -999999999-01-01T00:00:00 Croptopia/Croptopia World Gen +e1d71107811672b2bf8b4273815fa0819122c05b data/croptopia/worldgen/configured_feature/almond_tree.json +fe3f983d2baf98ed747f6da28a0580901d156e96 data/croptopia/worldgen/configured_feature/apple_tree.json +96bc3adfc331402bc680ceb052b4a93a9ec0c6ba data/croptopia/worldgen/configured_feature/apricot_tree.json +78e000eae677cade479aba13e06d4353ee13fa30 data/croptopia/worldgen/configured_feature/avocado_tree.json +f08fa26ebdb2f929846317fe4f4f4a68744a8787 data/croptopia/worldgen/configured_feature/banana_tree.json +c29220547dee35e66339647627b3220625140457 data/croptopia/worldgen/configured_feature/cashew_tree.json +a94fbcb5b4489c342dbc010c06f37b14d3bf62ec data/croptopia/worldgen/configured_feature/cherry_tree.json +805e16b6a8a256d14d987f621c5520c257e68985 data/croptopia/worldgen/configured_feature/cinnamon_tree.json +ee32ae772fdfd77d3841cfc42895eb6403ebdbeb data/croptopia/worldgen/configured_feature/coconut_tree.json +813f48cc6c32d1a786778f55c9a77ba9a3efc73f data/croptopia/worldgen/configured_feature/date_tree.json +49b83e741547823f2a337d25c1ce8cd461311844 data/croptopia/worldgen/configured_feature/disk_salt.json +f12721b846a3df0ce709baee4425c18e48eca48b data/croptopia/worldgen/configured_feature/dragonfruit_tree.json +f0f650c11e605f792f287e454167101a6b47c4ae data/croptopia/worldgen/configured_feature/fig_tree.json +8002c6943cb110bac8eec55011405bd31d7e0f09 data/croptopia/worldgen/configured_feature/grapefruit_tree.json +82fde5ee2214a7e5308cf9854eb1a37107ed1f3b data/croptopia/worldgen/configured_feature/kumquat_tree.json +d8126257cc5b39286dc27dce0617b50631e18ab7 data/croptopia/worldgen/configured_feature/lemon_tree.json +c60cf190d7883437144032e2650a0ce3894e2988 data/croptopia/worldgen/configured_feature/lime_tree.json +4f00cea8735fcbee05c6f9bd3f9075869d5c3c6c data/croptopia/worldgen/configured_feature/mango_tree.json +66770d43a9427763b7c7ff6942727eb50b08d155 data/croptopia/worldgen/configured_feature/nectarine_tree.json +c1bfab011652f65afa6f8f1a8cf7a482cf9795a9 data/croptopia/worldgen/configured_feature/nutmeg_tree.json +d84afbe6c982eb2cc38c7e7e3f1528674460a91c data/croptopia/worldgen/configured_feature/orange_tree.json +214242935354b95627270250986ed902687266ad data/croptopia/worldgen/configured_feature/peach_tree.json +27712d11bd3d8ea99ad30603eb50fa31464fafdb data/croptopia/worldgen/configured_feature/pear_tree.json +d9873273389a8ca02bf07860736fece2b80efc98 data/croptopia/worldgen/configured_feature/pecan_tree.json +07e5ff3bd3fb7e47075d7970e9f87fe9c18e821f data/croptopia/worldgen/configured_feature/persimmon_tree.json +e764d108528220712a0c74a81a1d0174308d69b4 data/croptopia/worldgen/configured_feature/plum_tree.json +6f72fabc1d1e72282686ea677c34b6078c41ff9b data/croptopia/worldgen/configured_feature/random_crop.json +d34043054831868febbeaf3ecdbd07d2cbef726e data/croptopia/worldgen/configured_feature/starfruit_tree.json +e13b8acc78c420c630eae4a242c846fe0bb53504 data/croptopia/worldgen/configured_feature/walnut_tree.json +4ef43fb53a386ee7b60a93bdb58725218831c68d data/croptopia/worldgen/placed_feature/almond_tree_placed.json +e6a5356a100d13c5108f0ee2a7209f0cd4587b29 data/croptopia/worldgen/placed_feature/apple_tree_placed.json +0b2f750be7fb4af8dc23ae082edfe1f9a030f282 data/croptopia/worldgen/placed_feature/apricot_tree_placed.json +33c4f4e39f19bc769ec675a7e4134cd61d46f39b data/croptopia/worldgen/placed_feature/avocado_tree_placed.json +a219936e10b30fae02e87d838b527cb6cd6a2845 data/croptopia/worldgen/placed_feature/banana_tree_placed.json +5ff240c2f53c83777ed6477ff6f8eedbd467059e data/croptopia/worldgen/placed_feature/cashew_tree_placed.json +bf05245cf521f5c64f41b2eacece573e273356be data/croptopia/worldgen/placed_feature/cherry_tree_placed.json +1c4cc9e046441f0ee187581a6f7ff265e6f3d586 data/croptopia/worldgen/placed_feature/cinnamon_tree_placed.json +e6a5a10e98e64783fac60fda84c98ef9b2c776e5 data/croptopia/worldgen/placed_feature/coconut_tree_placed.json +5eeb90c9741b1dc63cc81fcfd121eb62bb2984a9 data/croptopia/worldgen/placed_feature/date_tree_placed.json +18cf83499a53411e3e8a728f1f54397235ff94d9 data/croptopia/worldgen/placed_feature/disk_salt_placed.json +5053f714c820e39f395d1adbe0d6f8d83e423d29 data/croptopia/worldgen/placed_feature/dragonfruit_tree_placed.json +f9632c71d6048fdbbf4b290cb4907a120983e587 data/croptopia/worldgen/placed_feature/fig_tree_placed.json +5f7cdc5b9007e9d0339c427daa02ed429d3d8fe8 data/croptopia/worldgen/placed_feature/grapefruit_tree_placed.json +5ffa06fee7d8d1c152b5877fc0eea3f6e7bdc46e data/croptopia/worldgen/placed_feature/kumquat_tree_placed.json +a00b5a14c42ac706b89b4e775eb67774c80df38e data/croptopia/worldgen/placed_feature/lemon_tree_placed.json +074fc6deec71b396a9305b75ea43cf9ea0a1da2c data/croptopia/worldgen/placed_feature/lime_tree_placed.json +c2345e4bb794bef6c582f3cd9bc9cfe9ac21b59a data/croptopia/worldgen/placed_feature/mango_tree_placed.json +13fb797998768a2fe504e8c7a99719e25c7984e6 data/croptopia/worldgen/placed_feature/nectarine_tree_placed.json +7bd59c4f49c9107fb8dfa25a46dd3fc15a37e2b3 data/croptopia/worldgen/placed_feature/nutmeg_tree_placed.json +e207465434ca943ee70ecb78809271bfc986238d data/croptopia/worldgen/placed_feature/orange_tree_placed.json +800ddc07b6772d92b160b29ff33c315df57bab4e data/croptopia/worldgen/placed_feature/peach_tree_placed.json +497f80f5f4ef2323047718fac0f773f1d06602ba data/croptopia/worldgen/placed_feature/pear_tree_placed.json +de2ce08ce10dcef8bd8481211bacbaeb38e1a612 data/croptopia/worldgen/placed_feature/pecan_tree_placed.json +a7161b2ea7fecd625a24a51c90266c3641870a2d data/croptopia/worldgen/placed_feature/persimmon_tree_placed.json +5b01aa6e67b0093f9b922680a7798168e941aea7 data/croptopia/worldgen/placed_feature/plum_tree_placed.json +79394217e3941d4bed9bba8edd2161488bd860ba data/croptopia/worldgen/placed_feature/random_crop_placed.json +f231022737a816e417a7641edefb4e2611985863 data/croptopia/worldgen/placed_feature/starfruit_tree_placed.json +386c5ec0061a58f4dcb399c6b42f07cd7fc5d2c5 data/croptopia/worldgen/placed_feature/walnut_tree_placed.json diff --git a/src/main/generated/.cache/df06493aa068a9a43b5873071a82331373f9a05e b/src/main/generated/.cache/df06493aa068a9a43b5873071a82331373f9a05e index 72a94c119..8eca484aa 100644 --- a/src/main/generated/.cache/df06493aa068a9a43b5873071a82331373f9a05e +++ b/src/main/generated/.cache/df06493aa068a9a43b5873071a82331373f9a05e @@ -1,11 +1,11 @@ -// 1.21 2024-06-17T18:40:20.2035889 Croptopia/Tags for minecraft:block -b3b2aae62189d982ae690c9cbeeb972c6eca35df data\minecraft\tags\block\crops.json -c94d6f79ce59608453ea70f72ef154084a5b9b13 data\minecraft\tags\block\logs_that_burn.json -e5e7c17efaeaaa402c4705dadc0aad43e10b6ccf data\minecraft\tags\block\mineable\shovel.json -55d09a8b14c1f78b2f625f4322cd9b5ca89c8974 data\minecraft\tags\block\mineable\hoe.json -e5e7c17efaeaaa402c4705dadc0aad43e10b6ccf data\minecraft\tags\block\azalea_root_replaceable.json -e5e7c17efaeaaa402c4705dadc0aad43e10b6ccf data\minecraft\tags\block\dripstone_replaceable_blocks.json -e1869b0a6def5b71118a163d67616deb2661391d data\croptopia\tags\block\cinnamon_logs.json -55d09a8b14c1f78b2f625f4322cd9b5ca89c8974 data\minecraft\tags\block\leaves.json -c9c457d7127a94df94f45ae2591496e3cb9ad793 data\minecraft\tags\block\saplings.json -e5e7c17efaeaaa402c4705dadc0aad43e10b6ccf data\minecraft\tags\block\enderman_holdable.json +// 1.21.5 -999999999-01-01T00:00:00 Croptopia/Tags for minecraft:block +e1869b0a6def5b71118a163d67616deb2661391d data/croptopia/tags/block/cinnamon_logs.json +e5e7c17efaeaaa402c4705dadc0aad43e10b6ccf data/minecraft/tags/block/azalea_root_replaceable.json +b3b2aae62189d982ae690c9cbeeb972c6eca35df data/minecraft/tags/block/crops.json +e5e7c17efaeaaa402c4705dadc0aad43e10b6ccf data/minecraft/tags/block/dripstone_replaceable_blocks.json +e5e7c17efaeaaa402c4705dadc0aad43e10b6ccf data/minecraft/tags/block/enderman_holdable.json +55d09a8b14c1f78b2f625f4322cd9b5ca89c8974 data/minecraft/tags/block/leaves.json +c94d6f79ce59608453ea70f72ef154084a5b9b13 data/minecraft/tags/block/logs_that_burn.json +55d09a8b14c1f78b2f625f4322cd9b5ca89c8974 data/minecraft/tags/block/mineable/hoe.json +e5e7c17efaeaaa402c4705dadc0aad43e10b6ccf data/minecraft/tags/block/mineable/shovel.json +c9c457d7127a94df94f45ae2591496e3cb9ad793 data/minecraft/tags/block/saplings.json diff --git a/src/main/generated/.cache/df192224543cd815861b6390da30fb5cc39e6866 b/src/main/generated/.cache/df192224543cd815861b6390da30fb5cc39e6866 index d840dc36a..0d64bb715 100644 --- a/src/main/generated/.cache/df192224543cd815861b6390da30fb5cc39e6866 +++ b/src/main/generated/.cache/df192224543cd815861b6390da30fb5cc39e6866 @@ -1,50 +1,815 @@ -// 1.21 2024-06-17T18:40:20.1665897 Croptopia/Model Definitions -2ca7ae51967bf9aeb04c705f0773c8e5a69d087d assets\croptopia\models\item\sweet_crepes.json -417a51398b08711068deec5b72c16e1c5d3544f3 assets\croptopia\models\item\cooked_shrimp.json -4ed2fddb4e3babd2f9ea6d02cc8aee4aafd89b98 assets\croptopia\models\item\oyster.json -1de9e505def683746d2b6776dfe1ea032449a673 assets\croptopia\models\item\dauphine_potatoes.json -bdbf8390727a79fbaf7a6740c2197c4c43e97606 assets\croptopia\models\item\beetroot_salad.json -24b9ca1b2a829fdd663ba66be4eb8d1200137ba9 assets\croptopia\models\item\sea_lettuce.json -15ff338ba5abf92e2b37b49e7403834372a94cb5 assets\croptopia\models\item\cooked_calamari.json -bf86d4c957a69520d301219257f2b08dc51144cd assets\croptopia\models\item\shrimp.json -b26394291756303c33c120c3d44de14cc3309344 assets\croptopia\models\item\croque_monsieur.json -34bf84212b5ae514ea078fc61326d69e13df93bb assets\croptopia\models\item\croque_madame.json -ecf7ff442b97a320ffc886f1192ac0127009366d assets\croptopia\models\item\glowing_calamari.json -86acd61eebd98878fa9c7b7ffddf3507621521dd assets\croptopia\models\item\baked_crepes.json -882c1f5cc3a8e4dbaf1bea12e6d3ff53af241461 assets\croptopia\models\item\mashed_potatoes.json -921b697db7771df0013aa8dbab6757a75331398c assets\croptopia\models\item\pumpkin_soup.json -340722d54e1858573f79544d8020be7c69e900ac assets\croptopia\models\item\corn_bread.json -8298f0346925c58a08c88f4020f753e4c688e961 assets\croptopia\models\item\candied_kumquats.json -fd47b2003d93ceeea873e6b15a5434d5f084370f assets\croptopia\models\item\roasted_sunflower_seeds.json -9a2000a05655d308e29ff3ae4e3b880135f201f5 assets\croptopia\models\item\calamari.json -ccbfb91adebcce5223dbb6e7e254d619b8c1d6a0 assets\croptopia\models\item\steamed_crab.json -36c67b3b10d733529dd26c2b9e843cba7f4ce9a3 assets\croptopia\models\item\roasted_pumpkin_seeds.json -bc536149334c0daa680658cb5da0d7017a9f7a6b assets\croptopia\models\item\cinnamon_roll.json -ffae889eb06d5fc7f5d244b3a96ba062f9567f5b assets\croptopia\models\item\deep_fried_shrimp.json -1a1ef540d3ffb89994a4439ff3aaf7656b88e373 assets\croptopia\models\item\sausage.json -cc1ab25fdc4218ce488a3d453f5f87568b5c4d2d assets\croptopia\models\item\tuna_roll.json -3d6c9a0b8b759f140ab963af63fab056ff3c128f assets\croptopia\models\item\quiche.json -c04405a04a97d6a0f2af6305be4200f1ba3ee3b3 assets\croptopia\models\item\sunny_side_eggs.json -475806176a7b4ab62a732d9c2477ad8884e87245 assets\croptopia\models\item\cooked_anchovy.json -0d543c08dba9b900748c0dafb62b3827823c257d assets\croptopia\models\item\ground_pork.json -1991429b1d7cdda758eb7f699caa81439391948d assets\croptopia\models\item\fried_frog_legs.json -e6209bfa32b264f6b94aad58d5881bbc201617e4 assets\croptopia\models\item\macaron.json -0552cb6985f8eb955f92c547d4c80503411b6025 assets\croptopia\models\item\borscht.json -a3088ddd2b87dff2aeef537d15ed1e9900bcaed3 assets\croptopia\models\item\clam.json -c14cc16391ecc85bd9a4bb886ab7003c660c12a6 assets\croptopia\models\item\meringue.json -813c9f5c10d72930f1c96943da00b1b662c3c6f8 assets\croptopia\models\item\the_big_breakfast.json -67a19e5b2ef72c25a5f472984da1a891f958337f assets\croptopia\models\item\crab_legs.json -4b303a7dc43713993113254a71b973b7b048ca55 assets\croptopia\models\item\roe.json -5ec40eddebb1b99e6be57a78385d2775cb47751b assets\croptopia\models\item\pumpkin_bars.json -f9eadf187da667dc852c2d68f703727365725929 assets\croptopia\models\item\anchovy.json -872a6b1fc2e1be6ba6c37bd5b7c7e979fcd68e93 assets\croptopia\models\item\frog_legs.json -8067af7e663e02c5935de09798a7c1b7246aa06b assets\croptopia\models\item\hashed_brown.json -6363e6c76b74e5604f580481009d8541f6a7aca7 assets\croptopia\models\item\cabbage_roll.json -9374fdbe4bd1e615284dec3fd0b97a8a217a0187 assets\croptopia\models\item\tuna.json -5850c9a20a0fbe60b3d5371eb52e015025227d17 assets\croptopia\models\item\steamed_clams.json -c26ff580337649e479c946b817bf593118aff9ec assets\croptopia\models\item\fried_calamari.json -9e3008236330e03d87771af73527de272b440dd8 assets\croptopia\models\item\crab.json -3b137045cbe5d148a840fd500951dd4cdbf17529 assets\croptopia\models\item\anchovy_pizza.json -fdf2f28e94d2ea4dbdbeb6b2cb259cb80094684a assets\croptopia\models\item\goulash.json -7b09147a0693ccdb3f2d7a425bba7b1ca082f774 assets\croptopia\models\item\grilled_oysters.json -810c8ed95c18f09cb2260389804e6151d0b51da7 assets\croptopia\models\item\cooked_tuna.json +// 1.21.5 -999999999-01-01T00:00:00 Croptopia/Model Definitions +d13edc1a1b9a7003dc43c5e6d2223e8a5abd0710 assets/croptopia/items/ajvar.json +579342582fca52e40079fc870f6eeda9a1380922 assets/croptopia/items/ajvar_toast.json +4240770f7800ed2382f8072f53c27ce3cc92bf65 assets/croptopia/items/almond.json +239a82c511c1c345b3ecc3d68439d7e082d2c31f assets/croptopia/items/almond_brittle.json +08f1d0a211b84684299353c649dbc14982a2b474 assets/croptopia/items/almond_sapling.json +2abc099e432fa48ac7ffcc1231adb9ecaea9cdf5 assets/croptopia/items/anchovy.json +e70393d12404ce019eee476fb0ec3553bfc0a8cc assets/croptopia/items/anchovy_pizza.json +33c0e8a1111c486e07d6c1fcc591b7bc4d5f4bff assets/croptopia/items/apple_juice.json +7ab7f8355cfd00e65aab55221701bad46083841a assets/croptopia/items/apple_pie.json +0abcf48f6c72b9348ea6853dffe50455881390c4 assets/croptopia/items/apple_sapling.json +c38037a7e0b497a6f76e1894c3a434c182f47efd assets/croptopia/items/apricot.json +57a0dc2547e0d8b1993ade214b155ed3ff524abd assets/croptopia/items/apricot_jam.json +f57240fe58a84d60d0556da288ec33d7dd270ee0 assets/croptopia/items/apricot_sapling.json +34431ded2dd7279f8524f889355f9efc32be7b19 assets/croptopia/items/artichoke.json +3aa5ce5064f80a73babd143bdc2eac5e07bc62d6 assets/croptopia/items/artichoke_dip.json +160d81fc040463738c2dbe46d9ddc84df105318a assets/croptopia/items/artichoke_seed.json +7dd808eb51a779df1c45943a91fb55350f8cf2c3 assets/croptopia/items/asparagus.json +d80f92acbd979106688968203b143bbb1c9f2bf8 assets/croptopia/items/asparagus_seed.json +e977af2f0ea814ac04d9a95dfa690ed26a0f6d3a assets/croptopia/items/avocado.json +a7c353267e1aba9a4704ae194a55c5b848a707a9 assets/croptopia/items/avocado_sapling.json +3f9f97aa47e4b32194241d4f9ec14a6148c6785a assets/croptopia/items/avocado_toast.json +67a22714dc455ce940994bdd3d5b075d4a0c1037 assets/croptopia/items/bacon.json +2ad693e08e386b5d1c89431ada33514fed8c7ef5 assets/croptopia/items/baked_beans.json +a63fc23be411297427764d985f83fd99f0f407bb assets/croptopia/items/baked_crepes.json +e94550a033739869db082c1c185b5a75141cf22a assets/croptopia/items/baked_sweet_potato.json +2810708e8fc1f177ceacaa07af041e19bfc9da51 assets/croptopia/items/baked_yam.json +0941bd4e59d557110a7e97b9b83ea5815b1bd959 assets/croptopia/items/banana.json +29ce8e1ee7b01f376de4e1d4ad9648e221c64aa3 assets/croptopia/items/banana_cream_pie.json +264b14c4e5c72a3e5c8c0dcda3d525244aa1646e assets/croptopia/items/banana_nut_bread.json +8db4b0a3af8799e31c54abcd617a273b7865fe2f assets/croptopia/items/banana_sapling.json +c35ab5399d9fcb15a73e107a0ed84a1b44e66e8d assets/croptopia/items/banana_smoothie.json +18a68d6f9e8366657f08fed1227f64df64f01df4 assets/croptopia/items/barley.json +4470caef57da1ca83be8521d92fd0a88a3bd0a48 assets/croptopia/items/barley_seed.json +7289d21bf648dff5818ec59e34270d83868d8f87 assets/croptopia/items/basil.json +e1bd64fff2b2fee728d0f3ed4fc2404454549be1 assets/croptopia/items/basil_seed.json +aee66e89849e038e4ef0c48e5b1340fb6e51e126 assets/croptopia/items/beef_jerky.json +403e99af5719ad30f5065aa1d643ba1417f6b259 assets/croptopia/items/beef_stew.json +55b393cd977f4922fd94dfcee30fc271178fc03e assets/croptopia/items/beef_stir_fry.json +d7b9377a73e0f690da89297f7e3b542a404327a6 assets/croptopia/items/beef_wellington.json +0ca9739d47225bdc1b093c6434148729705af5ac assets/croptopia/items/beer.json +5870bfa8f40745ef87041fbcea6f597888a2586f assets/croptopia/items/beetroot_salad.json +3e40ef1f8f432c250d005f2168253d6502858c5a assets/croptopia/items/bellpepper.json +055aed884f42ec83df2bff8a2492e0ad4de7a6e4 assets/croptopia/items/bellpepper_seed.json +bce2e2f6f88b34dcc4c46895b1b0742d0d072668 assets/croptopia/items/blackbean.json +4b68bd50b5640184e594317ec995bf66acfaaf58 assets/croptopia/items/blackbean_seed.json +aa3675ac17964e031ab567cbcaf04bed13c80537 assets/croptopia/items/blackberry.json +f947d59bfa6c14b1e26f2a97693d855cc1365b25 assets/croptopia/items/blackberry_jam.json +548dbef9fa6633865a739533467bdba047ff4e87 assets/croptopia/items/blackberry_seed.json +80b0d0a873089ade71e7e2376694e485b0651d36 assets/croptopia/items/blt.json +20bf7bf70aec3e1aa3fdb560897f2a924ec5b740 assets/croptopia/items/blueberry.json +c544d9ebb49a573de5a5bb0ffa3a47b076a71fba assets/croptopia/items/blueberry_jam.json +860cfcfd390fcccbbe671ac74b1f2fa8fa6f2c5f assets/croptopia/items/blueberry_seed.json +06e4b437780b05266191a886eeb5bf20d6e83c54 assets/croptopia/items/borscht.json +7fb9f4af4c4d9b75c4e49b57bccecc7648158935 assets/croptopia/items/broccoli.json +5e82c4315bf8463fa52064cc21da66f24b13b568 assets/croptopia/items/broccoli_seed.json +afcc898f2f61b5f63e10b5c9340ee62a493800f2 assets/croptopia/items/brownies.json +3612fc31c63fd09e54353456ed9aa0a423466910 assets/croptopia/items/burrito.json +b6869d134ec2c67d73ba81745416edd54c1e1444 assets/croptopia/items/butter.json +207e2197d72eac083cd0424f5f942222a7d3f74a assets/croptopia/items/buttered_green_beans.json +34f0af4f448e28f375bf37836b6707aaba564388 assets/croptopia/items/buttered_toast.json +e51c5bf4334e923518506c0d3e4cb515efca30c3 assets/croptopia/items/cabbage.json +589e3a9ddbdfd45ff55b4971dc186ca0905b5eb8 assets/croptopia/items/cabbage_roll.json +38a353d383eb4869de0b433fc28f093873e519cd assets/croptopia/items/cabbage_seed.json +02613af46161512863e51135a793edf3018ee99e assets/croptopia/items/caesar_salad.json +1399be266f9036286114e9e9298531c5a819357f assets/croptopia/items/calamari.json +ee4e57936f53f5ab044a0f5a016dafb30d5305c5 assets/croptopia/items/candied_kumquats.json +d19ea129b44ac2dea5a53ad64fdacb40a54b1642 assets/croptopia/items/candied_nuts.json +4b0165f8e8ff383bff07b9c213dd48c5307df804 assets/croptopia/items/candy_corn.json +6248a3ac11127c47b365c544097c76f3afbf582e assets/croptopia/items/cantaloupe.json +1003825e274503943cfd40de7247ef612787ddcf assets/croptopia/items/cantaloupe_seed.json +26a63dee67ba1a347fad7e860bcdccff381d4ffa assets/croptopia/items/caramel.json +36e92c746ce215e34959668fbe29459103c51bcc assets/croptopia/items/carnitas.json +dc908fa88ce3bd46818f97bcf1b72ff52a0af114 assets/croptopia/items/cashew.json +bc5de12b0bbd886817f0efdb47738170ef6ef555 assets/croptopia/items/cashew_chicken.json +bc40a8d3d1e633fe9d4f170f8785d829f43f358d assets/croptopia/items/cashew_sapling.json +f3f28c30ce3316a2b153bf609c5778d13907f441 assets/croptopia/items/cauliflower.json +d54c74c87053013355041e71698d1d2868f96bc6 assets/croptopia/items/cauliflower_seed.json +98c882123ffa59d6da9a9aa3d9d4fd33b4628b36 assets/croptopia/items/celery.json +d86d7faf486c3852d0891b428cc10de8114244f9 assets/croptopia/items/celery_seed.json +12cc24f1438c21eeefb9119a0e9b6b42567d3bc4 assets/croptopia/items/cheese.json +e14802ed0cb2a9c19f57c0801bcebf3ce73481af assets/croptopia/items/cheese_cake.json +480334f2a9f3a11636d8feec6077fde80b89680e assets/croptopia/items/cheese_pizza.json +4d017f363684a70a1c64f6af85f994957123b8ff assets/croptopia/items/cheeseburger.json +6f4e94a4f795495f95f4c8c07ebcd15a00f1e1c2 assets/croptopia/items/cheesy_asparagus.json +b9347cdb49c2cc0afa61d3028106c4cedac789ff assets/croptopia/items/cherry.json +3dd51851d52d1e8a8315441b8a448dd19c8ba8f8 assets/croptopia/items/cherry_jam.json +bac2e96495da0693f43377135b51befee98a4116 assets/croptopia/items/cherry_pie.json +a0ef24a0eecaacc60d1b708e64a8f718424eea80 assets/croptopia/items/cherry_sapling.json +fcde835c57d1f9b762d94553efa96cd197f76328 assets/croptopia/items/chicken_and_dumplings.json +f43ae60ec28683e633a5b37a9a77dde8d15ffd88 assets/croptopia/items/chicken_and_noodles.json +6e1ac2b29714319af1e43c2dce6389650ff8971a assets/croptopia/items/chicken_and_rice.json +e15826ca357678508924c146328d4143d18bd98a assets/croptopia/items/chile_pepper.json +317a8405b34912b4fac8d67f26dad665c746462a assets/croptopia/items/chile_pepper_seed.json +137f23d99bc712d299469115c986a7dd6a092c76 assets/croptopia/items/chili_relleno.json +271f4f18f566e17b3032b86787e4d88611e2d335 assets/croptopia/items/chimichanga.json +57c78af100f7a0ecb5a6603b71d9be13170ccddb assets/croptopia/items/chocolate.json +b6ff834c48789eb10e84ada308c774905e6f0085 assets/croptopia/items/chocolate_ice_cream.json +d2aaa1b6df36bd47f7933393d572d737351b9b6c assets/croptopia/items/chocolate_milkshake.json +bdc6840300e24125e00828271f45589f5bb3e75c assets/croptopia/items/churros.json +8c27238553ff81dee66b20eb3ca5d8e8e52689ff assets/croptopia/items/cinnamon_roll.json +dfd3adda0503bf3e906b1a2fcd02c030389f044c assets/croptopia/items/clam.json +009098dc7dd039581b0de848877ea86eab8dee95 assets/croptopia/items/coconut.json +eb63f37c5d99b187bf83785cb9aa9f641af99276 assets/croptopia/items/coconut_sapling.json +b015bf56378b925666ee9b68af2d8f25753c8f5b assets/croptopia/items/coffee.json +d9800791ba3b6804a674ddfc1ab66c0a5b0f3a8b assets/croptopia/items/coffee_beans.json +ac12cf366f869cba071a5e8897fb952a3895477e assets/croptopia/items/coffee_seed.json +6e47640785eba66fff50f228fba175724aa4dd1d assets/croptopia/items/cooked_anchovy.json +efba7d9f766177be34e3a6246c8fd155b189e360 assets/croptopia/items/cooked_bacon.json +bd170e971af68033b292033bd7aaefe7faa30afe assets/croptopia/items/cooked_calamari.json +d450e60ed9ef8bd8ef591d47e1aa39bcb16fd7ba assets/croptopia/items/cooked_shrimp.json +a83fb77eede92135847ccf7f3a4ea7c8b65583ef assets/croptopia/items/cooked_tuna.json +68d47d2ee5c1c840e75466340bfc06b1732f3a3a assets/croptopia/items/cooking_pot.json +feb4c8e12bd61d77ef855de9f112a33f470fc7ce assets/croptopia/items/corn.json +ca0a47736c481f644d8e265de4de81de37a0ad47 assets/croptopia/items/corn_bread.json +e4957d12eba35d41167f5d91009544a251e9ffa8 assets/croptopia/items/corn_husk.json +58e16125d642d810c170e78a127e5f4f6b2117fc assets/croptopia/items/corn_seed.json +c21c9561d9b9189e9eb875be5507d72042f78f10 assets/croptopia/items/cornish_pasty.json +72c51d3d53e8ec9823d2101909e8fe35be0c6bfc assets/croptopia/items/crab.json +a3be6a4fbf1d072224ee773dc764c6302bc5333a assets/croptopia/items/crab_legs.json +76b5464132daa4c9893a60b690687620948e7976 assets/croptopia/items/cranberry.json +1e32137db938c44eedd55b6763e42352704dd3c5 assets/croptopia/items/cranberry_juice.json +6cbd91a49d7ebed132cc610b0f18c2bb5aff6f51 assets/croptopia/items/cranberry_seed.json +b1a1a529ed9d2ae6db7c849d77d75e2f4e25570b assets/croptopia/items/crema.json +8832d487b6e658b4b5f64cdfed9f3e65d0e767f9 assets/croptopia/items/croque_madame.json +eeba0c30203b100b4851bcbe4dc51e2411d476ba assets/croptopia/items/croque_monsieur.json +777e3aa1c61bb44452f1a952bbe99a2b2a930965 assets/croptopia/items/cucumber.json +ebca1bceee097e6bad11d24aea57000b92187a4c assets/croptopia/items/cucumber_salad.json +6a56dd9d995bd7b9bf1545bb1ef96c5d37c472ce assets/croptopia/items/cucumber_seed.json +3aa73f1d003488d4588938e5c70dad911a54761d assets/croptopia/items/currant.json +39d82466b8ae0bd2b5e70fe2a0d30ba184c7600e assets/croptopia/items/currant_seed.json +f31f5c4bdecec085e67187a297072fb6fcb96272 assets/croptopia/items/date.json +a06c498fe1b1fdd8f78e1dbbd103110e4b4c6dd7 assets/croptopia/items/date_sapling.json +d33bf47acf6fef7c28fa88734fab0314026848ae assets/croptopia/items/dauphine_potatoes.json +703ff7377680327d39975ffdf66f2a56cce81201 assets/croptopia/items/deep_fried_shrimp.json +f5eaf60e23c320a2ebedeaaa022b757b1fc5a57c assets/croptopia/items/dough.json +37516bfe093fe94e501621d8cfd7438c7667d89a assets/croptopia/items/doughnut.json +3587883fa6f8056eaf2923c43d8dd82221cbb2c1 assets/croptopia/items/dragonfruit.json +d8a898d29f232aa906955e578c996044204e84f9 assets/croptopia/items/dragonfruit_sapling.json +a3d1929f9cce73fd9ef71a9972bbc55fd519b471 assets/croptopia/items/egg_roll.json +81c0ae231ffbb45eac488699f26822d82de26374 assets/croptopia/items/eggplant.json +e0360275f30acb65ec4d4bdaba2b6bed21f97d4d assets/croptopia/items/eggplant_parmesan.json +9955dc580c7a698c5cf4b4962e09c73c82dcf507 assets/croptopia/items/eggplant_seed.json +6fffdc5c04a2ad18d67aeaf6c909e8097173faf4 assets/croptopia/items/elderberry.json +07bf716bdc05a22b13c8c1dee499d07cccfcda14 assets/croptopia/items/elderberry_jam.json +4d87f14c7f6131d74a4781abb86a929921b95d67 assets/croptopia/items/elderberry_seed.json +f2f0232401a659770efa8643afbc113c15c2ee50 assets/croptopia/items/enchilada.json +b0d815aad1bd034089384586cae094238c4fa06f assets/croptopia/items/eton_mess.json +3ea6056c4493a37d8f50abbbfe24b54f35d3d1ac assets/croptopia/items/fajitas.json +053a71501ca300bba85f37994e529ccc07196d74 assets/croptopia/items/fig.json +646169124ff685bb36464771081e4c77543d1c04 assets/croptopia/items/fig_sapling.json +5cd4036dd6972e49a862c531894833973774ef5d assets/croptopia/items/figgy_pudding.json +55bc01b042eb3cb799449f6b96a6f42d663b9b1c assets/croptopia/items/fish_and_chips.json +cb4ae43e9fa5fefbeaebb7fc485e9ac303af1639 assets/croptopia/items/flour.json +b5cf488d5c9e5b487dd2da4d35fc0aaf8a578a28 assets/croptopia/items/food_press.json +3b6fe99d9c87008b774ab773b32e5d37dad9c858 assets/croptopia/items/french_fries.json +6dc80562f43a49ee585f2fd2b30ef72a4ddc0e89 assets/croptopia/items/fried_calamari.json +ae412dc2a7e54d73d6bb9635916a5409f9c33e7a assets/croptopia/items/fried_chicken.json +966627d02479d705298c0bd30d3dcacadd05d644 assets/croptopia/items/fried_frog_legs.json +ecc6b8d0747146d68b0e5ad8a86505ab0b7752cf assets/croptopia/items/frog_legs.json +2d011a8ddafefdcc68b65b5eae2594846ee88bac assets/croptopia/items/fruit_cake.json +6e7b891c765bd7a8ea721a1617c803f694094e6d assets/croptopia/items/fruit_salad.json +cc75911e29cd33085a8e4dea948ef2257510798f assets/croptopia/items/fruit_smoothie.json +1bf6e9d3784e903131034feac53e7e5eaed920c6 assets/croptopia/items/frying_pan.json +ca437abd06c894a665ac4f90034049134adcf142 assets/croptopia/items/garlic.json +149de8c675229a1f376384811db9a0393c2fe3c8 assets/croptopia/items/garlic_seed.json +183e258b1c22001c175fa0951d8ace95286bf748 assets/croptopia/items/ginger.json +6646de3f641371302a22c01196ac24f0d60db266 assets/croptopia/items/ginger_seed.json +14849bd9f5d224734cbc6e5d135df3b9ffe8ee1d assets/croptopia/items/glowing_calamari.json +0684513b51f8e5f04eb1da32017c9d39a5072d59 assets/croptopia/items/goulash.json +39923c4b9378874a9abd0cb51f83bc3efbc1660c assets/croptopia/items/grape.json +a8a185fde225fd7c3ac4b639252baf1408c76976 assets/croptopia/items/grape_jam.json +c94466a79f5de46d9f8d2bfa6d0de8f4f3d7c822 assets/croptopia/items/grape_juice.json +0377a054725114359c3d34085a06f132d7fdde22 assets/croptopia/items/grape_seed.json +8f6bf250090120750c30ef8e3ad74d5c0638c31a assets/croptopia/items/grapefruit.json +b1cc1735bf2988b08130eee3183eb587fc3913e5 assets/croptopia/items/grapefruit_sapling.json +d56269108d6975480330b9d151c1504c9f9cc540 assets/croptopia/items/greenbean.json +e6771f47971d60372091acb6460791d7e1f559d7 assets/croptopia/items/greenbean_seed.json +b599c985c2631da5d20cc12e9d723eb3a9d39987 assets/croptopia/items/greenonion.json +b0e41cc64ae3119ce0a7ee11a0aa466e9fe2c93c assets/croptopia/items/greenonion_seed.json +107905636fe491741cf8a878f4833f4009525200 assets/croptopia/items/grilled_cheese.json +2ce8a511c75fa7fd3d6db802a46f4ecd64c33437 assets/croptopia/items/grilled_eggplant.json +e7e23492334aede8a361dcd5bac9af4ba03d56a2 assets/croptopia/items/grilled_oysters.json +68e266da3789e31941efb9ef866b5b61111df0f8 assets/croptopia/items/ground_pork.json +53fe0fee98bf08f237e9fc179fc13e6ec0a6288d assets/croptopia/items/guide.json +67872272c3a2230c653bd50659fd3f441538b307 assets/croptopia/items/ham_sandwich.json +8a0d68a5ced748d7fe0dd92d3fe819fc9e102f85 assets/croptopia/items/hamburger.json +39845bb028c36885ade2d699c99aa20a8a9b4caf assets/croptopia/items/hashed_brown.json +03c042a557fa6ed53ef27efd190a8fa0746793f5 assets/croptopia/items/honeydew.json +d6612854dd10926fe6594e50271b03218dd9e643 assets/croptopia/items/honeydew_seed.json +176a1e245da099fbc1189e9756c2e40d0e42b0b0 assets/croptopia/items/hops.json +37f694fa0d3617fb3010c9f18ea568720a2be906 assets/croptopia/items/hops_seed.json +c86210a8e88f1dd231c68da654d0d21c8472564e assets/croptopia/items/horchata.json +e56d103d341851b6aefc32de6665933138a12ba3 assets/croptopia/items/kale.json +8274de1d8f215e0a73c5b07b3f522fc79f5fb007 assets/croptopia/items/kale_chips.json +3b2f573fb7771b2638468010306430ed9fe31d6a assets/croptopia/items/kale_seed.json +6de09af67285c941cc11fdbc2a837e4af2baa495 assets/croptopia/items/kale_smoothie.json +2626c681b653cc4dc9d2ee8083e64c8df025acd3 assets/croptopia/items/kiwi.json +b9f25f8a6437b0f16dc3bfb9c343ec137e2a0a08 assets/croptopia/items/kiwi_seed.json +18eafdef220937f6f465b06cf85380f1a9976c4e assets/croptopia/items/kiwi_sorbet.json +844e69ce088692b853ebca734b377fb28870ad1c assets/croptopia/items/knife.json +b7fb176e13e12307ee13ed06bc79b16f0f22f2e5 assets/croptopia/items/kumquat.json +dacdbd0b2cf5721f91cfd543eeef92ef645a9a03 assets/croptopia/items/kumquat_sapling.json +6db172895586494ad84ed5e3181237581f0bb386 assets/croptopia/items/leafy_salad.json +7683ca18eb8584d3fc926f0a33098bcea6f3f24c assets/croptopia/items/leek.json +f189bbd3a0fa799eb04953a09b7d54acdbefef18 assets/croptopia/items/leek_seed.json +735dd35d4ff347fbeb9919e95611929da517952a assets/croptopia/items/leek_soup.json +b9a93969432215d9e3b1a4058774c534d788751b assets/croptopia/items/lemon.json +20059799c168888fd026c66d9b0fd10a0986c94d assets/croptopia/items/lemon_chicken.json +a5fa1a70107c4a00ed4028d400fd1fc9d763c136 assets/croptopia/items/lemon_coconut_bar.json +6835910346cd60ce80fa221947558876b38ddf49 assets/croptopia/items/lemon_sapling.json +f76844e510adec17c0eea3ac044a5b60e7155165 assets/croptopia/items/lemonade.json +cbc63bef571b0e8a2f602d07cf6074edb1218a07 assets/croptopia/items/lettuce.json +0c69c80394f9b215f398144dd51d646fb3ce7f79 assets/croptopia/items/lettuce_seed.json +c40e03538f95bea734118ab0191306dca4f321fd assets/croptopia/items/lime.json +8fcb476f0d992010f1fb6de5c750c8b1ed003050 assets/croptopia/items/lime_sapling.json +453197410600ee2ef0e6c3d6d53354d18f6a58eb assets/croptopia/items/limeade.json +0d87bd5a7ef3d69e61eb710d7e4a4ce3cd8b6bd9 assets/croptopia/items/macaron.json +1c5bcc5ddeee218ca84d51543884584a6bf5e50f assets/croptopia/items/mango.json +8f9ff58cd567ed35862edd51410a7eaeec0b245f assets/croptopia/items/mango_ice_cream.json +bc62168a3f35ca41c2b5655738b44df3f699445a assets/croptopia/items/mango_sapling.json +b52183c93c28798fd47fdcfc834bc07f19dcdd72 assets/croptopia/items/mashed_potatoes.json +a91d1ab6beb299e73527e054f59874c93948c2a3 assets/croptopia/items/mead.json +90fae314c6aee9f10801bae3c804c717c23eb5c0 assets/croptopia/items/melon_juice.json +5951830cb2eb451b26aaee0059048e4c8b92567c assets/croptopia/items/meringue.json +7f3244408c7331d829d7fc9f570579698cb4ec8d assets/croptopia/items/milk_bottle.json +7eb57d7e87f601a20be1d78d420f9142e8252fd5 assets/croptopia/items/molasses.json +f147a46fa2d705ca540019b50973660e3c8eb22f assets/croptopia/items/mortar_and_pestle.json +9613aa5e1f8fbae6a9a657d67bce2c5db07c1015 assets/croptopia/items/mustard.json +bde0b077c7e3f5bcdac17c32ff61c1e8b9cacadd assets/croptopia/items/mustard_seed.json +009365cf2c7e223a933b951047d064d672ac1c63 assets/croptopia/items/nectarine.json +44ccf865af5756be390302bccfa48fe4b642e496 assets/croptopia/items/nectarine_sapling.json +406008dddeeffc32e276be9e29d8b07503015021 assets/croptopia/items/nether_wart_stew.json +685ce68c05a840fef60d8f657d228e8406d0b086 assets/croptopia/items/noodle.json +dc3ee91d1810f73655aa26dd548ba35d87c5a7bb assets/croptopia/items/nougat.json +a16f8aa75fb39074fb339d8b77ab41d746bc1d3e assets/croptopia/items/nutmeg.json +92d0ce25083d3dab062c0217e2b401aa4c5853bd assets/croptopia/items/nutmeg_sapling.json +f7d6ce3117f4092fdc49e59cd5ed5445b6aec94a assets/croptopia/items/nutty_cookie.json +927870a0123864fcc893f6aad7420ef162cc699d assets/croptopia/items/oat.json +1ed9828eb150980969f41f2bd06627ef2e2bdbac assets/croptopia/items/oat_seed.json +a3e377c4f347a977fcb318897b43c89e0a65e262 assets/croptopia/items/oatmeal.json +3a0b8003d3237c7e18d5d18b6461d3cb85b6d990 assets/croptopia/items/olive.json +ff1b854cde279c4bfba3b91806cf4733a52464e9 assets/croptopia/items/olive_oil.json +07cc3a69fa6d20c43be2d8cd7ba3fa6e7a761d24 assets/croptopia/items/olive_seed.json +7052921a993dcff8d5bdeb6572291487672ecc05 assets/croptopia/items/onion.json +6f50afa7a7f04ec7c61807beb0f55a28207a8f41 assets/croptopia/items/onion_rings.json +58cfb38c621983de83b7e617dbf1ae9922a2994a assets/croptopia/items/onion_seed.json +efc55f36e9ea16aea9700d64bf3e483d96d35e64 assets/croptopia/items/orange.json +5487d761fd47f65853fc7c1ef703c3cd09ffc3fd assets/croptopia/items/orange_juice.json +2def390157242bd5340837cd77dbc9298881c148 assets/croptopia/items/orange_sapling.json +b6884c352cf5ebdd7c789500987e003f65ae1a0f assets/croptopia/items/oyster.json +3caa2cc5fa50185e1244e4541cef5c72fa2c51c4 assets/croptopia/items/paprika.json +c1dcf1a98a58566aa4f3d51af63de4f195b4838f assets/croptopia/items/peach.json +92f6d3f29cc52669d619d7312a673a9fb98d3502 assets/croptopia/items/peach_jam.json +69e14b8c983d7336a533110289fd75602c95e0ae assets/croptopia/items/peach_sapling.json +76d7deeee234917ef94854d1454a2550786499f4 assets/croptopia/items/peanut.json +171ab48692b7302452d05282b7d666145d227296 assets/croptopia/items/peanut_butter.json +f4e6c3bb3ac4a02650e2a5508acfbe11ccaca9ae assets/croptopia/items/peanut_butter_and_jam.json +6135306ef2767ae9dac1e817262798cdf28673ce assets/croptopia/items/peanut_butter_with_celery.json +e9bc0cc5c76179e61f84d98a65019cd3f83fc1b6 assets/croptopia/items/peanut_seed.json +88b16e4d4eb07cb178bae7ba9504816e5284eb36 assets/croptopia/items/pear.json +aa141f27a37899a80f66c3c9479b45a53f5717ca assets/croptopia/items/pear_sapling.json +e2bd02f96a281fdbf00c814602005f86d82ab91f assets/croptopia/items/pecan.json +2b48836c9c39373612f8cd88d0d5d59234aa3b59 assets/croptopia/items/pecan_ice_cream.json +697b888f731c55fd70952f516d362d1a79f20245 assets/croptopia/items/pecan_pie.json +a3a4472726b25ec51db7c26a4111be8b301a7fc9 assets/croptopia/items/pecan_sapling.json +43d8d12a6f8da74c5e25b0ae40a669c23b6eb6e1 assets/croptopia/items/pepper.json +e477eb55168157fdd6454c275dc8b3fcf3470369 assets/croptopia/items/pepper_seed.json +4c93ce4e5262f52c7c8b28c6c13c11456770576d assets/croptopia/items/pepperoni.json +94ef1365d8f00c3d71ac335f70cba55488044d98 assets/croptopia/items/persimmon.json +79956c8446f85216358f08af3770513c476b41e2 assets/croptopia/items/persimmon_sapling.json +89c68853d2268312af080b5cdd694b6c4211f3c7 assets/croptopia/items/pineapple.json +aaeac6ff292a906386cc47c58da8ef9f403d9bfd assets/croptopia/items/pineapple_juice.json +7f2ff4eaeec8d7f8377b78818de666e1fbef5649 assets/croptopia/items/pineapple_pepperoni_pizza.json +09418b63a7839b97fd4379fd0bdb234d3bdb4c30 assets/croptopia/items/pineapple_seed.json +9e748199deb5ed3ee9d109e6b610858b554af9ec assets/croptopia/items/pizza.json +539a6c0a90aaaaeeb493325d772ae1351ab8e038 assets/croptopia/items/plum.json +4581965679190b6df9737cdbd883827beb83841a assets/croptopia/items/plum_sapling.json +6702c4a87e0d65f3479561b5a442301a612c93bb assets/croptopia/items/popcorn.json +0853fb895386f75e2489c5a3197f11a3574dad40 assets/croptopia/items/pork_and_beans.json +d4921f99bc277f4545a59ea9b98f00b7283fa770 assets/croptopia/items/pork_jerky.json +1add80eee7e66c4bf5eec48adfd489eb4a7b9c52 assets/croptopia/items/potato_chips.json +4cb7e6d09465c3edd54279ec0a3b52ff577b8055 assets/croptopia/items/potato_soup.json +abce5ee3ca803171ba8ebbde46547d1c6d47d259 assets/croptopia/items/protein_bar.json +5b7ef54f1636f86c17241472c9b4d82c1cde9136 assets/croptopia/items/pumpkin_bars.json +d14adc6848e7282f531bf901120fb41f4f756df9 assets/croptopia/items/pumpkin_soup.json +6fc2b9880ea3f96a680230172e0ac73c7cb5efff assets/croptopia/items/pumpkin_spice_latte.json +544df8e3ec39e317ba09be284764c4436d04c39a assets/croptopia/items/quesadilla.json +d2543fcacb5c0b89598d4dd3b62a4d69bf5b9cf9 assets/croptopia/items/quiche.json +3613c13e4ac948a56859c2aca74c6864a29d7f23 assets/croptopia/items/radish.json +11ef18abf16a9ad58f2caa3582b5f720ac84d864 assets/croptopia/items/radish_seed.json +27827af058a50b286fb0a6de96479009110cb670 assets/croptopia/items/raisin_oatmeal_cookie.json +78145fbf230ab81c9ddde3a75e7c18cd8f444b87 assets/croptopia/items/raisins.json +ef1cd23bd77ba0e8456929b8816a1513b31c7d17 assets/croptopia/items/raspberry.json +f4f8363c6bb75ee2c7115b4cca0a4b2ff1127134 assets/croptopia/items/raspberry_jam.json +ce2b988aba2df03320849e288bfae053b2318dda assets/croptopia/items/raspberry_seed.json +f821dd7dbb2372c54471f4c7d68a3f42959cbbd2 assets/croptopia/items/ratatouille.json +89506cfc6100b78bd9a0b6f3d6c23f831ca29e78 assets/croptopia/items/ravioli.json +adb8886b739de2d75d41fdda0d3ed5bfe926d961 assets/croptopia/items/refried_beans.json +cb0a290233095f171ee3b190262a708d57257257 assets/croptopia/items/rhubarb.json +76ac212d8ee7b25765faab41081f275c17db60c2 assets/croptopia/items/rhubarb_crisp.json +4bede11b9a71c678191c27fcdc39946700d5d511 assets/croptopia/items/rhubarb_pie.json +4caf528104a4d5c0f10d4295c759e6c3e155d52c assets/croptopia/items/rhubarb_seed.json +526a55a7b373147d73e9ea9d45288a48a4679bec assets/croptopia/items/rice.json +b20d15b4ec63cdc372cb1dab0f5b1cdbb120cdaf assets/croptopia/items/rice_seed.json +642ae2f2868aed81ad581e5411c9451643e3b17a assets/croptopia/items/roasted_asparagus.json +1867c72202df854cc3a373e677ffdbccb0541b98 assets/croptopia/items/roasted_nuts.json +5e097da9db1b6c01ccad5b63f3641600cd5fea5e assets/croptopia/items/roasted_pumpkin_seeds.json +fdb09474308336ef87610edd26714d469280d05a assets/croptopia/items/roasted_radishes.json +20f36cc8925c5df8eb7711f95a6e213ae985d5b5 assets/croptopia/items/roasted_squash.json +bcd93b38abbfa9b3718a4add87a01c85a8a3b073 assets/croptopia/items/roasted_sunflower_seeds.json +d49299fa037632df4fcee30163b3d29cdfb84696 assets/croptopia/items/roasted_turnips.json +51bd4393d5eae4a0e90e67600b1d72111d96b781 assets/croptopia/items/roe.json +816e3ecf7415160b917387424ae52d0be27a3d74 assets/croptopia/items/rum.json +163687354a84efe9cc10c51b58e330d7098a714a assets/croptopia/items/rum_raisin_ice_cream.json +b60a37104d2f2f7be39c21603397bd7bedd4f93f assets/croptopia/items/rutabaga.json +c8058cd6ba785747ad1e553c932488da733e2fad assets/croptopia/items/rutabaga_seed.json +9ec46177c74b162bad219355f0d5791ad515bffd assets/croptopia/items/saguaro.json +579d88342cd1918f28f1bb38be26071e53a79576 assets/croptopia/items/saguaro_juice.json +d828d17a70b91982c1143189fa73f42b3386bdc6 assets/croptopia/items/saguaro_seed.json +3749243d15b382e11888cb02cd348f91b8bc2944 assets/croptopia/items/salsa.json +622a70c36d7aaceb438f547877a704cc39a25b99 assets/croptopia/items/salt.json +b28a853f89a67d70c5888cfc19bf217a731fcdb7 assets/croptopia/items/saucy_chips.json +4d89929cfe3b1876fd23b7ff9b7b7812101c1c59 assets/croptopia/items/sausage.json +771df5e5549af3f05a072b4c39c5280e35e51d71 assets/croptopia/items/scones.json +3115550b85b5f1866671fa134c439fe5803570c1 assets/croptopia/items/scrambled_eggs.json +dedfdb0ce8584c19312b2d288de06bad46762b34 assets/croptopia/items/sea_lettuce.json +2b3fb7c8172434ec6092cfd32ff46ee2a9e801a8 assets/croptopia/items/shepherds_pie.json +3e35668ac369a4e502f426c9aa1e6a5ec55edf15 assets/croptopia/items/shrimp.json +18f3b2b3908b8e09b5f1a84427feb7547cf90be1 assets/croptopia/items/snicker_doodle.json +3a7149705abc19241e628658ace50c20ecfe87c1 assets/croptopia/items/soy_milk.json +a531c13208339b106a401563b5dfaf6eb35f0662 assets/croptopia/items/soy_sauce.json +ad723df0afbe610e1f742dd7096e1797dae725ae assets/croptopia/items/soybean.json +b193eacc82929100df897ec71d5404996b85c1c8 assets/croptopia/items/soybean_seed.json +132673b22366979a55543eb64320fe6e416d55f6 assets/croptopia/items/spaghetti_squash.json +cd491a6c92076de9723676b4e2127c79b9a096a1 assets/croptopia/items/spinach.json +8cb03c34f9a58f800ca08abc5875dd1da133f4ce assets/croptopia/items/spinach_seed.json +b72de4df2f654d31ddc83bdfe08325c7d5e5db47 assets/croptopia/items/squash.json +c1c7dc03781c66cc488d2c890f775774e538488b assets/croptopia/items/squash_seed.json +b1971825ec687ecda23ca33bd08d6cb8fda8beb2 assets/croptopia/items/starfruit.json +76e096bcf8c6dff194390d027573022b5a030010 assets/croptopia/items/starfruit_sapling.json +efadb748a84f5175b214a675920719180e7df4fc assets/croptopia/items/steamed_broccoli.json +9706e14ca50d8fb5c11b89f7761878721fe18393 assets/croptopia/items/steamed_clams.json +1787afd3602a7ed38b42f63ad2398251af7161f1 assets/croptopia/items/steamed_crab.json +9d8941d67e93f8a4f86727023f93c39654f14c10 assets/croptopia/items/steamed_green_beans.json +0de28169bfe1a2751b9b71a60f0f43be45613a07 assets/croptopia/items/steamed_rice.json +373441634af131b4ae5ebfa840e9b5f07ff7e652 assets/croptopia/items/sticky_toffee_pudding.json +3bf40abe332aa7adcd8021baca79d61e1c3893f4 assets/croptopia/items/stir_fry.json +cf83a18557da4ee323010da7ef161ca40929318c assets/croptopia/items/strawberry.json +90f26928737b87031e6a150563f475277d6975d4 assets/croptopia/items/strawberry_ice_cream.json +ec45ff34b5b986fa28510da0a6d381a6942ccfaa assets/croptopia/items/strawberry_jam.json +d091ea37fbab1bda3b8087e327ef9461914bca1d assets/croptopia/items/strawberry_seed.json +cb00057445014613b95c8c74d318bf49f1ac62bb assets/croptopia/items/strawberry_smoothie.json +bf3e614bdb8401074f07a5c5bfd93152ac0ebe31 assets/croptopia/items/stuffed_artichoke.json +05bb1b04f7b95735c8c4bd1f3875ae72bb01b457 assets/croptopia/items/stuffed_poblanos.json +b3742b872e157d229744561df61a6633dfdb9b48 assets/croptopia/items/sunny_side_eggs.json +cc125faea4505a8588c657111391446834ae97af assets/croptopia/items/supreme_pizza.json +3b5bef4d012a39b569f3328cb6af4eecd8ba58c6 assets/croptopia/items/sushi.json +e0aab33a9252f352c3bf79d56d604e904a0ef69d assets/croptopia/items/sweet_crepes.json +14bc94e8d640410b00b86d454ae90c0c27fe0e9f assets/croptopia/items/sweet_potato_fries.json +a89affea95b8caffda38daf2963b71dc0d5d3144 assets/croptopia/items/sweetpotato.json +2ba3fccb714df9c87731c14b4f4fa3b775525345 assets/croptopia/items/sweetpotato_seed.json +27a5056cb61ea0486bdb03046761e24a36556264 assets/croptopia/items/taco.json +023c135c5e9b248e78d646991ff7bd4ae8c90ab3 assets/croptopia/items/tamales.json +72f2b73f0da99078d7626b92c28a7a7f1761e282 assets/croptopia/items/tea.json +351a6bc4c4885a1898435a4815e02aaaec231811 assets/croptopia/items/tea_leaves.json +546fe233abad6c76bf179c5054c91e4afe58470c assets/croptopia/items/tea_seed.json +6c4c2a75150bc21b874ce67ab3a4bfc135cf8be2 assets/croptopia/items/the_big_breakfast.json +2afd1a7c194a99aa5706faf453fb207da22a8217 assets/croptopia/items/toast.json +fc9f0725c2a0da9041cbf380a2968b42cae801dc assets/croptopia/items/toast_sandwich.json +5f28727e18a109362dca735fb7f0215cf0aaa502 assets/croptopia/items/toast_with_jam.json +14153874c5b70b519d36bf524cadb49499e7617c assets/croptopia/items/tofu.json +f32e59e68d5efcbbae3992470765d7fe7310e79f assets/croptopia/items/tofu_and_dumplings.json +ec184c5a5e7f36e80aaf89ca835d154db896bc38 assets/croptopia/items/tofuburger.json +d8038cb3a40c452ae2bcb583668bb4ff61be3dbf assets/croptopia/items/tomatillo.json +33211cc7e67132f897b53bcdc071a7b42ab94efa assets/croptopia/items/tomatillo_seed.json +927415a9981b94e4839e96b9c6dbb702411e39b0 assets/croptopia/items/tomato.json +46ef1753058d604a5b236254bdfaf867fd35fcae assets/croptopia/items/tomato_juice.json +2012cca33f2f6194752aaffc89ad5a0c89df48ab assets/croptopia/items/tomato_seed.json +77f5621677b3b9cd3e12a77b1773a260485fbf3c assets/croptopia/items/tortilla.json +71fa70b31cd00f70f98188f075143f79578cc20b assets/croptopia/items/tostada.json +d92e858f547026043966798a751e7f3bedda5d6e assets/croptopia/items/trail_mix.json +2d14c0865074fd513ca7d73cb400b61f758af8bf assets/croptopia/items/treacle_tart.json +68472766031ec6621d02ed714078f2eb1a794336 assets/croptopia/items/tres_leche_cake.json +8fda8155a726e939a7a1b7f31bccf312835d29ab assets/croptopia/items/trifle.json +6ed2996b1e18ac2f9fca898b714a969cccafad45 assets/croptopia/items/tuna.json +09ae9dd0a4b9043095b96a0222a03c63a4f63012 assets/croptopia/items/tuna_roll.json +d060bbe8d26739a402638202af7f4908809b50a0 assets/croptopia/items/tuna_sandwich.json +0bdfbae86e67408501011630c10cad85f9a5aff1 assets/croptopia/items/turmeric.json +1743c8a9373ce5376f1b29d5d18ab9a95299c601 assets/croptopia/items/turmeric_seed.json +2979dbd8601c88b8690e98c4cd6186885af6f40e assets/croptopia/items/turnip.json +1369e3e7d189152ed37bcf44d3e2bc02b66017af assets/croptopia/items/turnip_seed.json +28f4745f64ca48d552f7e8454f548c0e7830acb5 assets/croptopia/items/vanilla.json +5ec9686164e06d015d37518d241dce3caf1d8e04 assets/croptopia/items/vanilla_ice_cream.json +387438e301615b918def2163532f278dbe79506e assets/croptopia/items/vanilla_seeds.json +6f6817e199695ebe9276a5ca75457bc95da3472e assets/croptopia/items/veggie_salad.json +872f5aa26f8b4d76480c8b8e5550dcb22b4d48d9 assets/croptopia/items/walnut.json +b4cce2e84f3d1be44fcbc108af17e092d975d4bb assets/croptopia/items/walnut_sapling.json +445108eaf3f3d176e3b3aa4bb8ec72151bc57a0b assets/croptopia/items/water_bottle.json +b1b553e37471ae955216ad66dcb9a6bb0f2fef21 assets/croptopia/items/whipping_cream.json +488ecab03b307b36d10d3ef990dbd15ff72c6529 assets/croptopia/items/wine.json +141b46ffdd50448fbb85f766d0e12aafa6661362 assets/croptopia/items/yam.json +ea852f16f6ec0363397a20f9a0dbff98719022d7 assets/croptopia/items/yam_jam.json +2aecb1f8161391a91a88b4fc410684cf1f144eec assets/croptopia/items/yam_seed.json +ed275595eb02e901d79127fd7fb76afd775acaba assets/croptopia/items/yoghurt.json +70ba5d5e0fb2de833865f6ac60bc508cd7a21a6b assets/croptopia/items/zucchini.json +50478ceaee1310711bfc5bd88c9a6c8a4002b0b8 assets/croptopia/items/zucchini_seed.json +43298526751cd5c376c9d9c1b77875b8b16a70a2 assets/croptopia/models/item/ajvar.json +dbe0708d072ba7662fa8ddede85791e8402705c2 assets/croptopia/models/item/ajvar_toast.json +7c8842e5861fc14543705294b79c7b02adcb9218 assets/croptopia/models/item/almond.json +5205a64a33f97821a985d10db729efe9886fdd52 assets/croptopia/models/item/almond_brittle.json +33a2550a044c19a83db0e0e81f3cdb4c615f02dd assets/croptopia/models/item/almond_sapling.json +f9eadf187da667dc852c2d68f703727365725929 assets/croptopia/models/item/anchovy.json +3b137045cbe5d148a840fd500951dd4cdbf17529 assets/croptopia/models/item/anchovy_pizza.json +0f112052c91aab1c62d52b9f52d2151ad5bb86a3 assets/croptopia/models/item/apple_juice.json +2f1a12fd49e51e21a46f7954187c2ed781c52d73 assets/croptopia/models/item/apple_pie.json +0887928672e1e4fe2bab785f1668dcfde83d5c41 assets/croptopia/models/item/apple_sapling.json +65ef935de30acafc1fe5ff25a37a75e91bb0a299 assets/croptopia/models/item/apricot.json +4bb7fccb81f5cf5c1291e68a923eeb46e5324f3a assets/croptopia/models/item/apricot_jam.json +27e7833dd39892b235889694066a25a542e80f11 assets/croptopia/models/item/apricot_sapling.json +e3545e65dc04be2589f7252ea618981da75fb6ca assets/croptopia/models/item/artichoke.json +e7d38ed2753de4b6f3aeac19bfd1696fa9b178b6 assets/croptopia/models/item/artichoke_dip.json +1a26cb462c5155cdf34af794da7f4947319bb86b assets/croptopia/models/item/artichoke_seed.json +dab33b428e2d2865ae4fd5f696a5e20da4e4aab5 assets/croptopia/models/item/asparagus.json +d0908c85afdd9378ca1f022d36d4eadf8c95c83d assets/croptopia/models/item/asparagus_seed.json +4d40c51690310c0dc6c79a74d6d0604451768fad assets/croptopia/models/item/avocado.json +c2299f869f7a504cf802b52bfe5fb78f624e9bb3 assets/croptopia/models/item/avocado_sapling.json +6ba9d575e0eef9b2a87a982895b0514f8cb75694 assets/croptopia/models/item/avocado_toast.json +58b15443ba5b4f03e3bce2ba0eecbf035fd0afd4 assets/croptopia/models/item/bacon.json +02171e8e6a7f48a912712007864e97219be6b9ee assets/croptopia/models/item/baked_beans.json +86acd61eebd98878fa9c7b7ffddf3507621521dd assets/croptopia/models/item/baked_crepes.json +17dbc28ca4a4d5f0acfbc663e7c4a2b59abb183e assets/croptopia/models/item/baked_sweet_potato.json +16b9f9ac8c72e8d78e1d52bc1ad8b2eb5e1c080e assets/croptopia/models/item/baked_yam.json +560c3dabbc98bb277abc0064c2f0dc7067b2399b assets/croptopia/models/item/banana.json +1fe507de707dd45af20090cf18c03f035a430ad4 assets/croptopia/models/item/banana_cream_pie.json +d77585ad2d56fea909263b6b7c440ea44d2461f2 assets/croptopia/models/item/banana_nut_bread.json +7eefddaf483ad318d0c3ecad50b623257a8a219f assets/croptopia/models/item/banana_sapling.json +b0c2e09305da7d45e478aa9aa56df26c193fc5e6 assets/croptopia/models/item/banana_smoothie.json +f5209e3466d7512e3cff96879f010f9be1af3182 assets/croptopia/models/item/barley.json +afb17bfdf6969ec60600f1ccfa8d87a57b1f664d assets/croptopia/models/item/barley_seed.json +e9604333d78626689ec3454fc9104792c2a4176c assets/croptopia/models/item/basil.json +b06c9c5dd255370084d4ad172593fc6ecba4f1b3 assets/croptopia/models/item/basil_seed.json +df2dd929a0908a1fcc6dbb366e67be8574ebe8b7 assets/croptopia/models/item/beef_jerky.json +b01fd60247f54c64474296b3e07541b509f26cf4 assets/croptopia/models/item/beef_stew.json +263baa06a9d3d2071b699193b1da691b1712d17e assets/croptopia/models/item/beef_stir_fry.json +907f6f4f7b14cf42611108d8567b7fc3f9371376 assets/croptopia/models/item/beef_wellington.json +616eadca848d9e2e2d61e5052abf721511aad0d0 assets/croptopia/models/item/beer.json +bdbf8390727a79fbaf7a6740c2197c4c43e97606 assets/croptopia/models/item/beetroot_salad.json +8d4e427e99f0fa2381a14f95e1feedb727fe5e4f assets/croptopia/models/item/bellpepper.json +8ab3ca13febd04a87dcccba9bd5d4b04d2729e53 assets/croptopia/models/item/bellpepper_seed.json +9758a44d837051fec3fd8b4a80e3a94715ab0380 assets/croptopia/models/item/blackbean.json +65ed0a73de408ac7e6baa45d9d720ba12e50be48 assets/croptopia/models/item/blackbean_seed.json +de03a185873ac32e532b5fe6fe5f477e5bfbef54 assets/croptopia/models/item/blackberry.json +ac8df7df2546d9fca118bb0c005223c81059092c assets/croptopia/models/item/blackberry_jam.json +f2b0eecc0e653b43c1305320e92d52f196202b93 assets/croptopia/models/item/blackberry_seed.json +48bb52f099f50ef8b365751b634634604d3e31ad assets/croptopia/models/item/blt.json +f5dbcf74affcf68589a3dd89351208af688d4f8b assets/croptopia/models/item/blueberry.json +e8970096129a05844caffbf532856ceb253387e8 assets/croptopia/models/item/blueberry_jam.json +1f86ef6653e50f892eefd7a567831c057272d1d6 assets/croptopia/models/item/blueberry_seed.json +0552cb6985f8eb955f92c547d4c80503411b6025 assets/croptopia/models/item/borscht.json +c2df17dca9af3d791913224932b7e58675b5acca assets/croptopia/models/item/broccoli.json +f7792447c33c8f8256b20ecaa8efb1188dce809e assets/croptopia/models/item/broccoli_seed.json +5564a97fc8319cbee037698f5f89dd3a237bb4a0 assets/croptopia/models/item/brownies.json +e6048ef0df27b67ad3e84d09f27520e082377222 assets/croptopia/models/item/burrito.json +3fe877f57eeaadcde6eadbf58a180986593d981a assets/croptopia/models/item/butter.json +475aae5dbcfd89b43eceb68431a9eae09b8503f7 assets/croptopia/models/item/buttered_green_beans.json +85cd71094badf481d130560cff1773bbba0def5e assets/croptopia/models/item/buttered_toast.json +e3769b8a0313462ab7f4cbff33bc291c941a79a5 assets/croptopia/models/item/cabbage.json +6363e6c76b74e5604f580481009d8541f6a7aca7 assets/croptopia/models/item/cabbage_roll.json +7b122ba197bc291c0e7a4e46c1e95655dc8e593c assets/croptopia/models/item/cabbage_seed.json +908928d52abc43a003d74e0638978ebc043020cf assets/croptopia/models/item/caesar_salad.json +9a2000a05655d308e29ff3ae4e3b880135f201f5 assets/croptopia/models/item/calamari.json +8298f0346925c58a08c88f4020f753e4c688e961 assets/croptopia/models/item/candied_kumquats.json +add8721afdea7b4f04982f63e70753d125b7c837 assets/croptopia/models/item/candied_nuts.json +ec0d0c2e2df2d8f654c65cbcbfb0c17f7e30cc18 assets/croptopia/models/item/candy_corn.json +58b0a1d08bc3aedd7e0bb505d5f862b829ac37e2 assets/croptopia/models/item/cantaloupe.json +b58714d3a98643c27cd926edefbc5e4aaa273104 assets/croptopia/models/item/cantaloupe_seed.json +0e6f70fd2c4db517b8dd560601ba0b479b4f928b assets/croptopia/models/item/caramel.json +88b5fc89d8094be6a373b5c6e4369de8304e0bc7 assets/croptopia/models/item/carnitas.json +539acc0ca74e60f5c3e07adffe07c4007021d8a3 assets/croptopia/models/item/cashew.json +f5283e99eff1b2a23e4300375f2b6553bef88ec2 assets/croptopia/models/item/cashew_chicken.json +bf08509f586e6628bcaeb4b7dea8b55c1115ebb2 assets/croptopia/models/item/cashew_sapling.json +3728c9743e8af65caf4dbb337bb50544028b9744 assets/croptopia/models/item/cauliflower.json +edd31356d1a4206cc0df8e286255996d5ae93370 assets/croptopia/models/item/cauliflower_seed.json +c5f21dd954e2f58eea34ca8ca61ef20dff77ebba assets/croptopia/models/item/celery.json +4bbca525f73f19c4e57669ff987af0d5c87a32c0 assets/croptopia/models/item/celery_seed.json +e3078109bebe943a2c9ecd039b032e62452213d0 assets/croptopia/models/item/cheese.json +81dce9e30e3de163708f02f3ccf6c54d6b50a893 assets/croptopia/models/item/cheese_cake.json +9bb0f12c0bc9861e4928e71bb7df1af935dfd65d assets/croptopia/models/item/cheese_pizza.json +63eac3b61a121fd56aa9f7dfaeb223472707f712 assets/croptopia/models/item/cheeseburger.json +200f4cf8cbaf4b68acd2ab726c9c61ceaf5cfbae assets/croptopia/models/item/cheesy_asparagus.json +dc48671ff0280ee117af676a03339636e030917d assets/croptopia/models/item/cherry.json +f5c2177fdb9a7737b2748c6bd2bfa06d9e2b3dc4 assets/croptopia/models/item/cherry_jam.json +e2de30172086956783422587d7cad05febbc79c4 assets/croptopia/models/item/cherry_pie.json +7c18fd87bf7a69b68ed1df633a6a419c9e7bb810 assets/croptopia/models/item/cherry_sapling.json +8364d500231d5a86b4a5ce95b70727583be51c9a assets/croptopia/models/item/chicken_and_dumplings.json +40f33b7d15cca98dbcdc856649d1c95c832a8e52 assets/croptopia/models/item/chicken_and_noodles.json +dc45a530b5244d508e7e6ef2cb6b073d75d1abe5 assets/croptopia/models/item/chicken_and_rice.json +19a4031cbcde1456e3b0a3ad23c679d4c13ce114 assets/croptopia/models/item/chile_pepper.json +0e4c7eaa4e20d9d944904e26f4b0dc9d230530fe assets/croptopia/models/item/chile_pepper_seed.json +a694bf81af1ab637c50d0edec8c9a5f8ae8c17a2 assets/croptopia/models/item/chili_relleno.json +14a2b052c57070de1b90e2625ea481e921374244 assets/croptopia/models/item/chimichanga.json +c9523337431a350e82da9100a4552a20d718b7bc assets/croptopia/models/item/chocolate.json +4c0c9c3d916da2728e976bde2f053756128aa73c assets/croptopia/models/item/chocolate_ice_cream.json +f9cf3e577a32e243af0c09523043afba1d48e963 assets/croptopia/models/item/chocolate_milkshake.json +3c2c67812c5c933df60f051413bd2ced95e7112d assets/croptopia/models/item/churros.json +bc536149334c0daa680658cb5da0d7017a9f7a6b assets/croptopia/models/item/cinnamon_roll.json +a3088ddd2b87dff2aeef537d15ed1e9900bcaed3 assets/croptopia/models/item/clam.json +f18362abe3fd92d9dbfaa85dbcb17726880e41ca assets/croptopia/models/item/coconut.json +1016bd70c21218d4e97fdf754c6dfcc269135570 assets/croptopia/models/item/coconut_sapling.json +ee2ab37fe4c01a09e24b919e55894266fd7d22f7 assets/croptopia/models/item/coffee.json +e25513fc70c6886e322b140a2ee2b29c0bcac3ea assets/croptopia/models/item/coffee_beans.json +7124324ae39610b2b671473fffe4c5822f6bce55 assets/croptopia/models/item/coffee_seed.json +475806176a7b4ab62a732d9c2477ad8884e87245 assets/croptopia/models/item/cooked_anchovy.json +dfc0941be810625c3edc7805ba2a806c3dad0f09 assets/croptopia/models/item/cooked_bacon.json +15ff338ba5abf92e2b37b49e7403834372a94cb5 assets/croptopia/models/item/cooked_calamari.json +417a51398b08711068deec5b72c16e1c5d3544f3 assets/croptopia/models/item/cooked_shrimp.json +810c8ed95c18f09cb2260389804e6151d0b51da7 assets/croptopia/models/item/cooked_tuna.json +35c6158744dd8ec899a06cb175555acb6f04014f assets/croptopia/models/item/cooking_pot.json +ba5206d751294fd1d9cafeb3629d9ee6d4ecfd06 assets/croptopia/models/item/corn.json +340722d54e1858573f79544d8020be7c69e900ac assets/croptopia/models/item/corn_bread.json +5c7265642fb090058f3cdb765346773274e6d328 assets/croptopia/models/item/corn_husk.json +be0e44cfab4ddaf0a6a3badb705a16d950dc9bb0 assets/croptopia/models/item/corn_seed.json +17de80258613370385f3fe61faaf3d883d594c0e assets/croptopia/models/item/cornish_pasty.json +9e3008236330e03d87771af73527de272b440dd8 assets/croptopia/models/item/crab.json +67a19e5b2ef72c25a5f472984da1a891f958337f assets/croptopia/models/item/crab_legs.json +128a027c41b95391c3be58b69f99ad43685cd167 assets/croptopia/models/item/cranberry.json +05eac4950d8ddc85d21ed0ece4307930972cfa20 assets/croptopia/models/item/cranberry_juice.json +20228569193561895f1d787c92aba043c5308411 assets/croptopia/models/item/cranberry_seed.json +91ddc9ad72e8dd4f5a9d2ec69f5da40ee888eb9d assets/croptopia/models/item/crema.json +34bf84212b5ae514ea078fc61326d69e13df93bb assets/croptopia/models/item/croque_madame.json +b26394291756303c33c120c3d44de14cc3309344 assets/croptopia/models/item/croque_monsieur.json +d19a9b6f4399122718d65a9181d7d38ad88f2abf assets/croptopia/models/item/cucumber.json +c7f4cbd49f43a5bb347144531b64ae59c6427f9c assets/croptopia/models/item/cucumber_salad.json +14b3bafd5f54c101d38c018a938dd1f1b1bafdc9 assets/croptopia/models/item/cucumber_seed.json +08497c6b8c407c2bb990cc7d38a04491cd219d81 assets/croptopia/models/item/currant.json +6d417f0e30ae492f4178fa870be19fe2a90af933 assets/croptopia/models/item/currant_seed.json +36dfaa11f1d2b0113424c15949b2c227960a6206 assets/croptopia/models/item/date.json +f1d1ec6e6877b9100a4b94cedc18e22330c538c7 assets/croptopia/models/item/date_sapling.json +1de9e505def683746d2b6776dfe1ea032449a673 assets/croptopia/models/item/dauphine_potatoes.json +ffae889eb06d5fc7f5d244b3a96ba062f9567f5b assets/croptopia/models/item/deep_fried_shrimp.json +70a14f1420b2572fa379cfcb48bf5cde7b14e94a assets/croptopia/models/item/dough.json +e253aa337327ee459ca3f7b906fcd81efa6c0bf9 assets/croptopia/models/item/doughnut.json +406f942eabd269b03117b96ab34435951d578eb1 assets/croptopia/models/item/dragonfruit.json +fb502c2133cc277fe8ed7e0bf975675afb608a99 assets/croptopia/models/item/dragonfruit_sapling.json +eeb6024c6c85a00c9d32de735385a439fcb5a840 assets/croptopia/models/item/egg_roll.json +8a83936303ee89e59635e0e4122cfe898abc308e assets/croptopia/models/item/eggplant.json +a07ba7ae3df512dffe65d46b0a1b8262daff9d98 assets/croptopia/models/item/eggplant_parmesan.json +5504b10ff58a69113a9df7e5327a9dd9cc5fdeaa assets/croptopia/models/item/eggplant_seed.json +494effa06b9f43be3fc60044429c625cdbe9e6a7 assets/croptopia/models/item/elderberry.json +1c82f85e4965efc8a4bf9f361e80987ebf5b6554 assets/croptopia/models/item/elderberry_jam.json +c9c98d20dc7df3aa133e86f77d602eb6ce6bd7c5 assets/croptopia/models/item/elderberry_seed.json +2477c31bf21a869a23b679e11eb43fb4337f5b84 assets/croptopia/models/item/enchilada.json +dcafa026ad4992b862b50af9b29fe5bb334ab2ba assets/croptopia/models/item/eton_mess.json +2d80c9c801e6f16cdc38f2bb0eb1caea4d2ed750 assets/croptopia/models/item/fajitas.json +f170ad49f10bd16a883c79ab409173a8f418b6f5 assets/croptopia/models/item/fig.json +050312660dc8a2b821ddecbef4b78b650b90a199 assets/croptopia/models/item/fig_sapling.json +e480b346f8a03da60d5b0f88eb6c142ee31357d9 assets/croptopia/models/item/figgy_pudding.json +117d07496a16235d71cb11490adfc4446f2460eb assets/croptopia/models/item/fish_and_chips.json +cf50b67dbe23c4e852f47289a386ee3e33791582 assets/croptopia/models/item/flour.json +ab90d3a79340eb70a5aadf4d6d47976f3d893d57 assets/croptopia/models/item/food_press.json +9318542e275ecfd0d54de3d32e7e193e19da5a3b assets/croptopia/models/item/french_fries.json +c26ff580337649e479c946b817bf593118aff9ec assets/croptopia/models/item/fried_calamari.json +360b148a928d5aa525e91e82d0e8505dfef5171b assets/croptopia/models/item/fried_chicken.json +1991429b1d7cdda758eb7f699caa81439391948d assets/croptopia/models/item/fried_frog_legs.json +872a6b1fc2e1be6ba6c37bd5b7c7e979fcd68e93 assets/croptopia/models/item/frog_legs.json +3cb4039b2c19d340032f87bd1ca73ae5b01e2c7a assets/croptopia/models/item/fruit_cake.json +8fb711a72e437fb67fc47ade079ff34d48913baf assets/croptopia/models/item/fruit_salad.json +b05affed5b97dabeda0aa883d4432c55006c4d35 assets/croptopia/models/item/fruit_smoothie.json +1ba81fb71464e395d94a8ed1cd3a7fb2b608251b assets/croptopia/models/item/frying_pan.json +4da248a3d1b45be54157f93a2db7eebc099579bc assets/croptopia/models/item/garlic.json +1a51d6aff092886f0bc317f884c0868d9aaf15b3 assets/croptopia/models/item/garlic_seed.json +ae1d3ec9ba2694275f9d8703fb49216ce6332c8a assets/croptopia/models/item/ginger.json +c19ccd005c54b0816f4d18e76e45f03fef1a92b1 assets/croptopia/models/item/ginger_seed.json +ecf7ff442b97a320ffc886f1192ac0127009366d assets/croptopia/models/item/glowing_calamari.json +fdf2f28e94d2ea4dbdbeb6b2cb259cb80094684a assets/croptopia/models/item/goulash.json +b385850beee0ce7bcb9397f39767a9409afc1fe8 assets/croptopia/models/item/grape.json +b3308700c402ea7cf1286d97653c1e183e247a4a assets/croptopia/models/item/grape_jam.json +be84569538937aaead91cb30cf910255846461b2 assets/croptopia/models/item/grape_juice.json +919271c23a5feb65f8489338360f61dc30481b9c assets/croptopia/models/item/grape_seed.json +436d625f1a8bbcc27555f82d3326dda46a3ac5e5 assets/croptopia/models/item/grapefruit.json +a962833beeebab4a48adaceaa2e955456bc71d04 assets/croptopia/models/item/grapefruit_sapling.json +dfa18ad852cf4f620535249a42c7574586732adf assets/croptopia/models/item/greenbean.json +86c6707608b489493a0e1be185aae815b2503bb7 assets/croptopia/models/item/greenbean_seed.json +28fa87a166d96e917524e33c530a0939f62af856 assets/croptopia/models/item/greenonion.json +ba24bfc2bc09b25e685eece0e0f7ac5c3e8b328d assets/croptopia/models/item/greenonion_seed.json +a3a1ad663a653bcff8588466cd4c742c0859ac6a assets/croptopia/models/item/grilled_cheese.json +052e2b89550f4216e777ef5f0fb4c51150d4e92d assets/croptopia/models/item/grilled_eggplant.json +7b09147a0693ccdb3f2d7a425bba7b1ca082f774 assets/croptopia/models/item/grilled_oysters.json +0d543c08dba9b900748c0dafb62b3827823c257d assets/croptopia/models/item/ground_pork.json +5f76208f68794994268fa8219d6ea47676479023 assets/croptopia/models/item/guide.json +25de445d263e3c1590169d05d2980a4140d0cd00 assets/croptopia/models/item/ham_sandwich.json +b09b2da01392aac572911ea89d2bd1e1febb473d assets/croptopia/models/item/hamburger.json +8067af7e663e02c5935de09798a7c1b7246aa06b assets/croptopia/models/item/hashed_brown.json +6254668af298c9e7c029ef7dda2bc92af2be7490 assets/croptopia/models/item/honeydew.json +e4204b8141b0ab4b7b64a0f67493b9f48e0dfd81 assets/croptopia/models/item/honeydew_seed.json +772080116b5de6077862509e8bdeaa6a0f0515f2 assets/croptopia/models/item/hops.json +12d61ad1d8db80a97b5a500f66290083e2f73b91 assets/croptopia/models/item/hops_seed.json +1786762267ed99a0e380ac650c1dad85d59d5478 assets/croptopia/models/item/horchata.json +3d555c92c1a26194d9ab03fb148c6efede186523 assets/croptopia/models/item/kale.json +744a49709a17e18bfb5389d9a2f2977f4e25ac2f assets/croptopia/models/item/kale_chips.json +b5b98434eb77ce4adae22adb0f6195aa203f5a74 assets/croptopia/models/item/kale_seed.json +d07ddfbe2b908f207dfd1f46d232e6518514270f assets/croptopia/models/item/kale_smoothie.json +07b61f7bf7b16aa401ca93530b8f4543ac1b2a4b assets/croptopia/models/item/kiwi.json +422d1b8f6e665af7f1dcc632f3e49bb5187c8f48 assets/croptopia/models/item/kiwi_seed.json +0a3ffa144d9cc721a78ba944451e9a0548b073f3 assets/croptopia/models/item/kiwi_sorbet.json +af5629f46029c9bb6403eec6e83c91aac697034d assets/croptopia/models/item/knife.json +6a89a35b5191bc3cd3b46fea0429fbf3990b9429 assets/croptopia/models/item/kumquat.json +975b60b31ab94deebc2b70ad1815f41fbc09d754 assets/croptopia/models/item/kumquat_sapling.json +75b70a94e5732d147cd3e8dbda8731be795ff4ce assets/croptopia/models/item/leafy_salad.json +cc6302fb70f83fad8eb33e33e6239ce19510b6b2 assets/croptopia/models/item/leek.json +2e81ab156a0d273adc3c183b952588e85cd5a071 assets/croptopia/models/item/leek_seed.json +135bed1817184ef7bcd9ed5e619528ae56473de4 assets/croptopia/models/item/leek_soup.json +67d578a567f74fe8463bc461c6fee3f648d8982f assets/croptopia/models/item/lemon.json +cfe2ac9d4e5848a942994da9e822090ee59322dd assets/croptopia/models/item/lemon_chicken.json +340c8071c9fd0e9b321b325f02de0d766429d765 assets/croptopia/models/item/lemon_coconut_bar.json +fa41c52b54f71bea076270b9455be1b45f59c69e assets/croptopia/models/item/lemon_sapling.json +6c7213730bda92713b71ba5af0d5f5468da939e0 assets/croptopia/models/item/lemonade.json +cddab68bd1181389c6504c75e0e3bfb657676728 assets/croptopia/models/item/lettuce.json +e2f2c78f9d6a39c900a46140082cfed9d24f6a6c assets/croptopia/models/item/lettuce_seed.json +c56e084e88d1acb73433fee7a91be29d4e027df5 assets/croptopia/models/item/lime.json +a539fb097f4d2e97f3715521c49cac0de133f488 assets/croptopia/models/item/lime_sapling.json +155ce51d7c6bd8ee730801f12da3fb8fb00fce70 assets/croptopia/models/item/limeade.json +e6209bfa32b264f6b94aad58d5881bbc201617e4 assets/croptopia/models/item/macaron.json +3d8dba52380013cbccbdc77b3ae18ffef2fd838d assets/croptopia/models/item/mango.json +95129b09a9ea550f848c8b5b8bed49116520be87 assets/croptopia/models/item/mango_ice_cream.json +1e14f0c06962156421627a1f51a2f245db8f99d1 assets/croptopia/models/item/mango_sapling.json +882c1f5cc3a8e4dbaf1bea12e6d3ff53af241461 assets/croptopia/models/item/mashed_potatoes.json +19451c2d967d11752e8dd3fb8d03aa5804ef38c7 assets/croptopia/models/item/mead.json +b92a64c85aa73799ce1d2b8f836d014b6f18c92a assets/croptopia/models/item/melon_juice.json +c14cc16391ecc85bd9a4bb886ab7003c660c12a6 assets/croptopia/models/item/meringue.json +c30dc641c4371a345d455f68199be11f940c6a09 assets/croptopia/models/item/milk_bottle.json +583b2bf1c512f9cd1d28dbc38710afc42f995c80 assets/croptopia/models/item/molasses.json +02916cbbe598a7982c488a5ca81151b0af06092c assets/croptopia/models/item/mortar_and_pestle.json +f699566d2e54b47ce24ef8beb83487dc26be75ad assets/croptopia/models/item/mustard.json +e0b06c8e6717f288d267c2d5bad4ebacc069eb6c assets/croptopia/models/item/mustard_seed.json +6979427aef2fa071a76fd9b7fca245f180d938a9 assets/croptopia/models/item/nectarine.json +b1b4fcd72fe5b245131274cbfc6ebe686a4131e2 assets/croptopia/models/item/nectarine_sapling.json +72b53da18f859cba470e6d5e564525925f49ccbd assets/croptopia/models/item/nether_wart_stew.json +2d2e1204bba60d2cded7fbdff14c98218763a77a assets/croptopia/models/item/noodle.json +cf29cd0b11c406b76a6f6f59750471c7078d7f21 assets/croptopia/models/item/nougat.json +4e53292f1df4f5eec208783c8b29a2b438c23baf assets/croptopia/models/item/nutmeg.json +72425a2cfa135093814a69b6a79926c0b87298bb assets/croptopia/models/item/nutmeg_sapling.json +d8bed6f8d6f57ca4e97f6c0965c969ce153aabb3 assets/croptopia/models/item/nutty_cookie.json +c97cd5dc666fbfb83fa115a4cd5083631fd885ca assets/croptopia/models/item/oat.json +d46a4113c0e5db0e6448ae457fe7b097e2bea118 assets/croptopia/models/item/oat_seed.json +f540bc8688c46485b702c8c34eed6c844823c5cf assets/croptopia/models/item/oatmeal.json +25fbaf00945309702f697a88b32f048fd6f86701 assets/croptopia/models/item/olive.json +ad2ae40c648a3e331036f79aff71da46b4994193 assets/croptopia/models/item/olive_oil.json +07919eb35f6a3d01033d0dd0203c22b94d14489a assets/croptopia/models/item/olive_seed.json +acb711f34831fe59947dba3b7401c91e96257fbf assets/croptopia/models/item/onion.json +8ad2f657a63db7c2bf5a66c2df1077432b76ea49 assets/croptopia/models/item/onion_rings.json +d10e933e203d951d8acea07e72ba02be441b4bb0 assets/croptopia/models/item/onion_seed.json +e0b1f620ba2cb7f6d7d0ac3cf8356e6183bbb986 assets/croptopia/models/item/orange.json +5fb8a74231644b6bcc00bdc50d7356eab09b9a0f assets/croptopia/models/item/orange_juice.json +2f699a17d32db16f445ab697acd308979494246b assets/croptopia/models/item/orange_sapling.json +4ed2fddb4e3babd2f9ea6d02cc8aee4aafd89b98 assets/croptopia/models/item/oyster.json +8f2a94bffe28c73004bb4d4d8b4b4d0a0cce1fb4 assets/croptopia/models/item/paprika.json +e87d8646677991f4ccf38632b3293eb11b77a1db assets/croptopia/models/item/peach.json +58a9abde6173fa568c374594c0f4184f1a3f7104 assets/croptopia/models/item/peach_jam.json +1c6d47bb978f4a8ce69e23087d2ed55811bfb280 assets/croptopia/models/item/peach_sapling.json +3524267979fa5356c4851351112625cc52b98040 assets/croptopia/models/item/peanut.json +206a8536b2d1ef38fd4e89d48dfa7ad850de2e9f assets/croptopia/models/item/peanut_butter.json +06ad209c351cc3e65f5261ca61ebd91b27a14ad2 assets/croptopia/models/item/peanut_butter_and_jam.json +53ab44944ea850a8b80cce31347d78ba69259c1a assets/croptopia/models/item/peanut_butter_with_celery.json +42e7a8a8ae469df48d7d7038d78fa904214c0445 assets/croptopia/models/item/peanut_seed.json +efa042807865e62f96e301a2b608832753572e63 assets/croptopia/models/item/pear.json +2a7d94c2921c189383a4cd7c20eb8351c2cf3b89 assets/croptopia/models/item/pear_sapling.json +17f2d6b7f16e439ea788b035661f9d9512e5dcf7 assets/croptopia/models/item/pecan.json +3261bee4efd302a08ae61677d4864a0cf8cb75eb assets/croptopia/models/item/pecan_ice_cream.json +2e99ad3ee4e2493f6ef728b9b29385acf1c3aaba assets/croptopia/models/item/pecan_pie.json +88bcb1f5597d9aa9a65f81ba7e0584b290ba7845 assets/croptopia/models/item/pecan_sapling.json +408e4d9baca16cac7135f0bf5924c9a1610e6f29 assets/croptopia/models/item/pepper.json +b2a22e1769f09785bf32b75a531087fcd63cb2ff assets/croptopia/models/item/pepper_seed.json +1dfd153162c47eec19f52f6749232fbeb3c318c4 assets/croptopia/models/item/pepperoni.json +a01a411a7c299f330ec2c26b05ce040b65844b3a assets/croptopia/models/item/persimmon.json +f39743a4e5d9ef7846050d2b58da0bc1a4a3fc8f assets/croptopia/models/item/persimmon_sapling.json +d14b275f19f20a0100959a342c4a7ca010583b25 assets/croptopia/models/item/pineapple.json +d64c0af6006449981ea2fa6663532fae44102ae1 assets/croptopia/models/item/pineapple_juice.json +fde26a389fcd53a6ce78dc9d49e33bb7316878c0 assets/croptopia/models/item/pineapple_pepperoni_pizza.json +73b91f4d1d62b0882c20effc0a245e59bd39bd84 assets/croptopia/models/item/pineapple_seed.json +3643e656450e08ac8dcebc1002ce55cfa4f2d107 assets/croptopia/models/item/pizza.json +e54c1e66280d466cad6e3526216e3bbc88888874 assets/croptopia/models/item/plum.json +7330e7e3cedea87d8bb16fc0f0f6a45dcf40d359 assets/croptopia/models/item/plum_sapling.json +c91a29357016c24d347f0afd159f4633f3951ceb assets/croptopia/models/item/popcorn.json +db5c6d98578ecb8a76a5fe6c04044b47c44f7cd5 assets/croptopia/models/item/pork_and_beans.json +a39b5a1ed074a0460b94c7dd7658053362b77e94 assets/croptopia/models/item/pork_jerky.json +4d2896ae58957da485154deae4845c33c33e3049 assets/croptopia/models/item/potato_chips.json +1aa9ccf1e5be4846425edf3db53b0d30ce027d7b assets/croptopia/models/item/potato_soup.json +76550ef55e487c51d25d39d03391db51e71fff6c assets/croptopia/models/item/protein_bar.json +5ec40eddebb1b99e6be57a78385d2775cb47751b assets/croptopia/models/item/pumpkin_bars.json +921b697db7771df0013aa8dbab6757a75331398c assets/croptopia/models/item/pumpkin_soup.json +cb52a1c84356367354d91bca974412df1c7228ae assets/croptopia/models/item/pumpkin_spice_latte.json +ebe5d3722b7e98cb458c4b5415fcf20f382e1ad9 assets/croptopia/models/item/quesadilla.json +3d6c9a0b8b759f140ab963af63fab056ff3c128f assets/croptopia/models/item/quiche.json +6f46d2484c814c92b83fc0d518e7f9ac6f447ea4 assets/croptopia/models/item/radish.json +47cb97ce033aa83fbcf01b7aaa4c3f5280c79f39 assets/croptopia/models/item/radish_seed.json +249693b00b64b958ece1ba8289b40054a6ff07f3 assets/croptopia/models/item/raisin_oatmeal_cookie.json +9229fb42fb5098d29929dd96ee1dc32cf3971868 assets/croptopia/models/item/raisins.json +104cee9ff19f98871c275d55ea8d35d588764635 assets/croptopia/models/item/raspberry.json +9982cfb62f87ce9fd9b8eba1db1b85a7a31ef54a assets/croptopia/models/item/raspberry_jam.json +f505bee060e26ce1cbc86f6af2f8583ac76cc52c assets/croptopia/models/item/raspberry_seed.json +05531b5fd840917b7aae51d3b6598b506c1d073b assets/croptopia/models/item/ratatouille.json +c620c341cea7e266c7fc0a978cd6bbbd1c76806b assets/croptopia/models/item/ravioli.json +38d8b7cb61f658734278934a89b2d8bf56cbde8f assets/croptopia/models/item/refried_beans.json +ae9b6ffdad77387c3a82956209d4f16035bd9111 assets/croptopia/models/item/rhubarb.json +d4083ba92c3925ee7c7b602dbb948116c40f947d assets/croptopia/models/item/rhubarb_crisp.json +6f698e0ff2f09891c18c8a1c8141845595967d59 assets/croptopia/models/item/rhubarb_pie.json +45f88b988f9bb52fdb879178136d32ac293353bd assets/croptopia/models/item/rhubarb_seed.json +d27dac376a37fdf272afa684d718b9d083ff130b assets/croptopia/models/item/rice.json +837007c2969855b47a237337baba2883cd14e74e assets/croptopia/models/item/rice_seed.json +b4c98e7f8d26d54709e200b2acca507a4b8dd786 assets/croptopia/models/item/roasted_asparagus.json +5aa9d0adef825cd6a4b6a443a5218c1a1a43d8cb assets/croptopia/models/item/roasted_nuts.json +36c67b3b10d733529dd26c2b9e843cba7f4ce9a3 assets/croptopia/models/item/roasted_pumpkin_seeds.json +1fa85533ba0be692faecdeaef22248f95e31fc73 assets/croptopia/models/item/roasted_radishes.json +9696901416c105efbeb2f2cb78fe8a1c048a2cbd assets/croptopia/models/item/roasted_squash.json +fd47b2003d93ceeea873e6b15a5434d5f084370f assets/croptopia/models/item/roasted_sunflower_seeds.json +1c1c21961bf8e4b22ffeeaeb9eab84c7121f9ca6 assets/croptopia/models/item/roasted_turnips.json +4b303a7dc43713993113254a71b973b7b048ca55 assets/croptopia/models/item/roe.json +22d9532fadf3e23f2803a79fb473370217bbadf9 assets/croptopia/models/item/rum.json +6d8a0e7a2d4b3b043ef1b82ce1118102c7e0f4ba assets/croptopia/models/item/rum_raisin_ice_cream.json +bbf4b116dc1e2cf529b335d06a613d93ce16ba12 assets/croptopia/models/item/rutabaga.json +831c4d6c5605ed14df0830ca47b0ea47e89ac188 assets/croptopia/models/item/rutabaga_seed.json +ddbb0393bba92cfabfe8a0dd857a529fcabd1d1d assets/croptopia/models/item/saguaro.json +ae6097e7fc7e1c24cd77771d1c9b8dd5b105f1fb assets/croptopia/models/item/saguaro_juice.json +95c6e85030aefe96766d18bff0534cd7a6a26fb6 assets/croptopia/models/item/saguaro_seed.json +824f7d353479af2f855c3fbd558e9e6cc5cdd2bb assets/croptopia/models/item/salsa.json +37fad88e36f27bc9b9d348f7c5121248313d5220 assets/croptopia/models/item/salt.json +7215a9ac889fbd28fdb4ebff7e2afc11b5bbea0d assets/croptopia/models/item/saucy_chips.json +1a1ef540d3ffb89994a4439ff3aaf7656b88e373 assets/croptopia/models/item/sausage.json +9f3a9f1244f356a2c67f0bf06f29a0f388fedf1a assets/croptopia/models/item/scones.json +afdccbda3a4f8566a018d2ef6b2fdc4ba80179c6 assets/croptopia/models/item/scrambled_eggs.json +24b9ca1b2a829fdd663ba66be4eb8d1200137ba9 assets/croptopia/models/item/sea_lettuce.json +f00297aadf07b3d8eaa461227595a41f6e789660 assets/croptopia/models/item/shepherds_pie.json +bf86d4c957a69520d301219257f2b08dc51144cd assets/croptopia/models/item/shrimp.json +ac18d460b9a0ce77035652e67d3813e34287dfc9 assets/croptopia/models/item/snicker_doodle.json +3cc129ddc809afe52ea3acaf3802061fa85c9e38 assets/croptopia/models/item/soy_milk.json +8aa88a62e507210c4db1b363c87a6c2b2bc8bbbd assets/croptopia/models/item/soy_sauce.json +cd9df5009804e0c12755feff13d76c7facd00691 assets/croptopia/models/item/soybean.json +79548dcc13db5e5ef08fe31585300db882e8e10b assets/croptopia/models/item/soybean_seed.json +3f98c30d05f8705714aa3b75c2bec64471c7184a assets/croptopia/models/item/spaghetti_squash.json +fc78c17088f77bf4d4e7793ee9562f8bc62ad68b assets/croptopia/models/item/spinach.json +8631a049066c9ca71200998c77b236be1a3ed02b assets/croptopia/models/item/spinach_seed.json +e3af15fb261bfd817ddc3c7ff430e3193ee16125 assets/croptopia/models/item/squash.json +fd9e8784f78a627bef11a9ea648e024c857612ec assets/croptopia/models/item/squash_seed.json +a98bc84bb14368323fe96884b5c1bc7c47ce692d assets/croptopia/models/item/starfruit.json +13c5cec8659a5768fbe19007a866e4dfab0a157e assets/croptopia/models/item/starfruit_sapling.json +42cd765fafe97cea002df12d132d0d0351e76c64 assets/croptopia/models/item/steamed_broccoli.json +5850c9a20a0fbe60b3d5371eb52e015025227d17 assets/croptopia/models/item/steamed_clams.json +ccbfb91adebcce5223dbb6e7e254d619b8c1d6a0 assets/croptopia/models/item/steamed_crab.json +710fcb66a1e42ac41cf70d94fac117b5588c5ae3 assets/croptopia/models/item/steamed_green_beans.json +73350353e5fc2be3635959d9048e868a1c61398c assets/croptopia/models/item/steamed_rice.json +277570f9da0192cfc060a9a2625c16d48f102dc4 assets/croptopia/models/item/sticky_toffee_pudding.json +7b739e6958e58086effcb21fbed35eba4fcb16d6 assets/croptopia/models/item/stir_fry.json +5b57d07c9b80cadb30bc4f8e103b560504ee5d12 assets/croptopia/models/item/strawberry.json +703ac1f2bc566bdfdc1904ffee56777313abf847 assets/croptopia/models/item/strawberry_ice_cream.json +56515a9160aaac820c353827174a085bd467bd9c assets/croptopia/models/item/strawberry_jam.json +f6a4663ed0ddc1207cd85ba622a28b0153c01323 assets/croptopia/models/item/strawberry_seed.json +d03eeec7004b737dcbe0e54ce86ce80db73e92cc assets/croptopia/models/item/strawberry_smoothie.json +2c96e258b4b207ea9d3f30d654811efbf7f3b800 assets/croptopia/models/item/stuffed_artichoke.json +ff3638171ce78641972abb5ca8a41639e02fe9c4 assets/croptopia/models/item/stuffed_poblanos.json +c04405a04a97d6a0f2af6305be4200f1ba3ee3b3 assets/croptopia/models/item/sunny_side_eggs.json +7c0dcf4f644ecf4489f415a76817aee743b5b74d assets/croptopia/models/item/supreme_pizza.json +d42503b8d8bd052bd3447f946ed308180364775d assets/croptopia/models/item/sushi.json +2ca7ae51967bf9aeb04c705f0773c8e5a69d087d assets/croptopia/models/item/sweet_crepes.json +59972b88b652bce675b631a45667d5f86ffc8c3a assets/croptopia/models/item/sweet_potato_fries.json +1947dc412b45c94112a48d1d12f2097c0a48dde6 assets/croptopia/models/item/sweetpotato.json +25326d58f4d84b8de08873eada308d4696b77384 assets/croptopia/models/item/sweetpotato_seed.json +cfc8d9b6419094d27e183b15d7e192fec96bb37d assets/croptopia/models/item/taco.json +ddd2c607814e8c3b5d40c723035ed0cec6cc325f assets/croptopia/models/item/tamales.json +0e6986a3006874ad9000d73b4e2b6a6a7350bc7c assets/croptopia/models/item/tea.json +14feb94b43a1517903dd8c750f75ee09d48d530e assets/croptopia/models/item/tea_leaves.json +9b07de6592c844cc119823b37ef5a1e8d073e431 assets/croptopia/models/item/tea_seed.json +813c9f5c10d72930f1c96943da00b1b662c3c6f8 assets/croptopia/models/item/the_big_breakfast.json +bddd026004d63043a828448e97c063879edb5244 assets/croptopia/models/item/toast.json +dd87aec5c9172a2d77dbd992593654eb706e23d2 assets/croptopia/models/item/toast_sandwich.json +157f5dd380233925f36801ccc4fd91aa75c6e5d7 assets/croptopia/models/item/toast_with_jam.json +99ee95ef70f435e79632e5de95238955b5aa693d assets/croptopia/models/item/tofu.json +8d7922cc91d8c66b9d8e1060ed0dc4a40ee14258 assets/croptopia/models/item/tofu_and_dumplings.json +5c7476b4f358512d7f2359742284125a0ec13cc7 assets/croptopia/models/item/tofuburger.json +9133dc82374751c63cd03baeada2c5f0eafb8c1b assets/croptopia/models/item/tomatillo.json +adde08bd9fdc2ecd16db147553f108952b439519 assets/croptopia/models/item/tomatillo_seed.json +ecdd7c578739397b857dd8b98e4e6bf8956bd2cc assets/croptopia/models/item/tomato.json +01d1057566fec7b1214dcc5cacaf1d3df7d8a262 assets/croptopia/models/item/tomato_juice.json +d8007bcbf23d7a4f061e7755a656e15411922bea assets/croptopia/models/item/tomato_seed.json +af29cea0f426d29253884327d4e259f79fa099c5 assets/croptopia/models/item/tortilla.json +076883f80f1a52a75de5319078d1b427ed36e30e assets/croptopia/models/item/tostada.json +1617ad58c8f22767eb1f887ea45ad219ed25ed2b assets/croptopia/models/item/trail_mix.json +f8bfd6ca5dcf37d2078ad89c75bc8978b7d8b3a9 assets/croptopia/models/item/treacle_tart.json +73a4719215508798522232921fca5e5a517ff0fd assets/croptopia/models/item/tres_leche_cake.json +fc9e963b81cb4b9e6280e256e3d7e69c37dfabf5 assets/croptopia/models/item/trifle.json +9374fdbe4bd1e615284dec3fd0b97a8a217a0187 assets/croptopia/models/item/tuna.json +cc1ab25fdc4218ce488a3d453f5f87568b5c4d2d assets/croptopia/models/item/tuna_roll.json +73068e6ce517661423dd10d01d4f938897019990 assets/croptopia/models/item/tuna_sandwich.json +cdca3984e7cd677af365345000869607eab16364 assets/croptopia/models/item/turmeric.json +4c829481915e432d4ce9e2689943cde8778a9de4 assets/croptopia/models/item/turmeric_seed.json +4e8776c5707c57ad25eaef2e17eb5d162ce7b4fe assets/croptopia/models/item/turnip.json +7d04910e8cea0f401e2783d3ea278c15aa946fb7 assets/croptopia/models/item/turnip_seed.json +e3df4863979bac2cc495b11cb4047a1e504f384f assets/croptopia/models/item/vanilla.json +7f2d214d90e7a5bbf16277899128799da94c5ba5 assets/croptopia/models/item/vanilla_ice_cream.json +1d347bff231887bd3b7642856cb4406f33a7c836 assets/croptopia/models/item/vanilla_seeds.json +5911ad45f306cec163214782cba71b5816a56f95 assets/croptopia/models/item/veggie_salad.json +0bb91750a11bad018f7f7dfed03f28f5dd70779c assets/croptopia/models/item/walnut.json +10fc53a35f5257cbefe736c4a27fa4a9eecbbad3 assets/croptopia/models/item/walnut_sapling.json +88586f7d0df089166f8c0d01501bf42192e8105d assets/croptopia/models/item/water_bottle.json +30c0edd7325ea0646a150967c7c99005d71c86f2 assets/croptopia/models/item/whipping_cream.json +28727dd850d62e209afe6610593c39c7aa5b3b0e assets/croptopia/models/item/wine.json +4bafe97bf649384caf3f8b6675bb82aefaaf2c86 assets/croptopia/models/item/yam.json +d694d046c73ad85404622a17d6473f6e6ba453e7 assets/croptopia/models/item/yam_jam.json +4a9ecd111071f5f2751ed41803cef5f6ebbade91 assets/croptopia/models/item/yam_seed.json +91ebfbe6b13c83aecc30ad2b77dab88336bec775 assets/croptopia/models/item/yoghurt.json +0c8c3044085c84250630c4f8a334b166c84768b5 assets/croptopia/models/item/zucchini.json +cb641586d43d3039f10d527291ce4f3570961862 assets/croptopia/models/item/zucchini_seed.json +133f373ef6f4859be2447d79408b507ad5c605c6 assets/minecraft/items/apple.json +0f104d7b59ea2fc4f1999942055e76ee4976e29e assets/minecraft/models/item/apple.json diff --git a/src/main/generated/.cache/ed3888ad427a710b9f258204cf92856965fbba4c b/src/main/generated/.cache/ed3888ad427a710b9f258204cf92856965fbba4c index d6ffa85c9..3e58bc18b 100644 --- a/src/main/generated/.cache/ed3888ad427a710b9f258204cf92856965fbba4c +++ b/src/main/generated/.cache/ed3888ad427a710b9f258204cf92856965fbba4c @@ -1,636 +1,636 @@ -// 1.21 2024-06-17T18:40:20.1685896 Croptopia/Croptopia Independent Tags -e8b362681a2ffae7da7ec38d847482cf6935304f dependents\platform\tags\item\tomatillos.json -aae4f564f7c119aff8126b512ed417dad79a347a dependents\platform\tags\item\crops\kumquat.json -13b6b33477932bec7a4b1616b71047e3db9cfad8 dependents\platform\tags\item\fruits\blueberry.json -192e5b2d59caa7a39f17ebbe3445de47f2041e95 dependents\platform\tags\item\vegetables\rhubarb.json -0018fc1260d57565244ab74db94162fe10962eab dependents\platform\tags\item\grain\barley.json -597f24f409b243f6e4b5b6062e3124601b4deed5 dependents\platform\tags\item\seeds\corn.json -5c2218a84743aab0c6457af0500824ecec5dca14 dependents\platform\tags\item\rutabaga_seeds.json -675e81f15f5e0db50f221fbbe3ca4e0dccf470b9 dependents\platform\tags\item\juices\grape_juice.json -a62ec6b72d966d4967fe7d9f3bd94e22d60d1b35 dependents\platform\tags\item\tomato_seeds.json -ce505c1133f270cd2862195757fa113eeb099f05 dependents\platform\tags\item\raisins.json -c84aa1fffb496992b6558af1fe04652494c2cff3 dependents\platform\tags\item\eggplant_seeds.json -97e4bd08ff44780857341fcbdc2c9c71a34d59e5 dependents\platform\tags\item\grape_juices.json -68f4e5bded663a80ac95b5758803c8775de25481 dependents\platform\tags\item\currants.json -f826fbd0f7449acf40bcdde9ce5b9fc797fc7562 dependents\platform\tags\item\tofuburgers.json -0f90b3705e659f6a5b2678b72b78beced9ec7310 dependents\platform\tags\item\crops\rice.json -ded9bb7cd733eb505b138baa2746638bb8c5d0b9 dependents\platform\tags\item\almond_brittles.json -30b3e63f14b3a36fb474a28a8ffada3f6190cef5 dependents\platform\tags\item\kiwi_seeds.json -9b29b8002c3a6a155ba2e9e56fdebe0756119a27 dependents\platform\tags\item\jams\blackberry_jam.json -2cd3f0003767a0b89d20c69049b6e3a8bf069554 dependents\platform\tags\item\saguaro_seeds.json -778a7756156eb781261493439a4541f2d2ded123 dependents\platform\tags\item\radish_seeds.json -e3ee5dce45641802845b62e29f5c5c560ac1d074 dependents\platform\tags\item\jams\apricot_jam.json -1b6cc2767ce064220c8e414cf9011b0a9d9840f6 dependents\platform\tags\item\sweet_crepes.json -d378d2ac7de4fec36597f5b94e3544be5fb875b2 dependents\platform\tags\item\sunny_side_eggs.json -2d12d2c70340078e19882530bd3c0746cec4f224 dependents\platform\tags\item\oysters.json -e7e006672b7057804d1e13aa0a7d751377d07a47 dependents\platform\tags\item\crops\banana.json -e5e7c17efaeaaa402c4705dadc0aad43e10b6ccf dependents\platform\tags\item\salt_ores.json -d310b3da318deefd8cb8ff8a8e2a483a9e1e7374 dependents\platform\tags\item\seeds\currant.json -3b3ae905d9d19ba0f4e9628de471168754495c91 dependents\platform\tags\item\peanut_seeds.json -94a9f07b25fe6ae08ace58b03e7aee07ee328af0 dependents\platform\tags\item\crops\squash.json -f0607e94ca073d64a8f66f761533172f278946b8 dependents\platform\tags\item\garlic.json -d43e1f72e1034e18d326bbb47baf542fd2e02b78 dependents\platform\tags\item\saplings\kumquat.json -15a46b5f3ff9a530a9d250e977fb6034d7abf884 dependents\platform\tags\item\yam_seeds.json -2b5f60f91eba4719f86617e69c5d277e05c5becf dependents\platform\tags\item\blackberry_jams.json -20e85580dedf38310f9e3f277ccd14d202e8b515 dependents\platform\tags\item\pear_saplings.json -4a0f1730e4e6a926eeb1b2ebb94ccb2a4705b77b dependents\platform\tags\item\cauliflower_seeds.json -5cea132eb5e18887bcf2206ba24ae2e32e72b628 dependents\platform\tags\item\seeds\yam.json -97f412f439eb44700f6f837df96e2492af37a3f5 dependents\platform\tags\item\seeds\greenbean.json -e2b4de53715b273f59f79b7dddfa1d2d6cec5e22 dependents\platform\tags\item\seeds\honeydew.json -1d7b4fb50b41d9c589ebea5c0822ac0542d139f8 dependents\platform\tags\item\saplings\persimmon.json -7f5d3d8aa8ffa1cea21d1e5cd9da8df27d23be46 dependents\platform\tags\item\crops\pecan.json -6e13f4636558ed5693cb2690858c51249d255640 dependents\platform\tags\item\vanilla_seeds.json -19fa7d82c7aeeecd59e925021704e963cdcece54 dependents\platform\tags\item\blackbean_seeds.json -2c5817cc37c47e1c2061f832d07d503029a03e35 dependents\platform\tags\item\basil_seeds.json -060e9d3d9d7ce248e7f02dc9fd4baf56dee4f3cb dependents\platform\tags\item\sticky_toffee_pudding.json -2961625001b98b78be881f66c1bd2436f0f8283a dependents\platform\tags\item\nuts\almond.json -3458b7c78932043c5f0885eeace324fd0f885781 dependents\platform\tags\item\crops\pear.json -09df0623aa2381fa549a9679ab7a6452431bec14 dependents\platform\tags\item\crops\saguaro.json -deebe501f51fa27cd693a5000211a5ec9e8fb6ae dependents\platform\tags\item\cornish_pasty.json -f96d2e1ab1e1d6caa7663c829d082da94f09c5ce dependents\platform\tags\item\fruits\grapefruit.json -c6d93b4895802805e092fe914949ea2972c88baf dependents\platform\tags\item\meringue.json -e69dce98ec54fc6db042cf44e4ee027aa4354179 dependents\platform\tags\item\chile_pepper_seeds.json -5a368c972ba8cc95c8f0646f0bf2e9ceb93c6e75 dependents\platform\tags\item\artichokes.json -6602768739a7b49ee98131a61a9a7ab36fc65a5a dependents\platform\tags\item\greenbean_seeds.json -5c6846bb4e0bf1d8a78a3dc237ec0b023e325ffc dependents\platform\tags\item\crops\kiwi.json -d20ee779b1d44f82990de035706505ba80748bcd dependents\platform\tags\item\saplings\dragonfruit.json -b40d935be1ce530d6a30615d3a595b1cbe64d771 dependents\platform\tags\item\ham_sandwiches.json -d504860f7713c43abe8e114a183330f05740c1a1 dependents\platform\tags\item\tuna_rolls.json -ae238f529a4d7138b3339d07a178dc4514abf5d8 dependents\platform\tags\item\tortillas.json -4d859928cac637226a221141ebe678a504609aa4 dependents\platform\tags\item\hamburgers.json -71d20ccee061d6efe67d4ef0eff553b13bce9a72 dependents\platform\tags\item\tomatoes.json -c0bbc8f80e3c9e50d171c44ea9e9209e9653fb61 dependents\platform\tags\item\fruits\honeydew.json -023de7a90170dfb0e7b9496b531015bacdf1dbdd dependents\platform\tags\item\lettuce_seeds.json -db298b3fed7143a0f154ff4ff57c982aa0724444 dependents\platform\tags\item\cherries.json -cd03a2d3bf552772619e99d1e63dc2f1a0defcb1 dependents\platform\tags\item\greenonion_seeds.json -0fb7ba58de924a0e53dc283415ea872cacc1a50c dependents\platform\tags\item\lemonades.json -0094024da4c92cc4f1bc84d0293861aa5748592a dependents\platform\tags\item\baked_yams.json -9ea3886d4e68b2277a3ba8da00dace683a720768 dependents\platform\tags\item\paprika.json -c0bbc8f80e3c9e50d171c44ea9e9209e9653fb61 dependents\platform\tags\item\crops\honeydew.json -c72843247b4a63b59ecc4826eeed587bb73bcc8b dependents\platform\tags\item\pears.json -61f262f75b2f59b595973548c59ff60704728009 dependents\platform\tags\item\pineapples.json -28dfd044d064b07279c0b81f60fc18b2316c4b2e dependents\platform\tags\item\fruits\walnut.json -e842b273fb5ffac8edf1df26bb828c051cf1af53 dependents\platform\tags\item\baked_sweet_potatos.json -883a43b85d5b1716ff68d5beff62d3fa69fdab06 dependents\platform\tags\item\mangos.json -a635b185b03896366093165041a0d96681a2f159 dependents\platform\tags\item\fruit_salads.json -38690098ec3cbf620c4007de678839d1beccb471 dependents\platform\tags\item\vegetables.json -4dd4d78983ec88de8d754bfc49a0d17c7a0509e7 dependents\platform\tags\item\jams\blueberry_jam.json -2e956c72febc798e3f3bbfef8ba97eb085baab49 dependents\platform\tags\item\beers.json -0f75b8282bb173f69f94ebddf0136717e7d78ab3 dependents\platform\tags\item\fruits\starfruit.json -e0da1d9cc13940a1d1ce60ad8a8d5bb22384c2b2 dependents\platform\tags\item\squashes.json -9f5fa3b35c0b1db0526852e94bb31137cff5f7a0 dependents\platform\tags\item\vegetables\celery.json -a97cca9ed0b677dec16536293420a62107207f81 dependents\platform\tags\item\mortar_and_pestles.json -f892b6f651f808ec2a4a72d329fdae600ba802d9 dependents\platform\tags\item\saplings\fig.json -5aa7f5624b4bd3438f5f20d359ddc25d7fcce8a1 dependents\platform\tags\item\cherry_pies.json -0f558309c68b63b2f1da59e21446712a9dfbd536 dependents\platform\tags\item\mashed_potatoes.json -057ed1ac9acb02b6dc569178dd137919fe54d96e dependents\platform\tags\item\tacos.json -1389d07d4341ab94fe1a3f0a664943f5f4408008 dependents\platform\tags\item\deep_fried_shrimp.json -fc4a8b1bb33b2597d46fadc641e260e0915158ef dependents\platform\tags\item\saguaros.json -3a5c488383ca75c4832286d366f42a6970d5ab4c dependents\platform\tags\item\pecan_pies.json -05f4d7c6f22f3b2ccdc9faeb563efd20958728ed dependents\platform\tags\item\greenbeans.json -7ec17552c75df9f34b21811459fee18ca73ac2e1 dependents\platform\tags\item\vegetables\rutabaga.json -dae27c1ad9052892720bb8f17754357fa49aaf87 dependents\platform\tags\item\fruits\elderberry.json -0f75b8282bb173f69f94ebddf0136717e7d78ab3 dependents\platform\tags\item\crops\starfruit.json -1b1b2aa52fdbcac44805ff15723c7c886bbfa351 dependents\platform\tags\item\grilled_oysters.json -718e4c407f6eeaf11471e4a7f1fb46f3d656f1ad dependents\platform\tags\item\plums.json -de15450aadeca7af8f8f9c79b31fed0a25b64c4c dependents\platform\tags\item\apricot_jams.json -7f5d3d8aa8ffa1cea21d1e5cd9da8df27d23be46 dependents\platform\tags\item\nuts\pecan.json -3d030de3930e00bb42432fe60abb372c6e85592d dependents\platform\tags\item\saplings\starfruit.json -84cd153adf0bdcc6676982d6587c5aea2822b483 dependents\platform\tags\item\blackberry_seeds.json -0ab7cf8473032fd40e9541486727b4ce5a3f4336 dependents\platform\tags\item\eton_mess.json -fefb766ee2a43731af96c743084b1b79b4a373eb dependents\platform\tags\item\eggplants.json -7c94a5b5b6b7e4b06e430798e5581675e986ce7f dependents\platform\tags\item\kiwis.json -956d1b4eb8ba26d670028a2b804122facd590048 dependents\platform\tags\item\rhubarb.json -9f010e49b63c4659831b28d6bfe23521065dadba dependents\platform\tags\item\seeds\blackberry.json -2c586e162f6873f0f05a25c7ac3e72be6638a73d dependents\platform\tags\item\coffee_seeds.json -cc05ce772baaadf7f81af633151cf9f7585ebbdb dependents\platform\tags\item\apple_saplings.json -f0f0afe306af073244ed7c9deec99f4824fffe96 dependents\platform\tags\item\blueberry_jams.json -9535d23d9f8809e600b9f8b83ea6023e89d08e10 dependents\platform\tags\item\raspberries.json -d41ef0d4c74a576d647ed83b0236b541404aac2d dependents\platform\tags\item\seeds\squash.json -96b737946e6b4cd09090cd31d98520cbdfac31d3 dependents\platform\tags\item\figs.json -814508cd657053ce6abe5c631935fa677863ea49 dependents\platform\tags\item\blueberries.json -4d2f13decb4bbc13ba60c17b3ac82087973c1ba7 dependents\platform\tags\item\saplings\plum.json -da94e63be0854615b41fba310a1e0a5e3030e179 dependents\platform\tags\item\supreme_pizzas.json -d3dd7069fcbd8ab3d3a4d73559f61b0acceec36e dependents\platform\tags\item\onion_rings.json -c4f329dfd2da7b9a090f3f83317d43a40ed1e5cc dependents\platform\tags\item\fruits\orange.json -b9adcf17c83ced269da94038920982eef7476121 dependents\platform\tags\item\seeds\raspberry.json -8e0c7415119fcc2f306219585ae75b2cd00c1714 dependents\platform\tags\item\zucchini_seeds.json -cfbe700579eb80a3e7969add71696f0ac64fa3a3 dependents\platform\tags\item\orange_saplings.json -9a3f0b9bcb4bdf3a485bffb3b407fc24f35c612f dependents\platform\tags\item\hashed_brown.json -191618f6c1df414f440b854db0e0c6d2acc7c7db dependents\platform\tags\item\seeds\onion.json -53190af55dee65c201db39ea9fc97c066387436a dependents\platform\tags\item\crabs.json -40e30add6a219b04d88a5a0654286a1dcb20855f dependents\platform\tags\item\candied_kumquats.json -7803a61697ea25322aa4097713b83eabd8ef7048 dependents\platform\tags\item\peach_jams.json -e48986eaf194285f37a4670ab12a726e2a7d1863 dependents\platform\tags\item\meads.json -55585b65091c2925ae8373d8de87513bc9809261 dependents\platform\tags\item\cinnamon_saplings.json -a0242a67a797a1c669ce86c208f9a02d75e8b2e7 dependents\platform\tags\item\saplings\apple.json -240bff4fd1301b7b33a798e6c6f390dd5d52c590 dependents\platform\tags\item\saplings\walnut.json -6a9a54c4046d877175cf88b4b8e85589cd6d4680 dependents\platform\tags\item\pork_jerkies.json -eadc30587ad275fe2db4890ecd84e9c5c5db1085 dependents\platform\tags\item\grain\oat.json -91e0e45a45820e23ae1cdbe610ba5d0a14de5d3a dependents\platform\tags\item\food_press.json -3dc1f70db66287b8bc37f75eb86940ebcd30da12 dependents\platform\tags\item\saplings\cashew.json -bac9899d6a4fb9040b52db296c98ca4f7d5608b6 dependents\platform\tags\item\fruits\fig.json -2a692785c0390148654d8d582a971c2f42b9c52e dependents\platform\tags\item\cooked_anchovies.json -debc9a79a65074cf71c749c84d476c4457a366de dependents\platform\tags\item\crops\strawberry.json -41a78ca1301790598c6c0d998106b93d5266a2b4 dependents\platform\tags\item\seeds\kale.json -b6f102ab9130f532b2c4db7ffa58e0a1f9e5c80b dependents\platform\tags\item\pizzas.json -eac83649cadbe901a653159b57ded999490027b6 dependents\platform\tags\item\asparagus_seeds.json -44ec7ec968f9d328a18d2f6d545a0c9d070e8911 dependents\platform\tags\item\cranberry_seeds.json -d8a80b98b224ab313de974a72c90c1e4ae081825 dependents\platform\tags\item\vegetables\onion.json -e3481738a00e81614857e4292f8b7230ae6ef764 dependents\platform\tags\item\crops\lime.json -24b647dbfc8303d4d52212a9e8fdad9a6ffdf61c dependents\platform\tags\item\nectarine_saplings.json -a90d46253661fb408b2f7a9e5fc1b648eecd0df4 dependents\platform\tags\item\frying_pans.json -2ead89967502deb09b7ef9158fc7b64ee6b41368 dependents\platform\tags\item\calamari.json -66d30d171a08b6420448800e1a30d10a1a141045 dependents\platform\tags\item\leek.json -d4370a0b0293ab71879e03a5544293f94253120d dependents\platform\tags\item\seeds\blackbean.json -f5d030535bd261e8e8f89421d2f3ea01da50b524 dependents\platform\tags\item\croque_monsieur.json -d130915fef84ce8bca4b71a3fbc158b1ddfad030 dependents\platform\tags\item\rhubarb_pies.json -eee76114459562352ca89086875bf3d36d1796e7 dependents\platform\tags\item\fruits\coconut.json -f7dcc9da345cca11553efee5fb8044e501b32f26 dependents\platform\tags\item\juices\tomato_juice.json -05d5a4b3dc9c6e7aad89f22425e29f7e879e3070 dependents\platform\tags\item\seeds\hops.json -9262dcde863ce5e516fa4912248e6d9e15145555 dependents\platform\tags\item\orange_juices.json -569907e45000fd3f236c2fdd41cd23babe4d19c0 dependents\platform\tags\item\hops.json -5ffc80ff3f9637d53e5593cceb1b78cbfb71dd57 dependents\platform\tags\item\pork_and_beanss.json -d69946d063e00e9bffda724e08dcdd34234b2cc6 dependents\platform\tags\item\water_bottles.json -69942480b8fe6c013e12c2df0f9d4d9e4a180acc dependents\platform\tags\item\vegetables\radish.json -95df8d78ae1e647767f7bd77bf4e06f884a2df7d dependents\platform\tags\item\saplings\avocado.json -878906fb25eb63f783363c2de22233db0b1b193c dependents\platform\tags\item\seeds\cauliflower.json -5daa1d20b4dbb89377b648190882b58775792800 dependents\platform\tags\item\tea_seeds.json -48552fa30b11944a551d28197c3fa99e269c8f9c dependents\platform\tags\item\crops\lettuce.json -74dc93905c91641475cb724e11ed2f616fc87faa dependents\platform\tags\item\leafy_salads.json -4e874ec5e1eb2994584293e99936a96adaa8b32c dependents\platform\tags\item\potatoes.json -19767fa2b1a02d04c7634470ffe62990b19dae46 dependents\platform\tags\item\glowing_calamari.json -3974ce103013955e725d81b117eda8735004b98e dependents\platform\tags\item\oatmeals.json -b616a8ab76a0f6223b8721e842386da37d0e3f51 dependents\platform\tags\item\bellpepper_seeds.json -589034efaec369cf2a760e23ae1ba8720c4496af dependents\platform\tags\item\jams\strawberry_jam.json -fbdd80aa2eb5502aa98ac917cf9eab934bd418fc dependents\platform\tags\item\banana_smoothies.json -3f151b1d641084b35db546e4b19b3383f1b93392 dependents\platform\tags\item\vegetables\soybean.json -6788eec2f7119e2f3e5bb08486348125ad9d3a6f dependents\platform\tags\item\goulashes.json -c4a27a9b65af70d9c335d9e588be27a12f6e3180 dependents\platform\tags\item\fruits\blackberry.json -7bee6c6089c555fee204cb12981d3f29e4280342 dependents\platform\tags\item\strawberries.json -42404d389521c73e39d73ea980ac89c0e760d377 dependents\platform\tags\item\cantaloupes.json -0ac18a5dfd566cf1ad2ee37f8b682217f7e26117 dependents\platform\tags\item\leek_seeds.json -8fd47d575e0041e028559f61a21475e49cbea0f2 dependents\platform\tags\item\vegetables\asparagus.json -aacf6b0e6ee6dc7ee6a03ad151f4c903848b0621 dependents\platform\tags\item\roasted_pumpkin_seeds.json -f1f0e6d21518b0f89fef1787364294b4e92ce710 dependents\platform\tags\item\vegetables\leek.json -cd93b17ecece9eff954d2bfd6ef1ca5f09333897 dependents\platform\tags\item\seeds\blueberry.json -d96b406347cef770e9aa454ff7228a4f4187cff6 dependents\platform\tags\item\scrambled_eggs.json -33c8cd68df0e4cac795aea26addcf97a4c9c3378 dependents\platform\tags\item\vegetables\tomatillo.json -5cc6b8a55424e7076316a2e2fadd9a73692b451a dependents\platform\tags\item\asparagus.json -9b8b01c7df84d16f25c83122ebf16d748edc299d dependents\platform\tags\item\grain\corn.json -4c194c9e0594fab3f3b2a7a01a854d53e88da767 dependents\platform\tags\item\vegetables\sweetpotato.json -21ae70326479cfe019f82203ab12dd691515438a dependents\platform\tags\item\fruits\cherry.json -030a1df93e85f8a639487abc7ea0f5bbc24d875a dependents\platform\tags\item\tofu_and_dumplings.json -792fce880d8c504362f118e128b9d3ca89dedd8e dependents\platform\tags\item\veggie_salads.json -92a5f460133901db70a15a3c2970f5c23092f81a dependents\platform\tags\item\trifle.json -51a1bff4bc03e8cf22b36d61137f06241a8f4942 dependents\platform\tags\item\steamed_crabs.json -b5c93399d6a75eae3ef06eb870a3d72d1e73198f dependents\platform\tags\item\fruits\nectarine.json -626fe2f58c657ffeaa498e7339530360d70d3963 dependents\platform\tags\item\tuna_sandwiches.json -0848a97f815735274533db66e0dfe6e18b7b02b8 dependents\platform\tags\item\beetroot_salads.json -192e5b2d59caa7a39f17ebbe3445de47f2041e95 dependents\platform\tags\item\crops\rhubarb.json -3189b2c9562dda17e2984fc7bf5535c6d8b3ad5e dependents\platform\tags\item\rutabagas.json -493ff8da500e5626c5615eeb1b16555433f495a0 dependents\platform\tags\item\gingers.json -a43a2ed5b93fa92a155733ab6cb374fe781e5749 dependents\platform\tags\item\crops\grape.json -16b21e329c4a342e2bb810f9d895a3e26c9c3c81 dependents\platform\tags\item\tea.json -3940b2be16b8ca6babaab1fd1963eec4091ae01f dependents\platform\tags\item\salsas.json -da5f55ad0697dc3feffb7da1dda168603358bd81 dependents\platform\tags\item\crops\blackbean.json -be64ecc9b1e3e45195a9ff10ad91434b0d2e99d6 dependents\platform\tags\item\seeds\eggplant.json -3d5c274df01581a1fa99ad62003c04373fb52082 dependents\platform\tags\item\vegetables\greenonion.json -4cda2f983b3227d33cb15832a383145d8bb08565 dependents\platform\tags\item\figgy_pudding.json -0f28dbba2c6628c9dd48a7308d355f00e344a7e4 dependents\platform\tags\item\rums.json -6396fb3de0a61ba062c14a5623a7837bded27c9c dependents\platform\tags\item\crops\greenbean.json -94a9f07b25fe6ae08ace58b03e7aee07ee328af0 dependents\platform\tags\item\vegetables\squash.json -0b8580bab6b682e61c8f0e43ae50b34bbc877e41 dependents\platform\tags\item\blackberries.json -cce62d76ccd470b972da99b24d7171625d8f1b16 dependents\platform\tags\item\cabbage.json -57e448173adfc27c63e55343603f84c8f2e986c8 dependents\platform\tags\item\radishes.json -429388975131e468aa590def9b8bc35e80c6727c dependents\platform\tags\item\saplings\apricot.json -7e23f26e9daa4e3c4400273bcf9d2324794b7ce7 dependents\platform\tags\item\artichoke_dips.json -4cd6c10aa9b085be06f5a22420a0a5c1e1c336e0 dependents\platform\tags\item\persimmons.json -5b764e5607e09d268761f539fec5d32dbe836f7c dependents\platform\tags\item\vanilla_ice_creams.json -033cad117062e7b4d53f9328834575cf2aae7b2d dependents\platform\tags\item\broccoli.json -4c194c9e0594fab3f3b2a7a01a854d53e88da767 dependents\platform\tags\item\crops\sweetpotato.json -4922b71eeddccba0a40952b482c9e8d81832e102 dependents\platform\tags\item\pineapple_seeds.json -c53ba2a0c7307be9f38c5aed94eaf56c350fc0fd dependents\platform\tags\item\saplings\orange.json -cafbd0ee13609da6f26d6a897188052ea4ecde2e dependents\platform\tags\item\apples.json -1340855ea414de7976d2a258cfdbad82a2571d0a dependents\platform\tags\item\fruits\cranberry.json -24d559111ff75bf12b7b99d362805012fd1ef251 dependents\platform\tags\item\onions.json -8f95eda1b963b78534617227195c93399fd5fe7e dependents\platform\tags\item\ginger_seeds.json -5659e425c691789d0b14aa41375c037000c979c1 dependents\platform\tags\item\tea_leaves.json -3401a6f689fcad00ed7eebd19da693879116d4c2 dependents\platform\tags\item\molasses.json -6342bb0ca63df290751b2bc4cd0cf2eb502635fe dependents\platform\tags\item\shrimp.json -c4e02774a7901a9850dc4f81caabbd37a902afd1 dependents\platform\tags\item\seeds\pineapple.json -241a0c6b3d3bf042d0e1cc4e3cbfaceed4d67d58 dependents\platform\tags\item\seeds\peanut.json -ec0a41716d133e40ef5dbdfaef3c6a7321a6acb2 dependents\platform\tags\item\kumquat_saplings.json -72f368b00f8ca160fe5be2042b7c6ef80bbe4440 dependents\platform\tags\item\banana_cream_pies.json -0253a5c771e96384c71bbeb0c4a6cc225acbe5f8 dependents\platform\tags\item\caramel.json -8617eecc3aca61587a4f51605a86402ecd4e12f4 dependents\platform\tags\item\pepperoni.json -dd1e0e2c789ceba29c3ad4392cb60099874fb57f dependents\platform\tags\item\walnuts.json -f85c3ad1010df22ab9fa56a2d6d2efb8e8f9a417 dependents\platform\tags\item\seeds\chilepepper.json -6fe0bed26e1a29f3954732988cf4de9f4956860c dependents\platform\tags\item\vegetables\yam.json -b33dde3cf95c3f821d49bc84b8c46f9fd65289e8 dependents\platform\tags\item\fruits\apple.json -2961625001b98b78be881f66c1bd2436f0f8283a dependents\platform\tags\item\fruits\almond.json -fb4f8e2df097f7ad01017cc6ee366e403477ad22 dependents\platform\tags\item\nuts.json -9bd2c01f6f5eff9b09ed5311ced17fe9a7e6dfea dependents\platform\tags\item\cooked_calamari.json -58eab97399b725a79617a8b0d04189c64beae9c1 dependents\platform\tags\item\noodles.json -cb796793167fafc4689c22f255fd844ebed353ce dependents\platform\tags\item\pepper.json -21ae70326479cfe019f82203ab12dd691515438a dependents\platform\tags\item\crops\cherry.json -6df8165869c48a8ac8aca520a49dc29a60d7e947 dependents\platform\tags\item\fried_frog_legs.json -9a4a58c552658f78b14d0d30b7d14dca1ee37ab8 dependents\platform\tags\item\saplings\pear.json -1fc9a6a71ee701630d8fdd48ad99ad9476915633 dependents\platform\tags\item\crops\eggplant.json -fd6963bce0082ca295f5f51249599cf20a59c51b dependents\platform\tags\item\seeds\soybean.json -45957a542063ec73e6bf0c81d81624843e16d8c4 dependents\platform\tags\item\pineapple_pepperoni_pizzas.json -33c8cd68df0e4cac795aea26addcf97a4c9c3378 dependents\platform\tags\item\crops\tomatillo.json -1496e0e9a0b212c04af25f62532363c4b539231c dependents\platform\tags\item\dates.json -b40e37f3ffdfe28abe875aa0e30f59d42add97dc dependents\platform\tags\item\milk_bottles.json -7b41d392bdf923b3f4be56febbda026acda28e76 dependents\platform\tags\item\trail_mixes.json -9b8b01c7df84d16f25c83122ebf16d748edc299d dependents\platform\tags\item\crops\corn.json -1f7b2dab28514f3c14556a08415a91a511f48bf9 dependents\platform\tags\item\seeds\coffee_beans.json -92353914453ef7cdb5a60c24a80998dec4c73407 dependents\platform\tags\item\sweetpotatos.json -a126ef34ba64423ff1e7b5fdb9fd36245eddbb17 dependents\platform\tags\item\beef_jerkies.json -4b464bdbc8d30f0893f9f42c84584ec4320d39cb dependents\platform\tags\item\ravioli.json -ae4ef6e3321b31e8c773c787de5c3196c49ba0f1 dependents\platform\tags\item\pecan_ice_creams.json -92b7d5cc678afd1e969d2a59848d3f56788a44e4 dependents\platform\tags\item\chicken_and_dumplings.json -5330fb58c1bd0acef94e2f84ff6543e95ff285ab dependents\platform\tags\item\seeds\celery.json -7566e81095e8201acdc4a72ec6107f9b24d1a446 dependents\platform\tags\item\seeds\rhubarb.json -71e0084552ecd8aec8780e3202d42cff286541c8 dependents\platform\tags\item\seeds\olive.json -f8059a1e2f69e5d8d458f213c130af0e0245dd3e dependents\platform\tags\item\potato_chips.json -16db37fe0f677d97176b165683604733bd42a872 dependents\platform\tags\item\juices\pineapple_juice.json -87c833692709534dafd89f59268e84c9ffc8bef6 dependents\platform\tags\item\crops\nutmeg.json -a08d314850a96bb92c36ff08c73802f34fe9b871 dependents\platform\tags\item\onion_seeds.json -84cfefbed049059fc9a1ffc8887a5a8a89687c0b dependents\platform\tags\item\yams.json -aeecbff2f37b5de58f64a2f9766288fcdbd8ef70 dependents\platform\tags\item\saplings\mango.json -3411473a1144bc0883d78c87c739d764f49e6443 dependents\platform\tags\item\fried_calamari.json -6567653d5a97b8daa235b801df35b1aac5568233 dependents\platform\tags\item\seeds\rutabaga.json -b8ddf361b69170b5774cbb26a459895f81ea6b6a dependents\platform\tags\item\frog_legs.json -9b9cb6ddcd133e0b9ce2965945a513a8e825e66f dependents\platform\tags\item\peaches.json -659ee758b18ffd77fd947af48daf678a127e1d6c dependents\platform\tags\item\limeades.json -a5dd26f231f0916c79793c89643994833f221c23 dependents\platform\tags\item\raspberry_jams.json -debc9a79a65074cf71c749c84d476c4457a366de dependents\platform\tags\item\fruits\strawberry.json -cc6aa281275f04d7cf2429e4c10bc1d121383417 dependents\platform\tags\item\pumpkin_spice_lattes.json -c520eb00d7b47e48dd722c404445218491755e9f dependents\platform\tags\item\yoghurts.json -c2fad55cf4322daa07dde48d1ee86bd799ecb501 dependents\platform\tags\item\grape_seeds.json -867c0d6601cdda6dba900a23e1345c71e61f32fe dependents\platform\tags\item\seeds\lettuce.json -ced51481c967d76c1071cbef0a6da876b2d4a8b8 dependents\platform\tags\item\saplings\grapefruit.json -68e29c55c07c1979b11e6bc381ae7f29edf2ee61 dependents\platform\tags\item\fig_saplings.json -d44680c88d689dc53f76643c86327b2f330f401a dependents\platform\tags\item\sushis.json -690f688852756ca6fdb1f30aef88870dff20d2f6 dependents\platform\tags\item\dragonfruits.json -d8a80b98b224ab313de974a72c90c1e4ae081825 dependents\platform\tags\item\crops\onion.json -c616898fbf832e20f86d1efe0f04867933e9b4ba dependents\platform\tags\item\crops\persimmon.json -d63568beb3f36a46ba23c248a83255d8e9a84687 dependents\platform\tags\item\cooked_bacon.json -d617020fa5510fb5ced27222bed081fefbe48c08 dependents\platform\tags\item\crops\cabbage.json -d52b1d1d981c20b8816664b748704a8e08712951 dependents\platform\tags\item\seeds\strawberry.json -dcd1dbc72648494f65104763870c41c3be430f35 dependents\platform\tags\item\crops\pineapple.json -bb5ef933b14fb45efd148e700d563d3fc97bc49a dependents\platform\tags\item\jams\peach_jam.json -36afb7ba3d769e9cd51c2fc56818b38e47137b6f dependents\platform\tags\item\crops\currant.json -f609d3bc280f7a299d9502d48632a7d03d16677f dependents\platform\tags\item\doughnuts.json -d4a1d7f4f4c2eceeeb3fde56eb1ef1efb94faa2d dependents\platform\tags\item\oat.json -f66c728130ab1e135f696ba0fc8c2350b9637741 dependents\platform\tags\item\peanuts.json -f0fe2214e16f3f00eea06cd0a31e3c7d7477bef9 dependents\platform\tags\item\vanilla.json -b8bc6fb87f448bcf3ca87bb9b179c0cd4a77ac22 dependents\platform\tags\item\wines.json -d617020fa5510fb5ced27222bed081fefbe48c08 dependents\platform\tags\item\vegetables\cabbage.json -7b5f4a4d2f5be126763fc33fbd3a146bbbea4b6c dependents\platform\tags\item\strawberry_seeds.json -71b8d3ffd1ecd725652b0d403f8bab9b6194afbd dependents\platform\tags\item\mango_saplings.json -6ecc1a3cbe6d57d15ec2c0565e80fc08925442c4 dependents\platform\tags\item\crops\apricot.json -5f265ec5a42f5e6b1436d7b633dbbb93f16bb97b dependents\platform\tags\item\seeds\basil.json -1088ccb933171d2dbb32723d17bc5bc8887c2704 dependents\platform\tags\item\plum_saplings.json -0ffaa32a4a695a58d44a13cc1e68bf3dbbc21236 dependents\platform\tags\item\saplings\almond.json -0fdd5701d1659ed45c5b0b93f206a10a4a21c436 dependents\platform\tags\item\cashew_chickens.json -69942480b8fe6c013e12c2df0f9d4d9e4a180acc dependents\platform\tags\item\crops\radish.json -f07d9141a171bc6dc19736e3ee44511a60ebfcc7 dependents\platform\tags\item\fruits\peach.json -ad8b8a62a69fdd26d1f4dc94cfe5ad1403c6aad0 dependents\platform\tags\item\seeds\kiwi.json -d792bdfa7bf8b66be76d3c4b13c0a2670dac0407 dependents\platform\tags\item\seeds\spinach.json -7ec17552c75df9f34b21811459fee18ca73ac2e1 dependents\platform\tags\item\crops\rutabaga.json -57ac70bdd101d961eaf82b20293a7e535ee5ef80 dependents\platform\tags\item\crops.json -e20238c17b1b67a9b6d87383e7e8a3e73085c70d dependents\platform\tags\item\seeds\saguaro.json -88aeba3625c2bd0a3fe806b500a8396c11404496 dependents\platform\tags\item\limes.json -a7d508f623e9908904e190b698ed2c84154d9697 dependents\platform\tags\item\crab_legs.json -e84332b64665dca326a3919cd78bb3cb7e5b98a2 dependents\platform\tags\item\crops\date.json -f5d822a107dda862bd12528b6e08c682f075ae3a dependents\platform\tags\item\barley_seeds.json -a1ad0d7cb31b2a4efb8e87eff0fd31ed84d3fc37 dependents\platform\tags\item\cinnamon.json -b320afc85226f22cef7ea6f468b347827255666c dependents\platform\tags\item\corn.json -8f62ebb45840b7fe6a6b65e556c898012d59fdf0 dependents\platform\tags\item\seeds\asparagus.json -13b6b33477932bec7a4b1616b71047e3db9cfad8 dependents\platform\tags\item\crops\blueberry.json -e84332b64665dca326a3919cd78bb3cb7e5b98a2 dependents\platform\tags\item\fruits\date.json -a925d8f4d066e7c74a7cc9af4514162bfa11c5a3 dependents\platform\tags\item\cherry_saplings.json -f368f906ab24e6547508e4ae970961454bfcca77 dependents\platform\tags\item\blackbeans.json -90d1a5c5d73b9bb24db87f913a5f03d04de9521d dependents\platform\tags\item\crops\vanilla.json -b143d248cb4665656650d946a3f6b6bcbc8f9d30 dependents\platform\tags\item\lemon_saplings.json -4f28f6cd863f8f12e00898adc22d6790e0331aa9 dependents\platform\tags\item\elderberry_seeds.json -ab87e0802bf449e7aab946faec331a8e5989b5a1 dependents\platform\tags\item\turmeric.json -e02b7199b4471d96aa69fce5f6d93c3c02849b75 dependents\platform\tags\item\cherry_jams.json -ed12affdd24117212238730f55b562ffdf8a0c88 dependents\platform\tags\item\steamed_rices.json -d2b224f7f135a7b52792a7c4473c7b55a1555a88 dependents\platform\tags\item\macaron.json -855bae9f222b161731d20cbf0a811fbea9318bfe dependents\platform\tags\item\celery.json -aacccce774113b9ff53c7f42cdcb889d90ddebe2 dependents\platform\tags\item\pumpkin_bars.json -be02b3af93122ad0bdf48a7865b5bd463315f6d0 dependents\platform\tags\item\soybean_seeds.json -1ff4dfcfb69f2d4a352f2506e1cc68ebd1d474ee dependents\platform\tags\item\nutty_cookies.json -2b245266e496d4d401a398cc71fb08b4577b8351 dependents\platform\tags\item\spinach.json -669fa321971d9c4e0b89040c85c17f8f930fa9e9 dependents\platform\tags\item\peanut_butter_and_jam.json -722d687d0421648139fbe8aec992dfb17007e437 dependents\platform\tags\item\coffee_beans.json -b411933909da50d7deb907f4144091facd3aca57 dependents\platform\tags\item\crops\basil.json -68fbbbfd2605b18263731ca52c0ae96ade7bb09f dependents\platform\tags\item\juices.json -19f0bfab2be53eb0927b228b125d0bb395d27255 dependents\platform\tags\item\crops\pepper.json -3458b7c78932043c5f0885eeace324fd0f885781 dependents\platform\tags\item\fruits\pear.json -48552fa30b11944a551d28197c3fa99e269c8f9c dependents\platform\tags\item\vegetables\lettuce.json -f0b7bbccc87ec6b7ce165437ad340ce22908419d dependents\platform\tags\item\cantaloupe_seeds.json -a173982045bb96588bd25befeb167609e5f3a846 dependents\platform\tags\item\coconuts.json -b33dde3cf95c3f821d49bc84b8c46f9fd65289e8 dependents\platform\tags\item\crops\apple.json -3f151b1d641084b35db546e4b19b3383f1b93392 dependents\platform\tags\item\crops\soybean.json -f347382cc1522dfb5a7dcb8d2ddd57d0559f117d dependents\platform\tags\item\starfruits.json -c1240f3b4ef963ba21b663d9865edcfd62ad5257 dependents\platform\tags\item\mustard_seeds.json -0743c00c0adff01e52272f40f79f1ae02e3424ff dependents\platform\tags\item\toast_with_jam.json -cd531a6208eae92d90f5ff2ca68ec6e614ddee12 dependents\platform\tags\item\coconut_saplings.json -89402635e52827b4405458d7a494deb8e5a39103 dependents\platform\tags\item\fruits\lemon.json -ce3ef0d73c47a6e219668cd965ba6823cc63b899 dependents\platform\tags\item\tomato_juices.json -f1f0e6d21518b0f89fef1787364294b4e92ce710 dependents\platform\tags\item\crops\leek.json -efdd859a87653db1644f22fa3b97f579a3f2a2de dependents\platform\tags\item\seeds\cranberry.json -3d5c274df01581a1fa99ad62003c04373fb52082 dependents\platform\tags\item\crops\greenonion.json -4d56d80c0a54e2bb08c00f5348350e4b449393e5 dependents\platform\tags\item\hops_seeds.json -b0e2206f1afbb40479b6ebb9fe3d03744c516ae0 dependents\platform\tags\item\bellpeppers.json -51355d76a8ddd2b11c29d04ce744e575d8896889 dependents\platform\tags\item\crops\mango.json -6ad8250b980385329113ef551c65721fe6ac3d95 dependents\platform\tags\item\zucchini.json -5735826507869cd6502cacea381cbfd804cbfd59 dependents\platform\tags\item\seeds\tea_leaves.json -478f946db86aa227d5a4bdb5296d863e5d27052c dependents\platform\tags\item\roasted_sunflower_seeds.json -18a1c359deae0dc16874a8460f335525d01bba18 dependents\platform\tags\item\seeds\mustard.json -cb235207c74e85faeb7cf932249d4146df40b537 dependents\platform\tags\item\dauphine_potatoes.json -89ad80c599505d8f4ea7b004867b998386554e5e dependents\platform\tags\item\seeds\bellpepper.json -5c6846bb4e0bf1d8a78a3dc237ec0b023e325ffc dependents\platform\tags\item\fruits\kiwi.json -37af0bd5c0862400ca0146cdd0125f7c5f2001bf dependents\platform\tags\item\dragonfruit_saplings.json -191b7bbf5bb8726dbea5ab1e972259807d42bdd9 dependents\platform\tags\item\baked_beans.json -d735faaec89690800935696a9c19271920b79563 dependents\platform\tags\item\seeds\cucumber.json -1b7060229cadc47b992191de3132b158fbcbdd86 dependents\platform\tags\item\peach_saplings.json -1048e069bff28bc8fa4e41229881758c5d2fe7e6 dependents\platform\tags\item\juices\apple_juice.json -fd27c8643efe4bb965123f10c2d39d0f025c8298 dependents\platform\tags\item\chicken_and_rice.json -28dfd044d064b07279c0b81f60fc18b2316c4b2e dependents\platform\tags\item\crops\walnut.json -85f9048bdb81253fa07b76884e4447edf417d46e dependents\platform\tags\item\seeds.json -8906b1b1636d8933c4b2add03ae4178ac363688e dependents\platform\tags\item\seeds\elderberry.json -d9d16ec22b978816f5608cfa7814fb56b053309c dependents\platform\tags\item\vegetables\garlic.json -255d0956958bbcbd79cd75e28c38ad70cc411630 dependents\platform\tags\item\chicken_and_noodles.json -543dbd7a1313bebc96a10c13bb9a2fd48ca4b213 dependents\platform\tags\item\celery_seeds.json -208b8be4198e085d6118b0886b32cb92c0410d8d dependents\platform\tags\item\cheeseburgers.json -c238b1e20bf92b88a169c49eea905fa7d82000cb dependents\platform\tags\item\banana_saplings.json -f89b542cacb794cadfa43b9174948c4d71645a16 dependents\platform\tags\item\croque_madame.json -c86f0e3a0ba92406b0728741fc8b9f33a2988b4d dependents\platform\tags\item\crops\kale.json -1a19209aa3ca7c4242789c0237a552a4113fdc84 dependents\platform\tags\item\oat_seeds.json -c8256e936cd7ad226edcc2ac82abb01c5ca0d440 dependents\platform\tags\item\crops\ginger.json -09df0623aa2381fa549a9679ab7a6452431bec14 dependents\platform\tags\item\fruits\saguaro.json -e7e006672b7057804d1e13aa0a7d751377d07a47 dependents\platform\tags\item\fruits\banana.json -43c79ed45068f6f589f92fdb813b627c04b50c6f dependents\platform\tags\item\vegetables\tomato.json -e08abdcdf4dfec4a952b01023ccc55f68c227bea dependents\platform\tags\item\crops\tea_leaves.json -ecf6f455aba34b23e9f6d87414e4e80a7a980f40 dependents\platform\tags\item\pepper_seeds.json -b354ada6e3ae323bcdb543a14904b69f93b6e814 dependents\platform\tags\item\roe.json -54357591ba8b652ddfbb20a458251937dc8e7a9d dependents\platform\tags\item\fruits\olive.json -21da9e594410d9d9d5c6b8fbad2d0f71d411f2d8 dependents\platform\tags\item\seeds\oat.json -615d2634871be53c0ce6fcb74c602e31fbe0f84e dependents\platform\tags\item\nectarines.json -35d5b5e3b6e3f3582c7ec194d6b4b6ea0a36a84b dependents\platform\tags\item\crops\peanut.json -c1c74f558181f1d3472fcef210c26f885b09a9f2 dependents\platform\tags\item\pineapple_juices.json -280acd94690c10cfe6c1a0429e856c20146e9089 dependents\platform\tags\item\spinach_seeds.json -fb3f02d9fedd615a240ef36427ff54bebd559593 dependents\platform\tags\item\saplings\coconut.json -459c8cedbacba387741b572c689afdcff4a7e425 dependents\platform\tags\item\candied_nuts.json -6e21b8880936a33ca71c9b06fe7c54971ae1b077 dependents\platform\tags\item\crops\cinnamon.json -d04650431b159b2332103052ccc3c80b863c7f21 dependents\platform\tags\item\broccoli_seeds.json -9e48f2f90b200fd049b818549b392c2a778c6499 dependents\platform\tags\item\basil.json -5e5e3cd65830b2dd67e8e7138d697bd25d5d7a9e dependents\platform\tags\item\crops\hops.json -e2d1ea5776babf2e340d9cd3acc6d05783249395 dependents\platform\tags\item\seeds\turmeric.json -1f13ecb6e2d78d78b6dd6ca0525dab197aa30104 dependents\platform\tags\item\turmeric_seeds.json -1350710fe2592d496106e9aadfadda7878ca5789 dependents\platform\tags\item\popcorn.json -254afcb112e48e1281e8aeddf8d904afa4d17032 dependents\platform\tags\item\crops\chile_pepper.json -d13ac6c21d73f620b44a23b65bdf818436af7f81 dependents\platform\tags\item\apricots.json -8cb24ee4ef9ac284f6f325bf83e2e586b20779fb dependents\platform\tags\item\borscht.json -e3dc0cf5ae1ee145551919f127aad4557f5beea9 dependents\platform\tags\item\crops\spinach.json -0018fc1260d57565244ab74db94162fe10962eab dependents\platform\tags\item\crops\barley.json -eb0b5ae63612cacc60bfd2f5a65715a429757274 dependents\platform\tags\item\seeds\greenonion.json -018ca7648abc208af4de8e8db034050ce6d4505b dependents\platform\tags\item\jams.json -266db0c94dad0170c8a049ba52657c927df17627 dependents\platform\tags\item\crops\cucumber.json -b8e560039737e8d1f0729fb0604ce2549dd73dd2 dependents\platform\tags\item\lettuce.json -a43a2ed5b93fa92a155733ab6cb374fe781e5749 dependents\platform\tags\item\fruits\grape.json -330d14792257419ceef973f49775f45e52885228 dependents\platform\tags\item\the_big_breakfast.json -5b81f0d66101a2febd4d2e932776e5a5c7899a9a dependents\platform\tags\item\seeds\pepper.json -d4576795c5d568f9b0fca17119cf7abfa08d5acf dependents\platform\tags\item\barley.json -76712cfd997287d5639df42d58a2807086ba29e6 dependents\platform\tags\item\raspberry_seeds.json -69610f009e18923c0ac8df55aa7670c73d327422 dependents\platform\tags\item\seeds\tomatillo.json -af7011d11c97c51265326957e5f8f4d8e73578d2 dependents\platform\tags\item\candy_corns.json -cf43ca71428d733d4b82e18fa1c138f61cb2aab5 dependents\platform\tags\item\cucumber_seeds.json -12a507432af48449e259ea557be4e64684abfa11 dependents\platform\tags\item\cooked_tuna.json -8fd47d575e0041e028559f61a21475e49cbea0f2 dependents\platform\tags\item\crops\asparagus.json -ff1a6c8b0932cdd3d0fd5664994ba75afe170e31 dependents\platform\tags\item\seeds\rice.json -5c45cf617149a603f63462333f0adb18f24af414 dependents\platform\tags\item\coffees.json -05c22472563ea4dc742666a4522fc094f5226c3a dependents\platform\tags\item\seeds\vanilla.json -aefd69655426e42bdf28b8a03b5c1a6a8fce8b09 dependents\platform\tags\item\olive_seeds.json -53f0e6c4560257fbd4725b4a8a5319026a64b8d2 dependents\platform\tags\item\sweetpotato_seeds.json -ea1daadf4fd8fa00902d532d5ef1a87c9ad2e39d dependents\platform\tags\item\tuna.json -d8615fd473e561958acc7e13f2f86e1d54e582f6 dependents\platform\tags\item\cabbage_rolls.json -6396fb3de0a61ba062c14a5623a7837bded27c9c dependents\platform\tags\item\vegetables\greenbean.json -99813dbf8e06fa9e65822f8c532a3b7b067db21b dependents\platform\tags\item\olive_oils.json -bc3b26893342f8d31296a8c10d39b0f2b35a2d83 dependents\platform\tags\item\rhubarb_seeds.json -c75ea00a5df5d07beea1898174933ef9303a7b9a dependents\platform\tags\item\caesar_salads.json -7f5d3d8aa8ffa1cea21d1e5cd9da8df27d23be46 dependents\platform\tags\item\fruits\pecan.json -c86f0e3a0ba92406b0728741fc8b9f33a2988b4d dependents\platform\tags\item\vegetables\kale.json -f831ac307bbbdffe630bf1040172a2a6f2bb6ac9 dependents\platform\tags\item\cinnamon_rolls.json -95ee6c1fd80c32bf3ab12ab0f7473812b20d92a1 dependents\platform\tags\item\nutmeg_saplings.json -e533e3baa5b9b875229728b551056d5b6712c3c4 dependents\platform\tags\item\fruits\dragonfruit.json -e3dc0cf5ae1ee145551919f127aad4557f5beea9 dependents\platform\tags\item\vegetables\spinach.json -6902ea0c47e40773f1fc2ac5a3a3a978ff073ff1 dependents\platform\tags\item\soy_sauces.json -1d8c87af883189daa6b3a370569790eb4e42bbd7 dependents\platform\tags\item\nougats.json -2414c33914c07f88d86f23a1d409f63f25cafbc5 dependents\platform\tags\item\cooked_shrimp.json -26f4f774e4947376b786069e9a6df07e4a8c3de8 dependents\platform\tags\item\banana_nut_breads.json -d4b5f200768370be3635c45d0ff117e3ce418be0 dependents\platform\tags\item\quiche.json -849938d581f513656b9d42fb2349c55d3064d589 dependents\platform\tags\item\ground_pork.json -2ef0aad31246902d69c07e4ab25bc9766164cf09 dependents\platform\tags\item\fruits\raspberry.json -eca13a032dcfd8de7a07805c166c36804643062d dependents\platform\tags\item\pecan_saplings.json -f5662cfeb6e1792aa4906f826a905f5e7fa34d5a dependents\platform\tags\item\fruits.json -c8256e936cd7ad226edcc2ac82abb01c5ca0d440 dependents\platform\tags\item\vegetables\ginger.json -942a575a32cce240904b717737485c1bee9208c0 dependents\platform\tags\item\almond_saplings.json -996021e618191b056dec77e194d9e50fc425f667 dependents\platform\tags\item\chocolate_milkshakes.json -3d2578ce8062173ae45799b05f361f382e5b2779 dependents\platform\tags\item\soy_milks.json -4971058a1f437c347142c97325c27c7238428052 dependents\platform\tags\item\cheese_cakes.json -dbec46606f20a59b558aecd5f9c69169d9ac649e dependents\platform\tags\item\starfruit_saplings.json -fec8f626f7539386af8797e59afe8450e48b4434 dependents\platform\tags\item\crops\coffee_beans.json -542e138e9d8e7a17b59efde679522d5ec0bb11f0 dependents\platform\tags\item\crops\turmeric.json -43c79ed45068f6f589f92fdb813b627c04b50c6f dependents\platform\tags\item\crops\tomato.json -063516f1a23c35ff9091c735e39fae07b41d3b2a dependents\platform\tags\item\saplings\cinnamon.json -6ecc1a3cbe6d57d15ec2c0565e80fc08925442c4 dependents\platform\tags\item\fruits\apricot.json -36442bbd63b9e27cd4b8a558cc4ce8c1e863d91c dependents\platform\tags\item\chocolates.json -af18dc096d5db4e5d5bc11db580d79df22824969 dependents\platform\tags\item\vegetables\broccoli.json -0119f9478425e828c32a31324d7d58162c0ca776 dependents\platform\tags\item\avocados.json -e3481738a00e81614857e4292f8b7230ae6ef764 dependents\platform\tags\item\fruits\lime.json -ba3518cba56f2f8f5a542362da815b344d976944 dependents\platform\tags\item\apricot_saplings.json -d37114d48c3bb55d1fed22450a001b0b95dbcadc dependents\platform\tags\item\saplings\cherry.json -9e5c4daa378ebd26722077b3d4e85ae46b5a4200 dependents\platform\tags\item\vegetables\zucchini.json -440397da9abaf1e3e7beb2c595d7540f2df05950 dependents\platform\tags\item\seeds\cabbage.json -5c04811b7064787cc05e93db266e09b6500fb2bc dependents\platform\tags\item\apple_juices.json -9b63d7c6c131b3a9eaa910db6614c9494876aa0a dependents\platform\tags\item\saguaro_juices.json -7fe0e2ea081f16566ae6c97adcceb1910c43a24e dependents\platform\tags\item\baked_crepes.json -aae048ad001cdfa06b1fdeb127c6f030f35d4777 dependents\platform\tags\item\seeds\radish.json -bd5dbec2c17888e85497067ed11820cc7f52e372 dependents\platform\tags\item\buttered_toasts.json -9da560e547f318a4dba070726046d12b75d17cc7 dependents\platform\tags\item\avocado_saplings.json -613db6ff217d932f1e44ddc50480ebcec9841224 dependents\platform\tags\item\crops\avocado.json -9c657ced8846b23adedb23e04e26bc3e42d82096 dependents\platform\tags\item\tomatillo_seeds.json -690ff889741f997c18dd3f9c45594498006929d3 dependents\platform\tags\item\cabbage_seeds.json -e1113e2b5252f6fc60bc01cae8a6a640ecc9e6d2 dependents\platform\tags\item\seeds\turnip.json -3a72ea9f61dbb5c9cf1d2185dd9e066cd3a4e574 dependents\platform\tags\item\saplings\nutmeg.json -c8fb10ddcd9080b8c59ac665a59b9b3adcecb8a1 dependents\platform\tags\item\lime_saplings.json -dab0a52e904ce70e73547d33531ef818a2bef9bc dependents\platform\tags\item\crops\cantaloupe.json -f96d2e1ab1e1d6caa7663c829d082da94f09c5ce dependents\platform\tags\item\crops\grapefruit.json -f07cdba12d7a83e74c915cf2de7f27aff1cc3b8d dependents\platform\tags\item\corn_breads.json -26e08504bf6e2d073f107b821e51161d049e6398 dependents\platform\tags\item\beef_wellington.json -36afb7ba3d769e9cd51c2fc56818b38e47137b6f dependents\platform\tags\item\fruits\currant.json -d2a6f051aa0ef0f279124cf95abecc1f513f144c dependents\platform\tags\item\rice.json -cd23f4f8caa8f9863bfc90c8cedd106d123dc0ab dependents\platform\tags\item\kale_smoothies.json -bc0139c4912aef1722bcfe6a75838f7d089a0cb8 dependents\platform\tags\item\juices\melon_juice.json -208c537edb6f75409d7d6f30070af5779f118b5b dependents\platform\tags\item\seeds\barley.json -cfba3af70d3381e56bbf7f104a08f860830b2916 dependents\platform\tags\item\saplings\date.json -7958bc67d6ad914d4a0caeea88521ce64692db32 dependents\platform\tags\item\cheese_pizzas.json -49d252bab6532dcfe010d57d209c6e0e5b69b49f dependents\platform\tags\item\blts.json -f6e603134e7eb993eebe689fc3e2e69d51a08ba5 dependents\platform\tags\item\egg_rolls.json -1340855ea414de7976d2a258cfdbad82a2571d0a dependents\platform\tags\item\crops\cranberry.json -b5c93399d6a75eae3ef06eb870a3d72d1e73198f dependents\platform\tags\item\crops\nectarine.json -e533e3baa5b9b875229728b551056d5b6712c3c4 dependents\platform\tags\item\crops\dragonfruit.json -fd734af59d946f606ce95869c1bc32705933fb59 dependents\platform\tags\item\flour.json -d7d97907c7851ecf96b59c14f5986ef0a092ec09 dependents\platform\tags\item\knives.json -0f6ad8058401e73f4b8d245aaaa472e542aff921 dependents\platform\tags\item\protein_bars.json -a10f3dd2a049d39540e52eaa759fe9d5f60f595e dependents\platform\tags\item\rum_raisin_ice_creams.json -28dfd044d064b07279c0b81f60fc18b2316c4b2e dependents\platform\tags\item\nuts\walnut.json -5f468dbb96ffc5922462a5f9adeb55b6ac0c02ed dependents\platform\tags\item\juices\orange_juice.json -f07d9141a171bc6dc19736e3ee44511a60ebfcc7 dependents\platform\tags\item\crops\peach.json -bf31468a79956c18aa064c0689e681b23acfdb24 dependents\platform\tags\item\turnips.json -51355d76a8ddd2b11c29d04ce744e575d8896889 dependents\platform\tags\item\fruits\mango.json -9fcdf543249e374f4656606e93193044e7755fdc dependents\platform\tags\item\scones.json -2c8a170ef70a6287e602f2352dc9178deca68730 dependents\platform\tags\item\shepherds_pie.json -996cfda32a38d4a70d2d54ad21216bf98df76756 dependents\platform\tags\item\seeds\grape.json -71d78cd95303d4f843fd6dff67efdc6dadd853fe dependents\platform\tags\item\kale.json -b5bdb4d1e1c526e3d49c086c56c010ca8d340d50 dependents\platform\tags\item\cheeses.json -c389b53eeb57f65c4477cf100d577aa6c617c3d2 dependents\platform\tags\item\treacle_tarts.json -d9d16ec22b978816f5608cfa7814fb56b053309c dependents\platform\tags\item\crops\garlic.json -00a4a6115ae20d426ff0f9fb5bf551d6120fd4f4 dependents\platform\tags\item\crops\bellpepper.json -2961625001b98b78be881f66c1bd2436f0f8283a dependents\platform\tags\item\crops\almond.json -b0b4c552a762b72ed20b636d7e5bc2574f81e2f6 dependents\platform\tags\item\vegetables\artichoke.json -a5f1aa44b645281048dff358981ec2570b8828e9 dependents\platform\tags\item\cooking_pots.json -539202a307d84659f5367625398ae2fea5435631 dependents\platform\tags\item\cranberries.json -dae27c1ad9052892720bb8f17754357fa49aaf87 dependents\platform\tags\item\crops\elderberry.json -c80c8408de431eb5f44b900b1ae8d389f40f5b29 dependents\platform\tags\item\jams\grape_jam.json -7ec376f8e7c46dd53f5f1acde1240c2cd7e4fd1b dependents\platform\tags\item\sea_lettuce.json -e1c52c9d6cf8f951deacc47eaa48d36e0786dd03 dependents\platform\tags\item\oranges.json -bf1ea5b6a3fcc15ebc576f0c3d78594a54231fc7 dependents\platform\tags\item\blueberry_seeds.json -a272e0d8ee8886b926466f5b636dfcea35abbd4d dependents\platform\tags\item\grapes.json -06aa4222b4be32bda63059c9ae436298b295be7f dependents\platform\tags\item\clams.json -9225d3c9d98a3435d78bf0967f81ed906a52bccc dependents\platform\tags\item\squash_seeds.json -f88f16e8d2cceb8bfae32fbc81d0d7b68b24a8d9 dependents\platform\tags\item\grilled_cheeses.json -d9bf7682d21d40195a7421a726157cdf9e38fea6 dependents\platform\tags\item\greenonions.json -578ee7627293d3b9d27f8daa821df1d714cd40be dependents\platform\tags\item\crops\cashew.json -89402635e52827b4405458d7a494deb8e5a39103 dependents\platform\tags\item\crops\lemon.json -85cc15d91fcb3895be4986442ca67b03b07b53c2 dependents\platform\tags\item\yam_jam.json -b5041592e23126d0e8dcfbe355fcd218e01d0c85 dependents\platform\tags\item\cranberry_juices.json -0f90b3705e659f6a5b2678b72b78beced9ec7310 dependents\platform\tags\item\grain\rice.json -6ac30df9d439a39c52120dcc3bf215f2bd13ae80 dependents\platform\tags\item\juices\saguaro_juice.json -00a4a6115ae20d426ff0f9fb5bf551d6120fd4f4 dependents\platform\tags\item\fruits\bellpepper.json -4d0ae77642ad886fe6ce325faef752efbb016ccd dependents\platform\tags\item\olives.json -2ef0aad31246902d69c07e4ab25bc9766164cf09 dependents\platform\tags\item\crops\raspberry.json -6fe0bed26e1a29f3954732988cf4de9f4956860c dependents\platform\tags\item\crops\yam.json -eadc30587ad275fe2db4890ecd84e9c5c5db1085 dependents\platform\tags\item\crops\oat.json -32bce17edf1885b820bfbcb7df9d7d4196613d5e dependents\platform\tags\item\cauliflower.json -debf2099d676a7590461553a2e17578c3bf1f099 dependents\platform\tags\item\cucumber_salads.json -6e9a7a5179f46910cd6d2c7e386d36f8fa01d4cc dependents\platform\tags\item\saplings\pecan.json -bac9899d6a4fb9040b52db296c98ca4f7d5608b6 dependents\platform\tags\item\crops\fig.json -164b176b1836fd60a11b9dcfa61f0f0c7dfdb38c dependents\platform\tags\item\melon_juices.json -a1e3a3f4e7cce93543f0cf3130b05d3a49ebf455 dependents\platform\tags\item\seeds\ginger.json -a35c5bdbb42b02c5cbc42973cc5f6ee8a0bf5204 dependents\platform\tags\item\soybeans.json -9f5fa3b35c0b1db0526852e94bb31137cff5f7a0 dependents\platform\tags\item\crops\celery.json -8f52720ab400730a4c74af9a5f8d5a75fcbc5226 dependents\platform\tags\item\pecans.json -82b42b6cb85d7e664985fbdb864d8f30950620e3 dependents\platform\tags\item\grapefruits.json -b0b4c552a762b72ed20b636d7e5bc2574f81e2f6 dependents\platform\tags\item\crops\artichoke.json -677ce8af85aab6e414feeeba5cff48e7b060a8e0 dependents\platform\tags\item\snicker_doodles.json -fcc9646940577d401f7f48aa5b6ab7d12278a642 dependents\platform\tags\item\milks.json -21e265c40227ad0ee040de04ce985b6941fc10c4 dependents\platform\tags\item\grape_jams.json -b0610552169eff5769c841d7ad4beeeaaed58306 dependents\platform\tags\item\saplings.json -266db0c94dad0170c8a049ba52657c927df17627 dependents\platform\tags\item\vegetables\cucumber.json -7749b2faa1f1c633473da2784c64770dda88526b dependents\platform\tags\item\brownies.json -479c59a54b6cb467720d3fe9f884c72be1bac35d dependents\platform\tags\item\saplings\lemon.json -0708e9f4fa371a5ef89c2880ee3b12f2fb478ac3 dependents\platform\tags\item\persimmon_saplings.json -c9703dc8e1e6d8b4a769d4be743bf8c7b267e30e dependents\platform\tags\item\mango_ice_creams.json -505f495875bfddd06a30bca1054bf8ddce3b0451 dependents\platform\tags\item\strawberry_smoothies.json -b313b5a1d19e4e2ba6429c5c7373d4432c875b3f dependents\platform\tags\item\apple_pies.json -9e5c4daa378ebd26722077b3d4e85ae46b5a4200 dependents\platform\tags\item\crops\zucchini.json -2b5db6edb17b55e8bd1a260e3a715ed12688ab5b dependents\platform\tags\item\kale_chips.json -803a214b428fbc03c36b2e233d8da4e3612f50a7 dependents\platform\tags\item\cucumbers.json -271326180929ac4802a3399661a7bb606d4bb464 dependents\platform\tags\item\date_saplings.json -613db6ff217d932f1e44ddc50480ebcec9841224 dependents\platform\tags\item\fruits\avocado.json -b1d209a4682145d98a8b7bc7140a874a5c14a15e dependents\platform\tags\item\lemons.json -11ff0fd94f4b538b893b39644b4c5d3feae4562b dependents\platform\tags\item\grain.json -415b7a73ced88adcb1e47c8a5a816b4d64ffb93c dependents\platform\tags\item\jams\raspberry_jam.json -c509e28de387c50a00779626fe768e6a0a62f251 dependents\platform\tags\item\seeds\sweetpotato.json -b624d5d31f2e3f72122613ebd4957b6f4a2bd1b6 dependents\platform\tags\item\jams\cherry_jam.json -167c58d032ed333901c6135db4bdd6f0fa0b8e79 dependents\platform\tags\item\seeds\garlic.json -3e0a86ed7da862882774ee98523fc63906834197 dependents\platform\tags\item\turnip_seeds.json -3af30228213f9af3f8f6bc0682b429709674ca5d dependents\platform\tags\item\grapefruit_saplings.json -9a22dd54752de31c8f171e7a8fe4a9601765bf42 dependents\platform\tags\item\sausages.json -2b46c50abb9c0916b2f72298613b6a0f1fdbdbbe dependents\platform\tags\item\cashew_saplings.json -dab0a52e904ce70e73547d33531ef818a2bef9bc dependents\platform\tags\item\fruits\cantaloupe.json -299d69a957c24bdd647a7f66e62e140cec9b3ab0 dependents\platform\tags\item\steamed_clams.json -c1bf231e5d838dd4bd162c4c96f4e4d433f07a8a dependents\platform\tags\item\seeds\artichoke.json -25bcbe9d5d755fdd11e7b4ec9568cf66fec1d09e dependents\platform\tags\item\bananas.json -a7ae64afe98796b227bb0734e661a63c044ceb97 dependents\platform\tags\item\crops\cauliflower.json -743ebe171f3252aad53e88bbb46484a252699759 dependents\platform\tags\item\lemon_chickens.json -daa5cc589cee74fc358d494e6f5051d5c18185d8 dependents\platform\tags\item\raisin_oatmeal_cookies.json -fd2aaf2bd7ba78120e063abdbb47cb9ebc692125 dependents\platform\tags\item\kale_seeds.json -787826eb3743e01f95fd8647e2a7671559f31d50 dependents\platform\tags\item\fruits\plum.json -e789394027445f8a8b8b33c8419db57c0eecbb87 dependents\platform\tags\item\artichoke_seeds.json -1f5ef16a5d6ff17a1c4ba327056375e32aae2c2f dependents\platform\tags\item\leek_soups.json -e070f65ae7da11b7aca5dee7a131479f7b5f1989 dependents\platform\tags\item\currant_seeds.json -b2c3dc263218b91df44a934b3b141c7420cb573f dependents\platform\tags\item\sweet_potato_friess.json -71084298ad052959d331827c396e012e3661a823 dependents\platform\tags\item\saplings\peach.json -2d5233b81d0028afe878b64ae8b6c5b22683fea6 dependents\platform\tags\item\strawberry_jams.json -6b1a678bea7fd25c5d06f1e772cad811c75e0136 dependents\platform\tags\item\roasted_nuts.json -a7ae64afe98796b227bb0734e661a63c044ceb97 dependents\platform\tags\item\vegetables\cauliflower.json -93e033ebedf1d4bbe479cfb4cbdbaf1c0287cdda dependents\platform\tags\item\saplings\banana.json -af18dc096d5db4e5d5bc11db580d79df22824969 dependents\platform\tags\item\crops\broccoli.json -c7d145c785db360d6845c19381dbb7e8fec8c7ec dependents\platform\tags\item\juices\cranberry_juice.json -4966cc447dd9543990b2150604f672705ac60eb4 dependents\platform\tags\item\saucy_chips.json -f840ccbded8bb23de00063a80692540db650bb2a dependents\platform\tags\item\kumquats.json -0a43bf4b0251fd442a57431d81fe63df871e5dbf dependents\platform\tags\item\butters.json -dcd1dbc72648494f65104763870c41c3be430f35 dependents\platform\tags\item\fruits\pineapple.json -70a3fc5b95a55a33144ee2a2fd46e9b3d34d4880 dependents\platform\tags\item\seeds\leek.json -efb7ae5b803e10eefc96e5c8bcbac852be63ded2 dependents\platform\tags\item\pumpkin_soups.json -aae4f564f7c119aff8126b512ed417dad79a347a dependents\platform\tags\item\fruits\kumquat.json -31d181ba9e09599baf8d23991400747a1b46a0df dependents\platform\tags\item\vegetables\turnip.json -4ce5ad8cdd5def327e5727e0381e05d806a728a8 dependents\platform\tags\item\seeds\zucchini.json -ff3957263702610aae00a0dfb140b61b20d6bdc8 dependents\platform\tags\item\fruit_smoothies.json -8295fb8049fbe9f13b3b59bf363ac88782e96d09 dependents\platform\tags\item\chile_peppers.json -ba36f59482d26ba29c757ba9bc1f0b17512f10f3 dependents\platform\tags\item\cashews.json -787826eb3743e01f95fd8647e2a7671559f31d50 dependents\platform\tags\item\crops\plum.json -d8717f1ee2958cdc8237823947751a8ee0fa3163 dependents\platform\tags\item\nutmegs.json -54357591ba8b652ddfbb20a458251937dc8e7a9d dependents\platform\tags\item\crops\olive.json -e668e3831408004347c191d58ebbe9889cf2d530 dependents\platform\tags\item\spaghetti_squashs.json -ad9403b6b6888659908c356ceb03e237a65c262e dependents\platform\tags\item\jams\elderberry_jam.json -1fb1ec1a8d055e62ef32950016dadfe5ea7fbb8f dependents\platform\tags\item\doughs.json -1fc9a6a71ee701630d8fdd48ad99ad9476915633 dependents\platform\tags\item\vegetables\eggplant.json -5863ff260ad5481e2b4b20ae2c2777f9f847b34d dependents\platform\tags\item\vegetables\mustard.json -c4f329dfd2da7b9a090f3f83317d43a40ed1e5cc dependents\platform\tags\item\crops\orange.json -d80585cc6440fcf434c458672fb548284c4a9600 dependents\platform\tags\item\seeds\cantaloupe.json -61e4bb7062129162e257c33f0d10f7cc4cd7a668 dependents\platform\tags\item\elderberry_jams.json -e6029929b6f3407b20dd38a87a37a1c8a0b76900 dependents\platform\tags\item\almonds.json -f82bbcfd6c03dc2a94f0e7ba35ec5698f04e0e7a dependents\platform\tags\item\seeds\tomato.json -eee76114459562352ca89086875bf3d36d1796e7 dependents\platform\tags\item\crops\coconut.json -c4a27a9b65af70d9c335d9e588be27a12f6e3180 dependents\platform\tags\item\crops\blackberry.json -520d64707a90fc336bc5e76ce1285120ef8e5e5c dependents\platform\tags\item\rice_seeds.json -6cd3e8ef967ac3c121cebae7abcdbfa7c41c4818 dependents\platform\tags\item\fish_and_chips.json -02a5008255ccbfb93460ea987e8d630327b71128 dependents\platform\tags\item\corn_seeds.json -c616898fbf832e20f86d1efe0f04867933e9b4ba dependents\platform\tags\item\fruits\persimmon.json -4eb9ed112c53aa9abd203e356fd5cf310d10c3e6 dependents\platform\tags\item\fried_chickens.json -00489c6c6d653bbc4e999fdde6878f1491d4ab50 dependents\platform\tags\item\mustard.json -67527ad624fe28538f849914e820eb674daa7c68 dependents\platform\tags\item\elderberries.json -df5006e2057499af49fec43dac8482b82863b72b dependents\platform\tags\item\tofu.json -aedc082df6656940aa79dee598b583ad61641913 dependents\platform\tags\item\anchovies.json -badabf8c2106217cae939745a4d9524598177935 dependents\platform\tags\item\garlic_seeds.json -a2a73da05547f95ae402144425dce2e6687095b8 dependents\platform\tags\item\strawberry_ice_creams.json -d6e274f61b067cf5fdb8aafc0cb3ed81a0c02ba7 dependents\platform\tags\item\honeydew.json -af8683a1c1681be718820a6fd7184d849e65fce6 dependents\platform\tags\item\anchovy_pizzas.json -0d2d7e328ba6aec98c21a1f4c95b62f876c1b890 dependents\platform\tags\item\walnut_saplings.json -904b91ff45815cb6f61378ae2ce265e7753261b2 dependents\platform\tags\item\saplings\nectarine.json -31d181ba9e09599baf8d23991400747a1b46a0df dependents\platform\tags\item\crops\turnip.json -9a2e47dc9797570fb80312b38ca470c74c9149f7 dependents\platform\tags\item\honeydew_seeds.json -47c0e9a2c0fe79af7c7463897627121ce814e63f dependents\platform\tags\item\seeds\broccoli.json -31550c4ccdad3ef8e8d1aa32530a784b472caa76 dependents\platform\tags\item\toasts.json -5863ff260ad5481e2b4b20ae2c2777f9f847b34d dependents\platform\tags\item\crops\mustard.json -73b6e782d01d6761eed89db8f169ba22fe448ff5 dependents\platform\tags\item\saplings\lime.json -9919ad751fec357d3ddebb6da3b0c9db1c513cf3 dependents\platform\tags\item\french_fries.json +// 1.21.5 -999999999-01-01T00:00:00 Croptopia/Croptopia Independent Tags +ded9bb7cd733eb505b138baa2746638bb8c5d0b9 dependents/platform/tags/item/almond_brittles.json +942a575a32cce240904b717737485c1bee9208c0 dependents/platform/tags/item/almond_saplings.json +e6029929b6f3407b20dd38a87a37a1c8a0b76900 dependents/platform/tags/item/almonds.json +aedc082df6656940aa79dee598b583ad61641913 dependents/platform/tags/item/anchovies.json +af8683a1c1681be718820a6fd7184d849e65fce6 dependents/platform/tags/item/anchovy_pizzas.json +5c04811b7064787cc05e93db266e09b6500fb2bc dependents/platform/tags/item/apple_juices.json +b313b5a1d19e4e2ba6429c5c7373d4432c875b3f dependents/platform/tags/item/apple_pies.json +cc05ce772baaadf7f81af633151cf9f7585ebbdb dependents/platform/tags/item/apple_saplings.json +cafbd0ee13609da6f26d6a897188052ea4ecde2e dependents/platform/tags/item/apples.json +de15450aadeca7af8f8f9c79b31fed0a25b64c4c dependents/platform/tags/item/apricot_jams.json +ba3518cba56f2f8f5a542362da815b344d976944 dependents/platform/tags/item/apricot_saplings.json +d13ac6c21d73f620b44a23b65bdf818436af7f81 dependents/platform/tags/item/apricots.json +7e23f26e9daa4e3c4400273bcf9d2324794b7ce7 dependents/platform/tags/item/artichoke_dips.json +e789394027445f8a8b8b33c8419db57c0eecbb87 dependents/platform/tags/item/artichoke_seeds.json +5a368c972ba8cc95c8f0646f0bf2e9ceb93c6e75 dependents/platform/tags/item/artichokes.json +5cc6b8a55424e7076316a2e2fadd9a73692b451a dependents/platform/tags/item/asparagus.json +eac83649cadbe901a653159b57ded999490027b6 dependents/platform/tags/item/asparagus_seeds.json +9da560e547f318a4dba070726046d12b75d17cc7 dependents/platform/tags/item/avocado_saplings.json +0119f9478425e828c32a31324d7d58162c0ca776 dependents/platform/tags/item/avocados.json +191b7bbf5bb8726dbea5ab1e972259807d42bdd9 dependents/platform/tags/item/baked_beans.json +7fe0e2ea081f16566ae6c97adcceb1910c43a24e dependents/platform/tags/item/baked_crepes.json +e842b273fb5ffac8edf1df26bb828c051cf1af53 dependents/platform/tags/item/baked_sweet_potatos.json +0094024da4c92cc4f1bc84d0293861aa5748592a dependents/platform/tags/item/baked_yams.json +72f368b00f8ca160fe5be2042b7c6ef80bbe4440 dependents/platform/tags/item/banana_cream_pies.json +26f4f774e4947376b786069e9a6df07e4a8c3de8 dependents/platform/tags/item/banana_nut_breads.json +c238b1e20bf92b88a169c49eea905fa7d82000cb dependents/platform/tags/item/banana_saplings.json +fbdd80aa2eb5502aa98ac917cf9eab934bd418fc dependents/platform/tags/item/banana_smoothies.json +25bcbe9d5d755fdd11e7b4ec9568cf66fec1d09e dependents/platform/tags/item/bananas.json +d4576795c5d568f9b0fca17119cf7abfa08d5acf dependents/platform/tags/item/barley.json +f5d822a107dda862bd12528b6e08c682f075ae3a dependents/platform/tags/item/barley_seeds.json +9e48f2f90b200fd049b818549b392c2a778c6499 dependents/platform/tags/item/basil.json +2c5817cc37c47e1c2061f832d07d503029a03e35 dependents/platform/tags/item/basil_seeds.json +a126ef34ba64423ff1e7b5fdb9fd36245eddbb17 dependents/platform/tags/item/beef_jerkies.json +26e08504bf6e2d073f107b821e51161d049e6398 dependents/platform/tags/item/beef_wellington.json +2e956c72febc798e3f3bbfef8ba97eb085baab49 dependents/platform/tags/item/beers.json +0848a97f815735274533db66e0dfe6e18b7b02b8 dependents/platform/tags/item/beetroot_salads.json +b616a8ab76a0f6223b8721e842386da37d0e3f51 dependents/platform/tags/item/bellpepper_seeds.json +b0e2206f1afbb40479b6ebb9fe3d03744c516ae0 dependents/platform/tags/item/bellpeppers.json +19fa7d82c7aeeecd59e925021704e963cdcece54 dependents/platform/tags/item/blackbean_seeds.json +f368f906ab24e6547508e4ae970961454bfcca77 dependents/platform/tags/item/blackbeans.json +0b8580bab6b682e61c8f0e43ae50b34bbc877e41 dependents/platform/tags/item/blackberries.json +2b5f60f91eba4719f86617e69c5d277e05c5becf dependents/platform/tags/item/blackberry_jams.json +84cd153adf0bdcc6676982d6587c5aea2822b483 dependents/platform/tags/item/blackberry_seeds.json +49d252bab6532dcfe010d57d209c6e0e5b69b49f dependents/platform/tags/item/blts.json +814508cd657053ce6abe5c631935fa677863ea49 dependents/platform/tags/item/blueberries.json +f0f0afe306af073244ed7c9deec99f4824fffe96 dependents/platform/tags/item/blueberry_jams.json +bf1ea5b6a3fcc15ebc576f0c3d78594a54231fc7 dependents/platform/tags/item/blueberry_seeds.json +8cb24ee4ef9ac284f6f325bf83e2e586b20779fb dependents/platform/tags/item/borscht.json +033cad117062e7b4d53f9328834575cf2aae7b2d dependents/platform/tags/item/broccoli.json +d04650431b159b2332103052ccc3c80b863c7f21 dependents/platform/tags/item/broccoli_seeds.json +7749b2faa1f1c633473da2784c64770dda88526b dependents/platform/tags/item/brownies.json +bd5dbec2c17888e85497067ed11820cc7f52e372 dependents/platform/tags/item/buttered_toasts.json +0a43bf4b0251fd442a57431d81fe63df871e5dbf dependents/platform/tags/item/butters.json +cce62d76ccd470b972da99b24d7171625d8f1b16 dependents/platform/tags/item/cabbage.json +d8615fd473e561958acc7e13f2f86e1d54e582f6 dependents/platform/tags/item/cabbage_rolls.json +690ff889741f997c18dd3f9c45594498006929d3 dependents/platform/tags/item/cabbage_seeds.json +c75ea00a5df5d07beea1898174933ef9303a7b9a dependents/platform/tags/item/caesar_salads.json +2ead89967502deb09b7ef9158fc7b64ee6b41368 dependents/platform/tags/item/calamari.json +40e30add6a219b04d88a5a0654286a1dcb20855f dependents/platform/tags/item/candied_kumquats.json +459c8cedbacba387741b572c689afdcff4a7e425 dependents/platform/tags/item/candied_nuts.json +af7011d11c97c51265326957e5f8f4d8e73578d2 dependents/platform/tags/item/candy_corns.json +f0b7bbccc87ec6b7ce165437ad340ce22908419d dependents/platform/tags/item/cantaloupe_seeds.json +42404d389521c73e39d73ea980ac89c0e760d377 dependents/platform/tags/item/cantaloupes.json +0253a5c771e96384c71bbeb0c4a6cc225acbe5f8 dependents/platform/tags/item/caramel.json +0fdd5701d1659ed45c5b0b93f206a10a4a21c436 dependents/platform/tags/item/cashew_chickens.json +2b46c50abb9c0916b2f72298613b6a0f1fdbdbbe dependents/platform/tags/item/cashew_saplings.json +ba36f59482d26ba29c757ba9bc1f0b17512f10f3 dependents/platform/tags/item/cashews.json +32bce17edf1885b820bfbcb7df9d7d4196613d5e dependents/platform/tags/item/cauliflower.json +4a0f1730e4e6a926eeb1b2ebb94ccb2a4705b77b dependents/platform/tags/item/cauliflower_seeds.json +855bae9f222b161731d20cbf0a811fbea9318bfe dependents/platform/tags/item/celery.json +543dbd7a1313bebc96a10c13bb9a2fd48ca4b213 dependents/platform/tags/item/celery_seeds.json +4971058a1f437c347142c97325c27c7238428052 dependents/platform/tags/item/cheese_cakes.json +7958bc67d6ad914d4a0caeea88521ce64692db32 dependents/platform/tags/item/cheese_pizzas.json +208b8be4198e085d6118b0886b32cb92c0410d8d dependents/platform/tags/item/cheeseburgers.json +b5bdb4d1e1c526e3d49c086c56c010ca8d340d50 dependents/platform/tags/item/cheeses.json +db298b3fed7143a0f154ff4ff57c982aa0724444 dependents/platform/tags/item/cherries.json +e02b7199b4471d96aa69fce5f6d93c3c02849b75 dependents/platform/tags/item/cherry_jams.json +5aa7f5624b4bd3438f5f20d359ddc25d7fcce8a1 dependents/platform/tags/item/cherry_pies.json +a925d8f4d066e7c74a7cc9af4514162bfa11c5a3 dependents/platform/tags/item/cherry_saplings.json +92b7d5cc678afd1e969d2a59848d3f56788a44e4 dependents/platform/tags/item/chicken_and_dumplings.json +255d0956958bbcbd79cd75e28c38ad70cc411630 dependents/platform/tags/item/chicken_and_noodles.json +fd27c8643efe4bb965123f10c2d39d0f025c8298 dependents/platform/tags/item/chicken_and_rice.json +e69dce98ec54fc6db042cf44e4ee027aa4354179 dependents/platform/tags/item/chile_pepper_seeds.json +8295fb8049fbe9f13b3b59bf363ac88782e96d09 dependents/platform/tags/item/chile_peppers.json +996021e618191b056dec77e194d9e50fc425f667 dependents/platform/tags/item/chocolate_milkshakes.json +36442bbd63b9e27cd4b8a558cc4ce8c1e863d91c dependents/platform/tags/item/chocolates.json +a1ad0d7cb31b2a4efb8e87eff0fd31ed84d3fc37 dependents/platform/tags/item/cinnamon.json +f831ac307bbbdffe630bf1040172a2a6f2bb6ac9 dependents/platform/tags/item/cinnamon_rolls.json +55585b65091c2925ae8373d8de87513bc9809261 dependents/platform/tags/item/cinnamon_saplings.json +06aa4222b4be32bda63059c9ae436298b295be7f dependents/platform/tags/item/clams.json +cd531a6208eae92d90f5ff2ca68ec6e614ddee12 dependents/platform/tags/item/coconut_saplings.json +a173982045bb96588bd25befeb167609e5f3a846 dependents/platform/tags/item/coconuts.json +722d687d0421648139fbe8aec992dfb17007e437 dependents/platform/tags/item/coffee_beans.json +2c586e162f6873f0f05a25c7ac3e72be6638a73d dependents/platform/tags/item/coffee_seeds.json +5c45cf617149a603f63462333f0adb18f24af414 dependents/platform/tags/item/coffees.json +2a692785c0390148654d8d582a971c2f42b9c52e dependents/platform/tags/item/cooked_anchovies.json +d63568beb3f36a46ba23c248a83255d8e9a84687 dependents/platform/tags/item/cooked_bacon.json +9bd2c01f6f5eff9b09ed5311ced17fe9a7e6dfea dependents/platform/tags/item/cooked_calamari.json +2414c33914c07f88d86f23a1d409f63f25cafbc5 dependents/platform/tags/item/cooked_shrimp.json +12a507432af48449e259ea557be4e64684abfa11 dependents/platform/tags/item/cooked_tuna.json +a5f1aa44b645281048dff358981ec2570b8828e9 dependents/platform/tags/item/cooking_pots.json +b320afc85226f22cef7ea6f468b347827255666c dependents/platform/tags/item/corn.json +f07cdba12d7a83e74c915cf2de7f27aff1cc3b8d dependents/platform/tags/item/corn_breads.json +02a5008255ccbfb93460ea987e8d630327b71128 dependents/platform/tags/item/corn_seeds.json +deebe501f51fa27cd693a5000211a5ec9e8fb6ae dependents/platform/tags/item/cornish_pasty.json +a7d508f623e9908904e190b698ed2c84154d9697 dependents/platform/tags/item/crab_legs.json +53190af55dee65c201db39ea9fc97c066387436a dependents/platform/tags/item/crabs.json +539202a307d84659f5367625398ae2fea5435631 dependents/platform/tags/item/cranberries.json +b5041592e23126d0e8dcfbe355fcd218e01d0c85 dependents/platform/tags/item/cranberry_juices.json +44ec7ec968f9d328a18d2f6d545a0c9d070e8911 dependents/platform/tags/item/cranberry_seeds.json +57ac70bdd101d961eaf82b20293a7e535ee5ef80 dependents/platform/tags/item/crops.json +2961625001b98b78be881f66c1bd2436f0f8283a dependents/platform/tags/item/crops/almond.json +b33dde3cf95c3f821d49bc84b8c46f9fd65289e8 dependents/platform/tags/item/crops/apple.json +6ecc1a3cbe6d57d15ec2c0565e80fc08925442c4 dependents/platform/tags/item/crops/apricot.json +b0b4c552a762b72ed20b636d7e5bc2574f81e2f6 dependents/platform/tags/item/crops/artichoke.json +8fd47d575e0041e028559f61a21475e49cbea0f2 dependents/platform/tags/item/crops/asparagus.json +613db6ff217d932f1e44ddc50480ebcec9841224 dependents/platform/tags/item/crops/avocado.json +e7e006672b7057804d1e13aa0a7d751377d07a47 dependents/platform/tags/item/crops/banana.json +0018fc1260d57565244ab74db94162fe10962eab dependents/platform/tags/item/crops/barley.json +b411933909da50d7deb907f4144091facd3aca57 dependents/platform/tags/item/crops/basil.json +00a4a6115ae20d426ff0f9fb5bf551d6120fd4f4 dependents/platform/tags/item/crops/bellpepper.json +da5f55ad0697dc3feffb7da1dda168603358bd81 dependents/platform/tags/item/crops/blackbean.json +c4a27a9b65af70d9c335d9e588be27a12f6e3180 dependents/platform/tags/item/crops/blackberry.json +13b6b33477932bec7a4b1616b71047e3db9cfad8 dependents/platform/tags/item/crops/blueberry.json +af18dc096d5db4e5d5bc11db580d79df22824969 dependents/platform/tags/item/crops/broccoli.json +d617020fa5510fb5ced27222bed081fefbe48c08 dependents/platform/tags/item/crops/cabbage.json +dab0a52e904ce70e73547d33531ef818a2bef9bc dependents/platform/tags/item/crops/cantaloupe.json +578ee7627293d3b9d27f8daa821df1d714cd40be dependents/platform/tags/item/crops/cashew.json +a7ae64afe98796b227bb0734e661a63c044ceb97 dependents/platform/tags/item/crops/cauliflower.json +9f5fa3b35c0b1db0526852e94bb31137cff5f7a0 dependents/platform/tags/item/crops/celery.json +21ae70326479cfe019f82203ab12dd691515438a dependents/platform/tags/item/crops/cherry.json +254afcb112e48e1281e8aeddf8d904afa4d17032 dependents/platform/tags/item/crops/chile_pepper.json +6e21b8880936a33ca71c9b06fe7c54971ae1b077 dependents/platform/tags/item/crops/cinnamon.json +eee76114459562352ca89086875bf3d36d1796e7 dependents/platform/tags/item/crops/coconut.json +fec8f626f7539386af8797e59afe8450e48b4434 dependents/platform/tags/item/crops/coffee_beans.json +9b8b01c7df84d16f25c83122ebf16d748edc299d dependents/platform/tags/item/crops/corn.json +1340855ea414de7976d2a258cfdbad82a2571d0a dependents/platform/tags/item/crops/cranberry.json +266db0c94dad0170c8a049ba52657c927df17627 dependents/platform/tags/item/crops/cucumber.json +36afb7ba3d769e9cd51c2fc56818b38e47137b6f dependents/platform/tags/item/crops/currant.json +e84332b64665dca326a3919cd78bb3cb7e5b98a2 dependents/platform/tags/item/crops/date.json +e533e3baa5b9b875229728b551056d5b6712c3c4 dependents/platform/tags/item/crops/dragonfruit.json +1fc9a6a71ee701630d8fdd48ad99ad9476915633 dependents/platform/tags/item/crops/eggplant.json +dae27c1ad9052892720bb8f17754357fa49aaf87 dependents/platform/tags/item/crops/elderberry.json +bac9899d6a4fb9040b52db296c98ca4f7d5608b6 dependents/platform/tags/item/crops/fig.json +d9d16ec22b978816f5608cfa7814fb56b053309c dependents/platform/tags/item/crops/garlic.json +c8256e936cd7ad226edcc2ac82abb01c5ca0d440 dependents/platform/tags/item/crops/ginger.json +a43a2ed5b93fa92a155733ab6cb374fe781e5749 dependents/platform/tags/item/crops/grape.json +f96d2e1ab1e1d6caa7663c829d082da94f09c5ce dependents/platform/tags/item/crops/grapefruit.json +6396fb3de0a61ba062c14a5623a7837bded27c9c dependents/platform/tags/item/crops/greenbean.json +3d5c274df01581a1fa99ad62003c04373fb52082 dependents/platform/tags/item/crops/greenonion.json +c0bbc8f80e3c9e50d171c44ea9e9209e9653fb61 dependents/platform/tags/item/crops/honeydew.json +5e5e3cd65830b2dd67e8e7138d697bd25d5d7a9e dependents/platform/tags/item/crops/hops.json +c86f0e3a0ba92406b0728741fc8b9f33a2988b4d dependents/platform/tags/item/crops/kale.json +5c6846bb4e0bf1d8a78a3dc237ec0b023e325ffc dependents/platform/tags/item/crops/kiwi.json +aae4f564f7c119aff8126b512ed417dad79a347a dependents/platform/tags/item/crops/kumquat.json +f1f0e6d21518b0f89fef1787364294b4e92ce710 dependents/platform/tags/item/crops/leek.json +89402635e52827b4405458d7a494deb8e5a39103 dependents/platform/tags/item/crops/lemon.json +48552fa30b11944a551d28197c3fa99e269c8f9c dependents/platform/tags/item/crops/lettuce.json +e3481738a00e81614857e4292f8b7230ae6ef764 dependents/platform/tags/item/crops/lime.json +51355d76a8ddd2b11c29d04ce744e575d8896889 dependents/platform/tags/item/crops/mango.json +5863ff260ad5481e2b4b20ae2c2777f9f847b34d dependents/platform/tags/item/crops/mustard.json +b5c93399d6a75eae3ef06eb870a3d72d1e73198f dependents/platform/tags/item/crops/nectarine.json +87c833692709534dafd89f59268e84c9ffc8bef6 dependents/platform/tags/item/crops/nutmeg.json +eadc30587ad275fe2db4890ecd84e9c5c5db1085 dependents/platform/tags/item/crops/oat.json +54357591ba8b652ddfbb20a458251937dc8e7a9d dependents/platform/tags/item/crops/olive.json +d8a80b98b224ab313de974a72c90c1e4ae081825 dependents/platform/tags/item/crops/onion.json +c4f329dfd2da7b9a090f3f83317d43a40ed1e5cc dependents/platform/tags/item/crops/orange.json +f07d9141a171bc6dc19736e3ee44511a60ebfcc7 dependents/platform/tags/item/crops/peach.json +35d5b5e3b6e3f3582c7ec194d6b4b6ea0a36a84b dependents/platform/tags/item/crops/peanut.json +3458b7c78932043c5f0885eeace324fd0f885781 dependents/platform/tags/item/crops/pear.json +7f5d3d8aa8ffa1cea21d1e5cd9da8df27d23be46 dependents/platform/tags/item/crops/pecan.json +19f0bfab2be53eb0927b228b125d0bb395d27255 dependents/platform/tags/item/crops/pepper.json +c616898fbf832e20f86d1efe0f04867933e9b4ba dependents/platform/tags/item/crops/persimmon.json +dcd1dbc72648494f65104763870c41c3be430f35 dependents/platform/tags/item/crops/pineapple.json +787826eb3743e01f95fd8647e2a7671559f31d50 dependents/platform/tags/item/crops/plum.json +69942480b8fe6c013e12c2df0f9d4d9e4a180acc dependents/platform/tags/item/crops/radish.json +2ef0aad31246902d69c07e4ab25bc9766164cf09 dependents/platform/tags/item/crops/raspberry.json +192e5b2d59caa7a39f17ebbe3445de47f2041e95 dependents/platform/tags/item/crops/rhubarb.json +0f90b3705e659f6a5b2678b72b78beced9ec7310 dependents/platform/tags/item/crops/rice.json +7ec17552c75df9f34b21811459fee18ca73ac2e1 dependents/platform/tags/item/crops/rutabaga.json +09df0623aa2381fa549a9679ab7a6452431bec14 dependents/platform/tags/item/crops/saguaro.json +3f151b1d641084b35db546e4b19b3383f1b93392 dependents/platform/tags/item/crops/soybean.json +e3dc0cf5ae1ee145551919f127aad4557f5beea9 dependents/platform/tags/item/crops/spinach.json +94a9f07b25fe6ae08ace58b03e7aee07ee328af0 dependents/platform/tags/item/crops/squash.json +0f75b8282bb173f69f94ebddf0136717e7d78ab3 dependents/platform/tags/item/crops/starfruit.json +debc9a79a65074cf71c749c84d476c4457a366de dependents/platform/tags/item/crops/strawberry.json +4c194c9e0594fab3f3b2a7a01a854d53e88da767 dependents/platform/tags/item/crops/sweetpotato.json +e08abdcdf4dfec4a952b01023ccc55f68c227bea dependents/platform/tags/item/crops/tea_leaves.json +33c8cd68df0e4cac795aea26addcf97a4c9c3378 dependents/platform/tags/item/crops/tomatillo.json +43c79ed45068f6f589f92fdb813b627c04b50c6f dependents/platform/tags/item/crops/tomato.json +542e138e9d8e7a17b59efde679522d5ec0bb11f0 dependents/platform/tags/item/crops/turmeric.json +31d181ba9e09599baf8d23991400747a1b46a0df dependents/platform/tags/item/crops/turnip.json +90d1a5c5d73b9bb24db87f913a5f03d04de9521d dependents/platform/tags/item/crops/vanilla.json +28dfd044d064b07279c0b81f60fc18b2316c4b2e dependents/platform/tags/item/crops/walnut.json +6fe0bed26e1a29f3954732988cf4de9f4956860c dependents/platform/tags/item/crops/yam.json +9e5c4daa378ebd26722077b3d4e85ae46b5a4200 dependents/platform/tags/item/crops/zucchini.json +f89b542cacb794cadfa43b9174948c4d71645a16 dependents/platform/tags/item/croque_madame.json +f5d030535bd261e8e8f89421d2f3ea01da50b524 dependents/platform/tags/item/croque_monsieur.json +debf2099d676a7590461553a2e17578c3bf1f099 dependents/platform/tags/item/cucumber_salads.json +cf43ca71428d733d4b82e18fa1c138f61cb2aab5 dependents/platform/tags/item/cucumber_seeds.json +803a214b428fbc03c36b2e233d8da4e3612f50a7 dependents/platform/tags/item/cucumbers.json +e070f65ae7da11b7aca5dee7a131479f7b5f1989 dependents/platform/tags/item/currant_seeds.json +68f4e5bded663a80ac95b5758803c8775de25481 dependents/platform/tags/item/currants.json +271326180929ac4802a3399661a7bb606d4bb464 dependents/platform/tags/item/date_saplings.json +1496e0e9a0b212c04af25f62532363c4b539231c dependents/platform/tags/item/dates.json +cb235207c74e85faeb7cf932249d4146df40b537 dependents/platform/tags/item/dauphine_potatoes.json +1389d07d4341ab94fe1a3f0a664943f5f4408008 dependents/platform/tags/item/deep_fried_shrimp.json +f609d3bc280f7a299d9502d48632a7d03d16677f dependents/platform/tags/item/doughnuts.json +1fb1ec1a8d055e62ef32950016dadfe5ea7fbb8f dependents/platform/tags/item/doughs.json +37af0bd5c0862400ca0146cdd0125f7c5f2001bf dependents/platform/tags/item/dragonfruit_saplings.json +690f688852756ca6fdb1f30aef88870dff20d2f6 dependents/platform/tags/item/dragonfruits.json +f6e603134e7eb993eebe689fc3e2e69d51a08ba5 dependents/platform/tags/item/egg_rolls.json +c84aa1fffb496992b6558af1fe04652494c2cff3 dependents/platform/tags/item/eggplant_seeds.json +fefb766ee2a43731af96c743084b1b79b4a373eb dependents/platform/tags/item/eggplants.json +67527ad624fe28538f849914e820eb674daa7c68 dependents/platform/tags/item/elderberries.json +61e4bb7062129162e257c33f0d10f7cc4cd7a668 dependents/platform/tags/item/elderberry_jams.json +4f28f6cd863f8f12e00898adc22d6790e0331aa9 dependents/platform/tags/item/elderberry_seeds.json +0ab7cf8473032fd40e9541486727b4ce5a3f4336 dependents/platform/tags/item/eton_mess.json +68e29c55c07c1979b11e6bc381ae7f29edf2ee61 dependents/platform/tags/item/fig_saplings.json +4cda2f983b3227d33cb15832a383145d8bb08565 dependents/platform/tags/item/figgy_pudding.json +96b737946e6b4cd09090cd31d98520cbdfac31d3 dependents/platform/tags/item/figs.json +6cd3e8ef967ac3c121cebae7abcdbfa7c41c4818 dependents/platform/tags/item/fish_and_chips.json +fd734af59d946f606ce95869c1bc32705933fb59 dependents/platform/tags/item/flour.json +91e0e45a45820e23ae1cdbe610ba5d0a14de5d3a dependents/platform/tags/item/food_press.json +9919ad751fec357d3ddebb6da3b0c9db1c513cf3 dependents/platform/tags/item/french_fries.json +3411473a1144bc0883d78c87c739d764f49e6443 dependents/platform/tags/item/fried_calamari.json +4eb9ed112c53aa9abd203e356fd5cf310d10c3e6 dependents/platform/tags/item/fried_chickens.json +6df8165869c48a8ac8aca520a49dc29a60d7e947 dependents/platform/tags/item/fried_frog_legs.json +b8ddf361b69170b5774cbb26a459895f81ea6b6a dependents/platform/tags/item/frog_legs.json +a635b185b03896366093165041a0d96681a2f159 dependents/platform/tags/item/fruit_salads.json +ff3957263702610aae00a0dfb140b61b20d6bdc8 dependents/platform/tags/item/fruit_smoothies.json +f5662cfeb6e1792aa4906f826a905f5e7fa34d5a dependents/platform/tags/item/fruits.json +2961625001b98b78be881f66c1bd2436f0f8283a dependents/platform/tags/item/fruits/almond.json +b33dde3cf95c3f821d49bc84b8c46f9fd65289e8 dependents/platform/tags/item/fruits/apple.json +6ecc1a3cbe6d57d15ec2c0565e80fc08925442c4 dependents/platform/tags/item/fruits/apricot.json +613db6ff217d932f1e44ddc50480ebcec9841224 dependents/platform/tags/item/fruits/avocado.json +e7e006672b7057804d1e13aa0a7d751377d07a47 dependents/platform/tags/item/fruits/banana.json +00a4a6115ae20d426ff0f9fb5bf551d6120fd4f4 dependents/platform/tags/item/fruits/bellpepper.json +c4a27a9b65af70d9c335d9e588be27a12f6e3180 dependents/platform/tags/item/fruits/blackberry.json +13b6b33477932bec7a4b1616b71047e3db9cfad8 dependents/platform/tags/item/fruits/blueberry.json +dab0a52e904ce70e73547d33531ef818a2bef9bc dependents/platform/tags/item/fruits/cantaloupe.json +21ae70326479cfe019f82203ab12dd691515438a dependents/platform/tags/item/fruits/cherry.json +eee76114459562352ca89086875bf3d36d1796e7 dependents/platform/tags/item/fruits/coconut.json +1340855ea414de7976d2a258cfdbad82a2571d0a dependents/platform/tags/item/fruits/cranberry.json +36afb7ba3d769e9cd51c2fc56818b38e47137b6f dependents/platform/tags/item/fruits/currant.json +e84332b64665dca326a3919cd78bb3cb7e5b98a2 dependents/platform/tags/item/fruits/date.json +e533e3baa5b9b875229728b551056d5b6712c3c4 dependents/platform/tags/item/fruits/dragonfruit.json +dae27c1ad9052892720bb8f17754357fa49aaf87 dependents/platform/tags/item/fruits/elderberry.json +bac9899d6a4fb9040b52db296c98ca4f7d5608b6 dependents/platform/tags/item/fruits/fig.json +a43a2ed5b93fa92a155733ab6cb374fe781e5749 dependents/platform/tags/item/fruits/grape.json +f96d2e1ab1e1d6caa7663c829d082da94f09c5ce dependents/platform/tags/item/fruits/grapefruit.json +c0bbc8f80e3c9e50d171c44ea9e9209e9653fb61 dependents/platform/tags/item/fruits/honeydew.json +5c6846bb4e0bf1d8a78a3dc237ec0b023e325ffc dependents/platform/tags/item/fruits/kiwi.json +aae4f564f7c119aff8126b512ed417dad79a347a dependents/platform/tags/item/fruits/kumquat.json +89402635e52827b4405458d7a494deb8e5a39103 dependents/platform/tags/item/fruits/lemon.json +e3481738a00e81614857e4292f8b7230ae6ef764 dependents/platform/tags/item/fruits/lime.json +51355d76a8ddd2b11c29d04ce744e575d8896889 dependents/platform/tags/item/fruits/mango.json +b5c93399d6a75eae3ef06eb870a3d72d1e73198f dependents/platform/tags/item/fruits/nectarine.json +54357591ba8b652ddfbb20a458251937dc8e7a9d dependents/platform/tags/item/fruits/olive.json +c4f329dfd2da7b9a090f3f83317d43a40ed1e5cc dependents/platform/tags/item/fruits/orange.json +f07d9141a171bc6dc19736e3ee44511a60ebfcc7 dependents/platform/tags/item/fruits/peach.json +3458b7c78932043c5f0885eeace324fd0f885781 dependents/platform/tags/item/fruits/pear.json +7f5d3d8aa8ffa1cea21d1e5cd9da8df27d23be46 dependents/platform/tags/item/fruits/pecan.json +c616898fbf832e20f86d1efe0f04867933e9b4ba dependents/platform/tags/item/fruits/persimmon.json +dcd1dbc72648494f65104763870c41c3be430f35 dependents/platform/tags/item/fruits/pineapple.json +787826eb3743e01f95fd8647e2a7671559f31d50 dependents/platform/tags/item/fruits/plum.json +2ef0aad31246902d69c07e4ab25bc9766164cf09 dependents/platform/tags/item/fruits/raspberry.json +09df0623aa2381fa549a9679ab7a6452431bec14 dependents/platform/tags/item/fruits/saguaro.json +0f75b8282bb173f69f94ebddf0136717e7d78ab3 dependents/platform/tags/item/fruits/starfruit.json +debc9a79a65074cf71c749c84d476c4457a366de dependents/platform/tags/item/fruits/strawberry.json +28dfd044d064b07279c0b81f60fc18b2316c4b2e dependents/platform/tags/item/fruits/walnut.json +a90d46253661fb408b2f7a9e5fc1b648eecd0df4 dependents/platform/tags/item/frying_pans.json +f0607e94ca073d64a8f66f761533172f278946b8 dependents/platform/tags/item/garlic.json +badabf8c2106217cae939745a4d9524598177935 dependents/platform/tags/item/garlic_seeds.json +8f95eda1b963b78534617227195c93399fd5fe7e dependents/platform/tags/item/ginger_seeds.json +493ff8da500e5626c5615eeb1b16555433f495a0 dependents/platform/tags/item/gingers.json +19767fa2b1a02d04c7634470ffe62990b19dae46 dependents/platform/tags/item/glowing_calamari.json +6788eec2f7119e2f3e5bb08486348125ad9d3a6f dependents/platform/tags/item/goulashes.json +11ff0fd94f4b538b893b39644b4c5d3feae4562b dependents/platform/tags/item/grain.json +0018fc1260d57565244ab74db94162fe10962eab dependents/platform/tags/item/grain/barley.json +9b8b01c7df84d16f25c83122ebf16d748edc299d dependents/platform/tags/item/grain/corn.json +eadc30587ad275fe2db4890ecd84e9c5c5db1085 dependents/platform/tags/item/grain/oat.json +0f90b3705e659f6a5b2678b72b78beced9ec7310 dependents/platform/tags/item/grain/rice.json +21e265c40227ad0ee040de04ce985b6941fc10c4 dependents/platform/tags/item/grape_jams.json +97e4bd08ff44780857341fcbdc2c9c71a34d59e5 dependents/platform/tags/item/grape_juices.json +c2fad55cf4322daa07dde48d1ee86bd799ecb501 dependents/platform/tags/item/grape_seeds.json +3af30228213f9af3f8f6bc0682b429709674ca5d dependents/platform/tags/item/grapefruit_saplings.json +82b42b6cb85d7e664985fbdb864d8f30950620e3 dependents/platform/tags/item/grapefruits.json +a272e0d8ee8886b926466f5b636dfcea35abbd4d dependents/platform/tags/item/grapes.json +6602768739a7b49ee98131a61a9a7ab36fc65a5a dependents/platform/tags/item/greenbean_seeds.json +05f4d7c6f22f3b2ccdc9faeb563efd20958728ed dependents/platform/tags/item/greenbeans.json +cd03a2d3bf552772619e99d1e63dc2f1a0defcb1 dependents/platform/tags/item/greenonion_seeds.json +d9bf7682d21d40195a7421a726157cdf9e38fea6 dependents/platform/tags/item/greenonions.json +f88f16e8d2cceb8bfae32fbc81d0d7b68b24a8d9 dependents/platform/tags/item/grilled_cheeses.json +1b1b2aa52fdbcac44805ff15723c7c886bbfa351 dependents/platform/tags/item/grilled_oysters.json +849938d581f513656b9d42fb2349c55d3064d589 dependents/platform/tags/item/ground_pork.json +b40d935be1ce530d6a30615d3a595b1cbe64d771 dependents/platform/tags/item/ham_sandwiches.json +4d859928cac637226a221141ebe678a504609aa4 dependents/platform/tags/item/hamburgers.json +9a3f0b9bcb4bdf3a485bffb3b407fc24f35c612f dependents/platform/tags/item/hashed_brown.json +d6e274f61b067cf5fdb8aafc0cb3ed81a0c02ba7 dependents/platform/tags/item/honeydew.json +9a2e47dc9797570fb80312b38ca470c74c9149f7 dependents/platform/tags/item/honeydew_seeds.json +569907e45000fd3f236c2fdd41cd23babe4d19c0 dependents/platform/tags/item/hops.json +4d56d80c0a54e2bb08c00f5348350e4b449393e5 dependents/platform/tags/item/hops_seeds.json +018ca7648abc208af4de8e8db034050ce6d4505b dependents/platform/tags/item/jams.json +e3ee5dce45641802845b62e29f5c5c560ac1d074 dependents/platform/tags/item/jams/apricot_jam.json +9b29b8002c3a6a155ba2e9e56fdebe0756119a27 dependents/platform/tags/item/jams/blackberry_jam.json +4dd4d78983ec88de8d754bfc49a0d17c7a0509e7 dependents/platform/tags/item/jams/blueberry_jam.json +b624d5d31f2e3f72122613ebd4957b6f4a2bd1b6 dependents/platform/tags/item/jams/cherry_jam.json +ad9403b6b6888659908c356ceb03e237a65c262e dependents/platform/tags/item/jams/elderberry_jam.json +c80c8408de431eb5f44b900b1ae8d389f40f5b29 dependents/platform/tags/item/jams/grape_jam.json +bb5ef933b14fb45efd148e700d563d3fc97bc49a dependents/platform/tags/item/jams/peach_jam.json +415b7a73ced88adcb1e47c8a5a816b4d64ffb93c dependents/platform/tags/item/jams/raspberry_jam.json +589034efaec369cf2a760e23ae1ba8720c4496af dependents/platform/tags/item/jams/strawberry_jam.json +68fbbbfd2605b18263731ca52c0ae96ade7bb09f dependents/platform/tags/item/juices.json +1048e069bff28bc8fa4e41229881758c5d2fe7e6 dependents/platform/tags/item/juices/apple_juice.json +c7d145c785db360d6845c19381dbb7e8fec8c7ec dependents/platform/tags/item/juices/cranberry_juice.json +675e81f15f5e0db50f221fbbe3ca4e0dccf470b9 dependents/platform/tags/item/juices/grape_juice.json +bc0139c4912aef1722bcfe6a75838f7d089a0cb8 dependents/platform/tags/item/juices/melon_juice.json +5f468dbb96ffc5922462a5f9adeb55b6ac0c02ed dependents/platform/tags/item/juices/orange_juice.json +16db37fe0f677d97176b165683604733bd42a872 dependents/platform/tags/item/juices/pineapple_juice.json +6ac30df9d439a39c52120dcc3bf215f2bd13ae80 dependents/platform/tags/item/juices/saguaro_juice.json +f7dcc9da345cca11553efee5fb8044e501b32f26 dependents/platform/tags/item/juices/tomato_juice.json +71d78cd95303d4f843fd6dff67efdc6dadd853fe dependents/platform/tags/item/kale.json +2b5db6edb17b55e8bd1a260e3a715ed12688ab5b dependents/platform/tags/item/kale_chips.json +fd2aaf2bd7ba78120e063abdbb47cb9ebc692125 dependents/platform/tags/item/kale_seeds.json +cd23f4f8caa8f9863bfc90c8cedd106d123dc0ab dependents/platform/tags/item/kale_smoothies.json +30b3e63f14b3a36fb474a28a8ffada3f6190cef5 dependents/platform/tags/item/kiwi_seeds.json +7c94a5b5b6b7e4b06e430798e5581675e986ce7f dependents/platform/tags/item/kiwis.json +d7d97907c7851ecf96b59c14f5986ef0a092ec09 dependents/platform/tags/item/knives.json +ec0a41716d133e40ef5dbdfaef3c6a7321a6acb2 dependents/platform/tags/item/kumquat_saplings.json +f840ccbded8bb23de00063a80692540db650bb2a dependents/platform/tags/item/kumquats.json +74dc93905c91641475cb724e11ed2f616fc87faa dependents/platform/tags/item/leafy_salads.json +66d30d171a08b6420448800e1a30d10a1a141045 dependents/platform/tags/item/leek.json +0ac18a5dfd566cf1ad2ee37f8b682217f7e26117 dependents/platform/tags/item/leek_seeds.json +1f5ef16a5d6ff17a1c4ba327056375e32aae2c2f dependents/platform/tags/item/leek_soups.json +743ebe171f3252aad53e88bbb46484a252699759 dependents/platform/tags/item/lemon_chickens.json +b143d248cb4665656650d946a3f6b6bcbc8f9d30 dependents/platform/tags/item/lemon_saplings.json +0fb7ba58de924a0e53dc283415ea872cacc1a50c dependents/platform/tags/item/lemonades.json +b1d209a4682145d98a8b7bc7140a874a5c14a15e dependents/platform/tags/item/lemons.json +b8e560039737e8d1f0729fb0604ce2549dd73dd2 dependents/platform/tags/item/lettuce.json +023de7a90170dfb0e7b9496b531015bacdf1dbdd dependents/platform/tags/item/lettuce_seeds.json +c8fb10ddcd9080b8c59ac665a59b9b3adcecb8a1 dependents/platform/tags/item/lime_saplings.json +659ee758b18ffd77fd947af48daf678a127e1d6c dependents/platform/tags/item/limeades.json +88aeba3625c2bd0a3fe806b500a8396c11404496 dependents/platform/tags/item/limes.json +d2b224f7f135a7b52792a7c4473c7b55a1555a88 dependents/platform/tags/item/macaron.json +c9703dc8e1e6d8b4a769d4be743bf8c7b267e30e dependents/platform/tags/item/mango_ice_creams.json +71b8d3ffd1ecd725652b0d403f8bab9b6194afbd dependents/platform/tags/item/mango_saplings.json +883a43b85d5b1716ff68d5beff62d3fa69fdab06 dependents/platform/tags/item/mangos.json +0f558309c68b63b2f1da59e21446712a9dfbd536 dependents/platform/tags/item/mashed_potatoes.json +e48986eaf194285f37a4670ab12a726e2a7d1863 dependents/platform/tags/item/meads.json +164b176b1836fd60a11b9dcfa61f0f0c7dfdb38c dependents/platform/tags/item/melon_juices.json +c6d93b4895802805e092fe914949ea2972c88baf dependents/platform/tags/item/meringue.json +b40e37f3ffdfe28abe875aa0e30f59d42add97dc dependents/platform/tags/item/milk_bottles.json +fcc9646940577d401f7f48aa5b6ab7d12278a642 dependents/platform/tags/item/milks.json +3401a6f689fcad00ed7eebd19da693879116d4c2 dependents/platform/tags/item/molasses.json +a97cca9ed0b677dec16536293420a62107207f81 dependents/platform/tags/item/mortar_and_pestles.json +00489c6c6d653bbc4e999fdde6878f1491d4ab50 dependents/platform/tags/item/mustard.json +c1240f3b4ef963ba21b663d9865edcfd62ad5257 dependents/platform/tags/item/mustard_seeds.json +24b647dbfc8303d4d52212a9e8fdad9a6ffdf61c dependents/platform/tags/item/nectarine_saplings.json +615d2634871be53c0ce6fcb74c602e31fbe0f84e dependents/platform/tags/item/nectarines.json +58eab97399b725a79617a8b0d04189c64beae9c1 dependents/platform/tags/item/noodles.json +1d8c87af883189daa6b3a370569790eb4e42bbd7 dependents/platform/tags/item/nougats.json +95ee6c1fd80c32bf3ab12ab0f7473812b20d92a1 dependents/platform/tags/item/nutmeg_saplings.json +d8717f1ee2958cdc8237823947751a8ee0fa3163 dependents/platform/tags/item/nutmegs.json +fb4f8e2df097f7ad01017cc6ee366e403477ad22 dependents/platform/tags/item/nuts.json +2961625001b98b78be881f66c1bd2436f0f8283a dependents/platform/tags/item/nuts/almond.json +7f5d3d8aa8ffa1cea21d1e5cd9da8df27d23be46 dependents/platform/tags/item/nuts/pecan.json +28dfd044d064b07279c0b81f60fc18b2316c4b2e dependents/platform/tags/item/nuts/walnut.json +1ff4dfcfb69f2d4a352f2506e1cc68ebd1d474ee dependents/platform/tags/item/nutty_cookies.json +d4a1d7f4f4c2eceeeb3fde56eb1ef1efb94faa2d dependents/platform/tags/item/oat.json +1a19209aa3ca7c4242789c0237a552a4113fdc84 dependents/platform/tags/item/oat_seeds.json +3974ce103013955e725d81b117eda8735004b98e dependents/platform/tags/item/oatmeals.json +99813dbf8e06fa9e65822f8c532a3b7b067db21b dependents/platform/tags/item/olive_oils.json +aefd69655426e42bdf28b8a03b5c1a6a8fce8b09 dependents/platform/tags/item/olive_seeds.json +4d0ae77642ad886fe6ce325faef752efbb016ccd dependents/platform/tags/item/olives.json +d3dd7069fcbd8ab3d3a4d73559f61b0acceec36e dependents/platform/tags/item/onion_rings.json +a08d314850a96bb92c36ff08c73802f34fe9b871 dependents/platform/tags/item/onion_seeds.json +24d559111ff75bf12b7b99d362805012fd1ef251 dependents/platform/tags/item/onions.json +9262dcde863ce5e516fa4912248e6d9e15145555 dependents/platform/tags/item/orange_juices.json +cfbe700579eb80a3e7969add71696f0ac64fa3a3 dependents/platform/tags/item/orange_saplings.json +e1c52c9d6cf8f951deacc47eaa48d36e0786dd03 dependents/platform/tags/item/oranges.json +2d12d2c70340078e19882530bd3c0746cec4f224 dependents/platform/tags/item/oysters.json +9ea3886d4e68b2277a3ba8da00dace683a720768 dependents/platform/tags/item/paprika.json +7803a61697ea25322aa4097713b83eabd8ef7048 dependents/platform/tags/item/peach_jams.json +1b7060229cadc47b992191de3132b158fbcbdd86 dependents/platform/tags/item/peach_saplings.json +9b9cb6ddcd133e0b9ce2965945a513a8e825e66f dependents/platform/tags/item/peaches.json +669fa321971d9c4e0b89040c85c17f8f930fa9e9 dependents/platform/tags/item/peanut_butter_and_jam.json +3b3ae905d9d19ba0f4e9628de471168754495c91 dependents/platform/tags/item/peanut_seeds.json +f66c728130ab1e135f696ba0fc8c2350b9637741 dependents/platform/tags/item/peanuts.json +20e85580dedf38310f9e3f277ccd14d202e8b515 dependents/platform/tags/item/pear_saplings.json +c72843247b4a63b59ecc4826eeed587bb73bcc8b dependents/platform/tags/item/pears.json +ae4ef6e3321b31e8c773c787de5c3196c49ba0f1 dependents/platform/tags/item/pecan_ice_creams.json +3a5c488383ca75c4832286d366f42a6970d5ab4c dependents/platform/tags/item/pecan_pies.json +eca13a032dcfd8de7a07805c166c36804643062d dependents/platform/tags/item/pecan_saplings.json +8f52720ab400730a4c74af9a5f8d5a75fcbc5226 dependents/platform/tags/item/pecans.json +cb796793167fafc4689c22f255fd844ebed353ce dependents/platform/tags/item/pepper.json +ecf6f455aba34b23e9f6d87414e4e80a7a980f40 dependents/platform/tags/item/pepper_seeds.json +8617eecc3aca61587a4f51605a86402ecd4e12f4 dependents/platform/tags/item/pepperoni.json +0708e9f4fa371a5ef89c2880ee3b12f2fb478ac3 dependents/platform/tags/item/persimmon_saplings.json +4cd6c10aa9b085be06f5a22420a0a5c1e1c336e0 dependents/platform/tags/item/persimmons.json +c1c74f558181f1d3472fcef210c26f885b09a9f2 dependents/platform/tags/item/pineapple_juices.json +45957a542063ec73e6bf0c81d81624843e16d8c4 dependents/platform/tags/item/pineapple_pepperoni_pizzas.json +4922b71eeddccba0a40952b482c9e8d81832e102 dependents/platform/tags/item/pineapple_seeds.json +61f262f75b2f59b595973548c59ff60704728009 dependents/platform/tags/item/pineapples.json +b6f102ab9130f532b2c4db7ffa58e0a1f9e5c80b dependents/platform/tags/item/pizzas.json +1088ccb933171d2dbb32723d17bc5bc8887c2704 dependents/platform/tags/item/plum_saplings.json +718e4c407f6eeaf11471e4a7f1fb46f3d656f1ad dependents/platform/tags/item/plums.json +1350710fe2592d496106e9aadfadda7878ca5789 dependents/platform/tags/item/popcorn.json +5ffc80ff3f9637d53e5593cceb1b78cbfb71dd57 dependents/platform/tags/item/pork_and_beanss.json +6a9a54c4046d877175cf88b4b8e85589cd6d4680 dependents/platform/tags/item/pork_jerkies.json +f8059a1e2f69e5d8d458f213c130af0e0245dd3e dependents/platform/tags/item/potato_chips.json +4e874ec5e1eb2994584293e99936a96adaa8b32c dependents/platform/tags/item/potatoes.json +0f6ad8058401e73f4b8d245aaaa472e542aff921 dependents/platform/tags/item/protein_bars.json +aacccce774113b9ff53c7f42cdcb889d90ddebe2 dependents/platform/tags/item/pumpkin_bars.json +efb7ae5b803e10eefc96e5c8bcbac852be63ded2 dependents/platform/tags/item/pumpkin_soups.json +cc6aa281275f04d7cf2429e4c10bc1d121383417 dependents/platform/tags/item/pumpkin_spice_lattes.json +d4b5f200768370be3635c45d0ff117e3ce418be0 dependents/platform/tags/item/quiche.json +778a7756156eb781261493439a4541f2d2ded123 dependents/platform/tags/item/radish_seeds.json +57e448173adfc27c63e55343603f84c8f2e986c8 dependents/platform/tags/item/radishes.json +daa5cc589cee74fc358d494e6f5051d5c18185d8 dependents/platform/tags/item/raisin_oatmeal_cookies.json +ce505c1133f270cd2862195757fa113eeb099f05 dependents/platform/tags/item/raisins.json +9535d23d9f8809e600b9f8b83ea6023e89d08e10 dependents/platform/tags/item/raspberries.json +a5dd26f231f0916c79793c89643994833f221c23 dependents/platform/tags/item/raspberry_jams.json +76712cfd997287d5639df42d58a2807086ba29e6 dependents/platform/tags/item/raspberry_seeds.json +4b464bdbc8d30f0893f9f42c84584ec4320d39cb dependents/platform/tags/item/ravioli.json +956d1b4eb8ba26d670028a2b804122facd590048 dependents/platform/tags/item/rhubarb.json +d130915fef84ce8bca4b71a3fbc158b1ddfad030 dependents/platform/tags/item/rhubarb_pies.json +bc3b26893342f8d31296a8c10d39b0f2b35a2d83 dependents/platform/tags/item/rhubarb_seeds.json +d2a6f051aa0ef0f279124cf95abecc1f513f144c dependents/platform/tags/item/rice.json +520d64707a90fc336bc5e76ce1285120ef8e5e5c dependents/platform/tags/item/rice_seeds.json +6b1a678bea7fd25c5d06f1e772cad811c75e0136 dependents/platform/tags/item/roasted_nuts.json +aacf6b0e6ee6dc7ee6a03ad151f4c903848b0621 dependents/platform/tags/item/roasted_pumpkin_seeds.json +478f946db86aa227d5a4bdb5296d863e5d27052c dependents/platform/tags/item/roasted_sunflower_seeds.json +b354ada6e3ae323bcdb543a14904b69f93b6e814 dependents/platform/tags/item/roe.json +a10f3dd2a049d39540e52eaa759fe9d5f60f595e dependents/platform/tags/item/rum_raisin_ice_creams.json +0f28dbba2c6628c9dd48a7308d355f00e344a7e4 dependents/platform/tags/item/rums.json +5c2218a84743aab0c6457af0500824ecec5dca14 dependents/platform/tags/item/rutabaga_seeds.json +3189b2c9562dda17e2984fc7bf5535c6d8b3ad5e dependents/platform/tags/item/rutabagas.json +9b63d7c6c131b3a9eaa910db6614c9494876aa0a dependents/platform/tags/item/saguaro_juices.json +2cd3f0003767a0b89d20c69049b6e3a8bf069554 dependents/platform/tags/item/saguaro_seeds.json +fc4a8b1bb33b2597d46fadc641e260e0915158ef dependents/platform/tags/item/saguaros.json +3940b2be16b8ca6babaab1fd1963eec4091ae01f dependents/platform/tags/item/salsas.json +e5e7c17efaeaaa402c4705dadc0aad43e10b6ccf dependents/platform/tags/item/salt_ores.json +b0610552169eff5769c841d7ad4beeeaaed58306 dependents/platform/tags/item/saplings.json +0ffaa32a4a695a58d44a13cc1e68bf3dbbc21236 dependents/platform/tags/item/saplings/almond.json +a0242a67a797a1c669ce86c208f9a02d75e8b2e7 dependents/platform/tags/item/saplings/apple.json +429388975131e468aa590def9b8bc35e80c6727c dependents/platform/tags/item/saplings/apricot.json +95df8d78ae1e647767f7bd77bf4e06f884a2df7d dependents/platform/tags/item/saplings/avocado.json +93e033ebedf1d4bbe479cfb4cbdbaf1c0287cdda dependents/platform/tags/item/saplings/banana.json +3dc1f70db66287b8bc37f75eb86940ebcd30da12 dependents/platform/tags/item/saplings/cashew.json +d37114d48c3bb55d1fed22450a001b0b95dbcadc dependents/platform/tags/item/saplings/cherry.json +063516f1a23c35ff9091c735e39fae07b41d3b2a dependents/platform/tags/item/saplings/cinnamon.json +fb3f02d9fedd615a240ef36427ff54bebd559593 dependents/platform/tags/item/saplings/coconut.json +cfba3af70d3381e56bbf7f104a08f860830b2916 dependents/platform/tags/item/saplings/date.json +d20ee779b1d44f82990de035706505ba80748bcd dependents/platform/tags/item/saplings/dragonfruit.json +f892b6f651f808ec2a4a72d329fdae600ba802d9 dependents/platform/tags/item/saplings/fig.json +ced51481c967d76c1071cbef0a6da876b2d4a8b8 dependents/platform/tags/item/saplings/grapefruit.json +d43e1f72e1034e18d326bbb47baf542fd2e02b78 dependents/platform/tags/item/saplings/kumquat.json +479c59a54b6cb467720d3fe9f884c72be1bac35d dependents/platform/tags/item/saplings/lemon.json +73b6e782d01d6761eed89db8f169ba22fe448ff5 dependents/platform/tags/item/saplings/lime.json +aeecbff2f37b5de58f64a2f9766288fcdbd8ef70 dependents/platform/tags/item/saplings/mango.json +904b91ff45815cb6f61378ae2ce265e7753261b2 dependents/platform/tags/item/saplings/nectarine.json +3a72ea9f61dbb5c9cf1d2185dd9e066cd3a4e574 dependents/platform/tags/item/saplings/nutmeg.json +c53ba2a0c7307be9f38c5aed94eaf56c350fc0fd dependents/platform/tags/item/saplings/orange.json +71084298ad052959d331827c396e012e3661a823 dependents/platform/tags/item/saplings/peach.json +9a4a58c552658f78b14d0d30b7d14dca1ee37ab8 dependents/platform/tags/item/saplings/pear.json +6e9a7a5179f46910cd6d2c7e386d36f8fa01d4cc dependents/platform/tags/item/saplings/pecan.json +1d7b4fb50b41d9c589ebea5c0822ac0542d139f8 dependents/platform/tags/item/saplings/persimmon.json +4d2f13decb4bbc13ba60c17b3ac82087973c1ba7 dependents/platform/tags/item/saplings/plum.json +3d030de3930e00bb42432fe60abb372c6e85592d dependents/platform/tags/item/saplings/starfruit.json +240bff4fd1301b7b33a798e6c6f390dd5d52c590 dependents/platform/tags/item/saplings/walnut.json +4966cc447dd9543990b2150604f672705ac60eb4 dependents/platform/tags/item/saucy_chips.json +9a22dd54752de31c8f171e7a8fe4a9601765bf42 dependents/platform/tags/item/sausages.json +9fcdf543249e374f4656606e93193044e7755fdc dependents/platform/tags/item/scones.json +d96b406347cef770e9aa454ff7228a4f4187cff6 dependents/platform/tags/item/scrambled_eggs.json +7ec376f8e7c46dd53f5f1acde1240c2cd7e4fd1b dependents/platform/tags/item/sea_lettuce.json +85f9048bdb81253fa07b76884e4447edf417d46e dependents/platform/tags/item/seeds.json +c1bf231e5d838dd4bd162c4c96f4e4d433f07a8a dependents/platform/tags/item/seeds/artichoke.json +8f62ebb45840b7fe6a6b65e556c898012d59fdf0 dependents/platform/tags/item/seeds/asparagus.json +208c537edb6f75409d7d6f30070af5779f118b5b dependents/platform/tags/item/seeds/barley.json +5f265ec5a42f5e6b1436d7b633dbbb93f16bb97b dependents/platform/tags/item/seeds/basil.json +89ad80c599505d8f4ea7b004867b998386554e5e dependents/platform/tags/item/seeds/bellpepper.json +d4370a0b0293ab71879e03a5544293f94253120d dependents/platform/tags/item/seeds/blackbean.json +9f010e49b63c4659831b28d6bfe23521065dadba dependents/platform/tags/item/seeds/blackberry.json +cd93b17ecece9eff954d2bfd6ef1ca5f09333897 dependents/platform/tags/item/seeds/blueberry.json +47c0e9a2c0fe79af7c7463897627121ce814e63f dependents/platform/tags/item/seeds/broccoli.json +440397da9abaf1e3e7beb2c595d7540f2df05950 dependents/platform/tags/item/seeds/cabbage.json +d80585cc6440fcf434c458672fb548284c4a9600 dependents/platform/tags/item/seeds/cantaloupe.json +878906fb25eb63f783363c2de22233db0b1b193c dependents/platform/tags/item/seeds/cauliflower.json +5330fb58c1bd0acef94e2f84ff6543e95ff285ab dependents/platform/tags/item/seeds/celery.json +f85c3ad1010df22ab9fa56a2d6d2efb8e8f9a417 dependents/platform/tags/item/seeds/chilepepper.json +1f7b2dab28514f3c14556a08415a91a511f48bf9 dependents/platform/tags/item/seeds/coffee_beans.json +597f24f409b243f6e4b5b6062e3124601b4deed5 dependents/platform/tags/item/seeds/corn.json +efdd859a87653db1644f22fa3b97f579a3f2a2de dependents/platform/tags/item/seeds/cranberry.json +d735faaec89690800935696a9c19271920b79563 dependents/platform/tags/item/seeds/cucumber.json +d310b3da318deefd8cb8ff8a8e2a483a9e1e7374 dependents/platform/tags/item/seeds/currant.json +be64ecc9b1e3e45195a9ff10ad91434b0d2e99d6 dependents/platform/tags/item/seeds/eggplant.json +8906b1b1636d8933c4b2add03ae4178ac363688e dependents/platform/tags/item/seeds/elderberry.json +167c58d032ed333901c6135db4bdd6f0fa0b8e79 dependents/platform/tags/item/seeds/garlic.json +a1e3a3f4e7cce93543f0cf3130b05d3a49ebf455 dependents/platform/tags/item/seeds/ginger.json +996cfda32a38d4a70d2d54ad21216bf98df76756 dependents/platform/tags/item/seeds/grape.json +97f412f439eb44700f6f837df96e2492af37a3f5 dependents/platform/tags/item/seeds/greenbean.json +eb0b5ae63612cacc60bfd2f5a65715a429757274 dependents/platform/tags/item/seeds/greenonion.json +e2b4de53715b273f59f79b7dddfa1d2d6cec5e22 dependents/platform/tags/item/seeds/honeydew.json +05d5a4b3dc9c6e7aad89f22425e29f7e879e3070 dependents/platform/tags/item/seeds/hops.json +41a78ca1301790598c6c0d998106b93d5266a2b4 dependents/platform/tags/item/seeds/kale.json +ad8b8a62a69fdd26d1f4dc94cfe5ad1403c6aad0 dependents/platform/tags/item/seeds/kiwi.json +70a3fc5b95a55a33144ee2a2fd46e9b3d34d4880 dependents/platform/tags/item/seeds/leek.json +867c0d6601cdda6dba900a23e1345c71e61f32fe dependents/platform/tags/item/seeds/lettuce.json +18a1c359deae0dc16874a8460f335525d01bba18 dependents/platform/tags/item/seeds/mustard.json +21da9e594410d9d9d5c6b8fbad2d0f71d411f2d8 dependents/platform/tags/item/seeds/oat.json +71e0084552ecd8aec8780e3202d42cff286541c8 dependents/platform/tags/item/seeds/olive.json +191618f6c1df414f440b854db0e0c6d2acc7c7db dependents/platform/tags/item/seeds/onion.json +241a0c6b3d3bf042d0e1cc4e3cbfaceed4d67d58 dependents/platform/tags/item/seeds/peanut.json +5b81f0d66101a2febd4d2e932776e5a5c7899a9a dependents/platform/tags/item/seeds/pepper.json +c4e02774a7901a9850dc4f81caabbd37a902afd1 dependents/platform/tags/item/seeds/pineapple.json +aae048ad001cdfa06b1fdeb127c6f030f35d4777 dependents/platform/tags/item/seeds/radish.json +b9adcf17c83ced269da94038920982eef7476121 dependents/platform/tags/item/seeds/raspberry.json +7566e81095e8201acdc4a72ec6107f9b24d1a446 dependents/platform/tags/item/seeds/rhubarb.json +ff1a6c8b0932cdd3d0fd5664994ba75afe170e31 dependents/platform/tags/item/seeds/rice.json +6567653d5a97b8daa235b801df35b1aac5568233 dependents/platform/tags/item/seeds/rutabaga.json +e20238c17b1b67a9b6d87383e7e8a3e73085c70d dependents/platform/tags/item/seeds/saguaro.json +fd6963bce0082ca295f5f51249599cf20a59c51b dependents/platform/tags/item/seeds/soybean.json +d792bdfa7bf8b66be76d3c4b13c0a2670dac0407 dependents/platform/tags/item/seeds/spinach.json +d41ef0d4c74a576d647ed83b0236b541404aac2d dependents/platform/tags/item/seeds/squash.json +d52b1d1d981c20b8816664b748704a8e08712951 dependents/platform/tags/item/seeds/strawberry.json +c509e28de387c50a00779626fe768e6a0a62f251 dependents/platform/tags/item/seeds/sweetpotato.json +5735826507869cd6502cacea381cbfd804cbfd59 dependents/platform/tags/item/seeds/tea_leaves.json +69610f009e18923c0ac8df55aa7670c73d327422 dependents/platform/tags/item/seeds/tomatillo.json +f82bbcfd6c03dc2a94f0e7ba35ec5698f04e0e7a dependents/platform/tags/item/seeds/tomato.json +e2d1ea5776babf2e340d9cd3acc6d05783249395 dependents/platform/tags/item/seeds/turmeric.json +e1113e2b5252f6fc60bc01cae8a6a640ecc9e6d2 dependents/platform/tags/item/seeds/turnip.json +05c22472563ea4dc742666a4522fc094f5226c3a dependents/platform/tags/item/seeds/vanilla.json +5cea132eb5e18887bcf2206ba24ae2e32e72b628 dependents/platform/tags/item/seeds/yam.json +4ce5ad8cdd5def327e5727e0381e05d806a728a8 dependents/platform/tags/item/seeds/zucchini.json +2c8a170ef70a6287e602f2352dc9178deca68730 dependents/platform/tags/item/shepherds_pie.json +6342bb0ca63df290751b2bc4cd0cf2eb502635fe dependents/platform/tags/item/shrimp.json +677ce8af85aab6e414feeeba5cff48e7b060a8e0 dependents/platform/tags/item/snicker_doodles.json +3d2578ce8062173ae45799b05f361f382e5b2779 dependents/platform/tags/item/soy_milks.json +6902ea0c47e40773f1fc2ac5a3a3a978ff073ff1 dependents/platform/tags/item/soy_sauces.json +be02b3af93122ad0bdf48a7865b5bd463315f6d0 dependents/platform/tags/item/soybean_seeds.json +a35c5bdbb42b02c5cbc42973cc5f6ee8a0bf5204 dependents/platform/tags/item/soybeans.json +e668e3831408004347c191d58ebbe9889cf2d530 dependents/platform/tags/item/spaghetti_squashs.json +2b245266e496d4d401a398cc71fb08b4577b8351 dependents/platform/tags/item/spinach.json +280acd94690c10cfe6c1a0429e856c20146e9089 dependents/platform/tags/item/spinach_seeds.json +9225d3c9d98a3435d78bf0967f81ed906a52bccc dependents/platform/tags/item/squash_seeds.json +e0da1d9cc13940a1d1ce60ad8a8d5bb22384c2b2 dependents/platform/tags/item/squashes.json +dbec46606f20a59b558aecd5f9c69169d9ac649e dependents/platform/tags/item/starfruit_saplings.json +f347382cc1522dfb5a7dcb8d2ddd57d0559f117d dependents/platform/tags/item/starfruits.json +299d69a957c24bdd647a7f66e62e140cec9b3ab0 dependents/platform/tags/item/steamed_clams.json +51a1bff4bc03e8cf22b36d61137f06241a8f4942 dependents/platform/tags/item/steamed_crabs.json +ed12affdd24117212238730f55b562ffdf8a0c88 dependents/platform/tags/item/steamed_rices.json +060e9d3d9d7ce248e7f02dc9fd4baf56dee4f3cb dependents/platform/tags/item/sticky_toffee_pudding.json +7bee6c6089c555fee204cb12981d3f29e4280342 dependents/platform/tags/item/strawberries.json +a2a73da05547f95ae402144425dce2e6687095b8 dependents/platform/tags/item/strawberry_ice_creams.json +2d5233b81d0028afe878b64ae8b6c5b22683fea6 dependents/platform/tags/item/strawberry_jams.json +7b5f4a4d2f5be126763fc33fbd3a146bbbea4b6c dependents/platform/tags/item/strawberry_seeds.json +505f495875bfddd06a30bca1054bf8ddce3b0451 dependents/platform/tags/item/strawberry_smoothies.json +d378d2ac7de4fec36597f5b94e3544be5fb875b2 dependents/platform/tags/item/sunny_side_eggs.json +da94e63be0854615b41fba310a1e0a5e3030e179 dependents/platform/tags/item/supreme_pizzas.json +d44680c88d689dc53f76643c86327b2f330f401a dependents/platform/tags/item/sushis.json +1b6cc2767ce064220c8e414cf9011b0a9d9840f6 dependents/platform/tags/item/sweet_crepes.json +b2c3dc263218b91df44a934b3b141c7420cb573f dependents/platform/tags/item/sweet_potato_friess.json +53f0e6c4560257fbd4725b4a8a5319026a64b8d2 dependents/platform/tags/item/sweetpotato_seeds.json +92353914453ef7cdb5a60c24a80998dec4c73407 dependents/platform/tags/item/sweetpotatos.json +057ed1ac9acb02b6dc569178dd137919fe54d96e dependents/platform/tags/item/tacos.json +16b21e329c4a342e2bb810f9d895a3e26c9c3c81 dependents/platform/tags/item/tea.json +5659e425c691789d0b14aa41375c037000c979c1 dependents/platform/tags/item/tea_leaves.json +5daa1d20b4dbb89377b648190882b58775792800 dependents/platform/tags/item/tea_seeds.json +330d14792257419ceef973f49775f45e52885228 dependents/platform/tags/item/the_big_breakfast.json +0743c00c0adff01e52272f40f79f1ae02e3424ff dependents/platform/tags/item/toast_with_jam.json +31550c4ccdad3ef8e8d1aa32530a784b472caa76 dependents/platform/tags/item/toasts.json +df5006e2057499af49fec43dac8482b82863b72b dependents/platform/tags/item/tofu.json +030a1df93e85f8a639487abc7ea0f5bbc24d875a dependents/platform/tags/item/tofu_and_dumplings.json +f826fbd0f7449acf40bcdde9ce5b9fc797fc7562 dependents/platform/tags/item/tofuburgers.json +9c657ced8846b23adedb23e04e26bc3e42d82096 dependents/platform/tags/item/tomatillo_seeds.json +e8b362681a2ffae7da7ec38d847482cf6935304f dependents/platform/tags/item/tomatillos.json +ce3ef0d73c47a6e219668cd965ba6823cc63b899 dependents/platform/tags/item/tomato_juices.json +a62ec6b72d966d4967fe7d9f3bd94e22d60d1b35 dependents/platform/tags/item/tomato_seeds.json +71d20ccee061d6efe67d4ef0eff553b13bce9a72 dependents/platform/tags/item/tomatoes.json +ae238f529a4d7138b3339d07a178dc4514abf5d8 dependents/platform/tags/item/tortillas.json +7b41d392bdf923b3f4be56febbda026acda28e76 dependents/platform/tags/item/trail_mixes.json +c389b53eeb57f65c4477cf100d577aa6c617c3d2 dependents/platform/tags/item/treacle_tarts.json +92a5f460133901db70a15a3c2970f5c23092f81a dependents/platform/tags/item/trifle.json +ea1daadf4fd8fa00902d532d5ef1a87c9ad2e39d dependents/platform/tags/item/tuna.json +d504860f7713c43abe8e114a183330f05740c1a1 dependents/platform/tags/item/tuna_rolls.json +626fe2f58c657ffeaa498e7339530360d70d3963 dependents/platform/tags/item/tuna_sandwiches.json +ab87e0802bf449e7aab946faec331a8e5989b5a1 dependents/platform/tags/item/turmeric.json +1f13ecb6e2d78d78b6dd6ca0525dab197aa30104 dependents/platform/tags/item/turmeric_seeds.json +3e0a86ed7da862882774ee98523fc63906834197 dependents/platform/tags/item/turnip_seeds.json +bf31468a79956c18aa064c0689e681b23acfdb24 dependents/platform/tags/item/turnips.json +f0fe2214e16f3f00eea06cd0a31e3c7d7477bef9 dependents/platform/tags/item/vanilla.json +5b764e5607e09d268761f539fec5d32dbe836f7c dependents/platform/tags/item/vanilla_ice_creams.json +6e13f4636558ed5693cb2690858c51249d255640 dependents/platform/tags/item/vanilla_seeds.json +38690098ec3cbf620c4007de678839d1beccb471 dependents/platform/tags/item/vegetables.json +b0b4c552a762b72ed20b636d7e5bc2574f81e2f6 dependents/platform/tags/item/vegetables/artichoke.json +8fd47d575e0041e028559f61a21475e49cbea0f2 dependents/platform/tags/item/vegetables/asparagus.json +af18dc096d5db4e5d5bc11db580d79df22824969 dependents/platform/tags/item/vegetables/broccoli.json +d617020fa5510fb5ced27222bed081fefbe48c08 dependents/platform/tags/item/vegetables/cabbage.json +a7ae64afe98796b227bb0734e661a63c044ceb97 dependents/platform/tags/item/vegetables/cauliflower.json +9f5fa3b35c0b1db0526852e94bb31137cff5f7a0 dependents/platform/tags/item/vegetables/celery.json +266db0c94dad0170c8a049ba52657c927df17627 dependents/platform/tags/item/vegetables/cucumber.json +1fc9a6a71ee701630d8fdd48ad99ad9476915633 dependents/platform/tags/item/vegetables/eggplant.json +d9d16ec22b978816f5608cfa7814fb56b053309c dependents/platform/tags/item/vegetables/garlic.json +c8256e936cd7ad226edcc2ac82abb01c5ca0d440 dependents/platform/tags/item/vegetables/ginger.json +6396fb3de0a61ba062c14a5623a7837bded27c9c dependents/platform/tags/item/vegetables/greenbean.json +3d5c274df01581a1fa99ad62003c04373fb52082 dependents/platform/tags/item/vegetables/greenonion.json +c86f0e3a0ba92406b0728741fc8b9f33a2988b4d dependents/platform/tags/item/vegetables/kale.json +f1f0e6d21518b0f89fef1787364294b4e92ce710 dependents/platform/tags/item/vegetables/leek.json +48552fa30b11944a551d28197c3fa99e269c8f9c dependents/platform/tags/item/vegetables/lettuce.json +5863ff260ad5481e2b4b20ae2c2777f9f847b34d dependents/platform/tags/item/vegetables/mustard.json +d8a80b98b224ab313de974a72c90c1e4ae081825 dependents/platform/tags/item/vegetables/onion.json +69942480b8fe6c013e12c2df0f9d4d9e4a180acc dependents/platform/tags/item/vegetables/radish.json +192e5b2d59caa7a39f17ebbe3445de47f2041e95 dependents/platform/tags/item/vegetables/rhubarb.json +7ec17552c75df9f34b21811459fee18ca73ac2e1 dependents/platform/tags/item/vegetables/rutabaga.json +3f151b1d641084b35db546e4b19b3383f1b93392 dependents/platform/tags/item/vegetables/soybean.json +e3dc0cf5ae1ee145551919f127aad4557f5beea9 dependents/platform/tags/item/vegetables/spinach.json +94a9f07b25fe6ae08ace58b03e7aee07ee328af0 dependents/platform/tags/item/vegetables/squash.json +4c194c9e0594fab3f3b2a7a01a854d53e88da767 dependents/platform/tags/item/vegetables/sweetpotato.json +33c8cd68df0e4cac795aea26addcf97a4c9c3378 dependents/platform/tags/item/vegetables/tomatillo.json +43c79ed45068f6f589f92fdb813b627c04b50c6f dependents/platform/tags/item/vegetables/tomato.json +31d181ba9e09599baf8d23991400747a1b46a0df dependents/platform/tags/item/vegetables/turnip.json +6fe0bed26e1a29f3954732988cf4de9f4956860c dependents/platform/tags/item/vegetables/yam.json +9e5c4daa378ebd26722077b3d4e85ae46b5a4200 dependents/platform/tags/item/vegetables/zucchini.json +792fce880d8c504362f118e128b9d3ca89dedd8e dependents/platform/tags/item/veggie_salads.json +0d2d7e328ba6aec98c21a1f4c95b62f876c1b890 dependents/platform/tags/item/walnut_saplings.json +dd1e0e2c789ceba29c3ad4392cb60099874fb57f dependents/platform/tags/item/walnuts.json +d69946d063e00e9bffda724e08dcdd34234b2cc6 dependents/platform/tags/item/water_bottles.json +b8bc6fb87f448bcf3ca87bb9b179c0cd4a77ac22 dependents/platform/tags/item/wines.json +85cc15d91fcb3895be4986442ca67b03b07b53c2 dependents/platform/tags/item/yam_jam.json +15a46b5f3ff9a530a9d250e977fb6034d7abf884 dependents/platform/tags/item/yam_seeds.json +84cfefbed049059fc9a1ffc8887a5a8a89687c0b dependents/platform/tags/item/yams.json +c520eb00d7b47e48dd722c404445218491755e9f dependents/platform/tags/item/yoghurts.json +6ad8250b980385329113ef551c65721fe6ac3d95 dependents/platform/tags/item/zucchini.json +8e0c7415119fcc2f306219585ae75b2cd00c1714 dependents/platform/tags/item/zucchini_seeds.json diff --git a/src/main/generated/.cache/f66a35806b9631b3fae7f5cf731167ec5e7fac36 b/src/main/generated/.cache/f66a35806b9631b3fae7f5cf731167ec5e7fac36 index 0422a5be7..7b819a843 100644 --- a/src/main/generated/.cache/f66a35806b9631b3fae7f5cf731167ec5e7fac36 +++ b/src/main/generated/.cache/f66a35806b9631b3fae7f5cf731167ec5e7fac36 @@ -1,10 +1,10 @@ -// 1.21 2024-06-17T18:40:20.1945891 Croptopia/Tags for minecraft:item -b6dca38e55a491ee52c75f670baeada8462a65f8 data\minecraft\tags\item\chicken_food.json -b6dca38e55a491ee52c75f670baeada8462a65f8 data\minecraft\tags\item\parrot_food.json -e1869b0a6def5b71118a163d67616deb2661391d data\croptopia\tags\item\cinnamon_logs.json -f9138aa662f6baccc40a83f06b20b87e90424c2e data\minecraft\tags\item\piglin_food.json -b6dca38e55a491ee52c75f670baeada8462a65f8 data\minecraft\tags\item\villager_plantable_seeds.json -c94d6f79ce59608453ea70f72ef154084a5b9b13 data\minecraft\tags\item\logs_that_burn.json -c9c457d7127a94df94f45ae2591496e3cb9ad793 data\minecraft\tags\item\saplings.json -f0db1a43071e1118cf33024f08ae8a067eef7f2a data\minecraft\tags\item\fox_food.json -f1c33af3c16b3b7b711b966d20533ed9b30d4516 data\minecraft\tags\item\fishes.json +// 1.21.5 -999999999-01-01T00:00:00 Croptopia/Tags for minecraft:item +e1869b0a6def5b71118a163d67616deb2661391d data/croptopia/tags/item/cinnamon_logs.json +b6dca38e55a491ee52c75f670baeada8462a65f8 data/minecraft/tags/item/chicken_food.json +f1c33af3c16b3b7b711b966d20533ed9b30d4516 data/minecraft/tags/item/fishes.json +f0db1a43071e1118cf33024f08ae8a067eef7f2a data/minecraft/tags/item/fox_food.json +c94d6f79ce59608453ea70f72ef154084a5b9b13 data/minecraft/tags/item/logs_that_burn.json +b6dca38e55a491ee52c75f670baeada8462a65f8 data/minecraft/tags/item/parrot_food.json +f9138aa662f6baccc40a83f06b20b87e90424c2e data/minecraft/tags/item/piglin_food.json +c9c457d7127a94df94f45ae2591496e3cb9ad793 data/minecraft/tags/item/saplings.json +b6dca38e55a491ee52c75f670baeada8462a65f8 data/minecraft/tags/item/villager_plantable_seeds.json diff --git a/src/main/generated/assets/croptopia/items/ajvar.json b/src/main/generated/assets/croptopia/items/ajvar.json new file mode 100644 index 000000000..0edb34181 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/ajvar.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/ajvar" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/ajvar_toast.json b/src/main/generated/assets/croptopia/items/ajvar_toast.json new file mode 100644 index 000000000..2039ea6bb --- /dev/null +++ b/src/main/generated/assets/croptopia/items/ajvar_toast.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/ajvar_toast" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/almond.json b/src/main/generated/assets/croptopia/items/almond.json new file mode 100644 index 000000000..ee8ec5686 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/almond.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/almond" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/almond_brittle.json b/src/main/generated/assets/croptopia/items/almond_brittle.json new file mode 100644 index 000000000..c7aef6eda --- /dev/null +++ b/src/main/generated/assets/croptopia/items/almond_brittle.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/almond_brittle" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/almond_sapling.json b/src/main/generated/assets/croptopia/items/almond_sapling.json new file mode 100644 index 000000000..1ec34a392 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/almond_sapling.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/almond_sapling" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/anchovy.json b/src/main/generated/assets/croptopia/items/anchovy.json new file mode 100644 index 000000000..012630825 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/anchovy.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/anchovy" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/anchovy_pizza.json b/src/main/generated/assets/croptopia/items/anchovy_pizza.json new file mode 100644 index 000000000..64475a6a8 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/anchovy_pizza.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/anchovy_pizza" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/apple_juice.json b/src/main/generated/assets/croptopia/items/apple_juice.json new file mode 100644 index 000000000..a873b65c0 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/apple_juice.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/apple_juice" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/apple_pie.json b/src/main/generated/assets/croptopia/items/apple_pie.json new file mode 100644 index 000000000..ba7b7f3b5 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/apple_pie.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/apple_pie" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/apple_sapling.json b/src/main/generated/assets/croptopia/items/apple_sapling.json new file mode 100644 index 000000000..66a8779a6 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/apple_sapling.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/apple_sapling" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/apricot.json b/src/main/generated/assets/croptopia/items/apricot.json new file mode 100644 index 000000000..80e5506ed --- /dev/null +++ b/src/main/generated/assets/croptopia/items/apricot.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/apricot" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/apricot_jam.json b/src/main/generated/assets/croptopia/items/apricot_jam.json new file mode 100644 index 000000000..ac440f654 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/apricot_jam.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/apricot_jam" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/apricot_sapling.json b/src/main/generated/assets/croptopia/items/apricot_sapling.json new file mode 100644 index 000000000..93f32384c --- /dev/null +++ b/src/main/generated/assets/croptopia/items/apricot_sapling.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/apricot_sapling" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/artichoke.json b/src/main/generated/assets/croptopia/items/artichoke.json new file mode 100644 index 000000000..ab353ac28 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/artichoke.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/artichoke" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/artichoke_dip.json b/src/main/generated/assets/croptopia/items/artichoke_dip.json new file mode 100644 index 000000000..ed9b7044e --- /dev/null +++ b/src/main/generated/assets/croptopia/items/artichoke_dip.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/artichoke_dip" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/artichoke_seed.json b/src/main/generated/assets/croptopia/items/artichoke_seed.json new file mode 100644 index 000000000..36542117e --- /dev/null +++ b/src/main/generated/assets/croptopia/items/artichoke_seed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/artichoke_seed" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/asparagus.json b/src/main/generated/assets/croptopia/items/asparagus.json new file mode 100644 index 000000000..77eb81688 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/asparagus.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/asparagus" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/asparagus_seed.json b/src/main/generated/assets/croptopia/items/asparagus_seed.json new file mode 100644 index 000000000..c79f52c0d --- /dev/null +++ b/src/main/generated/assets/croptopia/items/asparagus_seed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/asparagus_seed" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/avocado.json b/src/main/generated/assets/croptopia/items/avocado.json new file mode 100644 index 000000000..86cc18d36 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/avocado.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/avocado" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/avocado_sapling.json b/src/main/generated/assets/croptopia/items/avocado_sapling.json new file mode 100644 index 000000000..bc8b22c79 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/avocado_sapling.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/avocado_sapling" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/avocado_toast.json b/src/main/generated/assets/croptopia/items/avocado_toast.json new file mode 100644 index 000000000..59f010fdf --- /dev/null +++ b/src/main/generated/assets/croptopia/items/avocado_toast.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/avocado_toast" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/bacon.json b/src/main/generated/assets/croptopia/items/bacon.json new file mode 100644 index 000000000..4f3690521 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/bacon.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/bacon" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/baked_beans.json b/src/main/generated/assets/croptopia/items/baked_beans.json new file mode 100644 index 000000000..c7f0a739f --- /dev/null +++ b/src/main/generated/assets/croptopia/items/baked_beans.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/baked_beans" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/baked_crepes.json b/src/main/generated/assets/croptopia/items/baked_crepes.json new file mode 100644 index 000000000..2a48c8e65 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/baked_crepes.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/baked_crepes" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/baked_sweet_potato.json b/src/main/generated/assets/croptopia/items/baked_sweet_potato.json new file mode 100644 index 000000000..2af32c870 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/baked_sweet_potato.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/baked_sweet_potato" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/baked_yam.json b/src/main/generated/assets/croptopia/items/baked_yam.json new file mode 100644 index 000000000..9b7ea3ca8 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/baked_yam.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/baked_yam" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/banana.json b/src/main/generated/assets/croptopia/items/banana.json new file mode 100644 index 000000000..1d891eda8 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/banana.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/banana" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/banana_cream_pie.json b/src/main/generated/assets/croptopia/items/banana_cream_pie.json new file mode 100644 index 000000000..665c78a57 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/banana_cream_pie.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/banana_cream_pie" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/banana_nut_bread.json b/src/main/generated/assets/croptopia/items/banana_nut_bread.json new file mode 100644 index 000000000..9c7b70957 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/banana_nut_bread.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/banana_nut_bread" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/banana_sapling.json b/src/main/generated/assets/croptopia/items/banana_sapling.json new file mode 100644 index 000000000..504600efb --- /dev/null +++ b/src/main/generated/assets/croptopia/items/banana_sapling.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/banana_sapling" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/banana_smoothie.json b/src/main/generated/assets/croptopia/items/banana_smoothie.json new file mode 100644 index 000000000..f7bab8076 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/banana_smoothie.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/banana_smoothie" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/barley.json b/src/main/generated/assets/croptopia/items/barley.json new file mode 100644 index 000000000..ea87a5333 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/barley.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/barley" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/barley_seed.json b/src/main/generated/assets/croptopia/items/barley_seed.json new file mode 100644 index 000000000..69661fb7f --- /dev/null +++ b/src/main/generated/assets/croptopia/items/barley_seed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/barley_seed" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/basil.json b/src/main/generated/assets/croptopia/items/basil.json new file mode 100644 index 000000000..c96b6c2e1 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/basil.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/basil" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/basil_seed.json b/src/main/generated/assets/croptopia/items/basil_seed.json new file mode 100644 index 000000000..c06fd18b2 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/basil_seed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/basil_seed" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/beef_jerky.json b/src/main/generated/assets/croptopia/items/beef_jerky.json new file mode 100644 index 000000000..6868bd8de --- /dev/null +++ b/src/main/generated/assets/croptopia/items/beef_jerky.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/beef_jerky" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/beef_stew.json b/src/main/generated/assets/croptopia/items/beef_stew.json new file mode 100644 index 000000000..07a729e3a --- /dev/null +++ b/src/main/generated/assets/croptopia/items/beef_stew.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/beef_stew" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/beef_stir_fry.json b/src/main/generated/assets/croptopia/items/beef_stir_fry.json new file mode 100644 index 000000000..e4cfee81a --- /dev/null +++ b/src/main/generated/assets/croptopia/items/beef_stir_fry.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/beef_stir_fry" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/beef_wellington.json b/src/main/generated/assets/croptopia/items/beef_wellington.json new file mode 100644 index 000000000..a97ac3fe2 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/beef_wellington.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/beef_wellington" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/beer.json b/src/main/generated/assets/croptopia/items/beer.json new file mode 100644 index 000000000..2762d21b1 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/beer.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/beer" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/beetroot_salad.json b/src/main/generated/assets/croptopia/items/beetroot_salad.json new file mode 100644 index 000000000..7267940db --- /dev/null +++ b/src/main/generated/assets/croptopia/items/beetroot_salad.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/beetroot_salad" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/bellpepper.json b/src/main/generated/assets/croptopia/items/bellpepper.json new file mode 100644 index 000000000..f760f573c --- /dev/null +++ b/src/main/generated/assets/croptopia/items/bellpepper.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/bellpepper" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/bellpepper_seed.json b/src/main/generated/assets/croptopia/items/bellpepper_seed.json new file mode 100644 index 000000000..f20b4cc7b --- /dev/null +++ b/src/main/generated/assets/croptopia/items/bellpepper_seed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/bellpepper_seed" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/blackbean.json b/src/main/generated/assets/croptopia/items/blackbean.json new file mode 100644 index 000000000..f9ee5e167 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/blackbean.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/blackbean" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/blackbean_seed.json b/src/main/generated/assets/croptopia/items/blackbean_seed.json new file mode 100644 index 000000000..657aca85d --- /dev/null +++ b/src/main/generated/assets/croptopia/items/blackbean_seed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/blackbean_seed" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/blackberry.json b/src/main/generated/assets/croptopia/items/blackberry.json new file mode 100644 index 000000000..6574f7393 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/blackberry.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/blackberry" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/blackberry_jam.json b/src/main/generated/assets/croptopia/items/blackberry_jam.json new file mode 100644 index 000000000..e703397e0 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/blackberry_jam.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/blackberry_jam" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/blackberry_seed.json b/src/main/generated/assets/croptopia/items/blackberry_seed.json new file mode 100644 index 000000000..d5008fabd --- /dev/null +++ b/src/main/generated/assets/croptopia/items/blackberry_seed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/blackberry_seed" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/blt.json b/src/main/generated/assets/croptopia/items/blt.json new file mode 100644 index 000000000..182383a73 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/blt.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/blt" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/blueberry.json b/src/main/generated/assets/croptopia/items/blueberry.json new file mode 100644 index 000000000..021a1f5b0 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/blueberry.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/blueberry" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/blueberry_jam.json b/src/main/generated/assets/croptopia/items/blueberry_jam.json new file mode 100644 index 000000000..bdff44773 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/blueberry_jam.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/blueberry_jam" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/blueberry_seed.json b/src/main/generated/assets/croptopia/items/blueberry_seed.json new file mode 100644 index 000000000..38d94940f --- /dev/null +++ b/src/main/generated/assets/croptopia/items/blueberry_seed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/blueberry_seed" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/borscht.json b/src/main/generated/assets/croptopia/items/borscht.json new file mode 100644 index 000000000..753432fa6 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/borscht.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/borscht" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/broccoli.json b/src/main/generated/assets/croptopia/items/broccoli.json new file mode 100644 index 000000000..93ff850c8 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/broccoli.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/broccoli" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/broccoli_seed.json b/src/main/generated/assets/croptopia/items/broccoli_seed.json new file mode 100644 index 000000000..1b3e36251 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/broccoli_seed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/broccoli_seed" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/brownies.json b/src/main/generated/assets/croptopia/items/brownies.json new file mode 100644 index 000000000..97df092d3 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/brownies.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/brownies" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/burrito.json b/src/main/generated/assets/croptopia/items/burrito.json new file mode 100644 index 000000000..ae7ab3db9 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/burrito.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/burrito" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/butter.json b/src/main/generated/assets/croptopia/items/butter.json new file mode 100644 index 000000000..25d3e32f8 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/butter.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/butter" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/buttered_green_beans.json b/src/main/generated/assets/croptopia/items/buttered_green_beans.json new file mode 100644 index 000000000..efa476e57 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/buttered_green_beans.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/buttered_green_beans" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/buttered_toast.json b/src/main/generated/assets/croptopia/items/buttered_toast.json new file mode 100644 index 000000000..51a064ba0 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/buttered_toast.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/buttered_toast" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/cabbage.json b/src/main/generated/assets/croptopia/items/cabbage.json new file mode 100644 index 000000000..1aa473917 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/cabbage.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/cabbage" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/cabbage_roll.json b/src/main/generated/assets/croptopia/items/cabbage_roll.json new file mode 100644 index 000000000..e3e9cdd3a --- /dev/null +++ b/src/main/generated/assets/croptopia/items/cabbage_roll.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/cabbage_roll" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/cabbage_seed.json b/src/main/generated/assets/croptopia/items/cabbage_seed.json new file mode 100644 index 000000000..62c86c224 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/cabbage_seed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/cabbage_seed" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/caesar_salad.json b/src/main/generated/assets/croptopia/items/caesar_salad.json new file mode 100644 index 000000000..392321022 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/caesar_salad.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/caesar_salad" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/calamari.json b/src/main/generated/assets/croptopia/items/calamari.json new file mode 100644 index 000000000..bfec4c790 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/calamari.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/calamari" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/candied_kumquats.json b/src/main/generated/assets/croptopia/items/candied_kumquats.json new file mode 100644 index 000000000..6deffdcff --- /dev/null +++ b/src/main/generated/assets/croptopia/items/candied_kumquats.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/candied_kumquats" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/candied_nuts.json b/src/main/generated/assets/croptopia/items/candied_nuts.json new file mode 100644 index 000000000..40e831c3c --- /dev/null +++ b/src/main/generated/assets/croptopia/items/candied_nuts.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/candied_nuts" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/candy_corn.json b/src/main/generated/assets/croptopia/items/candy_corn.json new file mode 100644 index 000000000..7c17ac56a --- /dev/null +++ b/src/main/generated/assets/croptopia/items/candy_corn.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/candy_corn" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/cantaloupe.json b/src/main/generated/assets/croptopia/items/cantaloupe.json new file mode 100644 index 000000000..0fa88dee8 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/cantaloupe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/cantaloupe" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/cantaloupe_seed.json b/src/main/generated/assets/croptopia/items/cantaloupe_seed.json new file mode 100644 index 000000000..a4063f906 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/cantaloupe_seed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/cantaloupe_seed" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/caramel.json b/src/main/generated/assets/croptopia/items/caramel.json new file mode 100644 index 000000000..c5053a1d6 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/caramel.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/caramel" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/carnitas.json b/src/main/generated/assets/croptopia/items/carnitas.json new file mode 100644 index 000000000..8d4dca45e --- /dev/null +++ b/src/main/generated/assets/croptopia/items/carnitas.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/carnitas" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/cashew.json b/src/main/generated/assets/croptopia/items/cashew.json new file mode 100644 index 000000000..309a17420 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/cashew.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/cashew" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/cashew_chicken.json b/src/main/generated/assets/croptopia/items/cashew_chicken.json new file mode 100644 index 000000000..1c7da37b7 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/cashew_chicken.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/cashew_chicken" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/cashew_sapling.json b/src/main/generated/assets/croptopia/items/cashew_sapling.json new file mode 100644 index 000000000..336803814 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/cashew_sapling.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/cashew_sapling" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/cauliflower.json b/src/main/generated/assets/croptopia/items/cauliflower.json new file mode 100644 index 000000000..5dc8fc75a --- /dev/null +++ b/src/main/generated/assets/croptopia/items/cauliflower.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/cauliflower" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/cauliflower_seed.json b/src/main/generated/assets/croptopia/items/cauliflower_seed.json new file mode 100644 index 000000000..bee27e0cd --- /dev/null +++ b/src/main/generated/assets/croptopia/items/cauliflower_seed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/cauliflower_seed" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/celery.json b/src/main/generated/assets/croptopia/items/celery.json new file mode 100644 index 000000000..75e5ba7e5 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/celery.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/celery" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/celery_seed.json b/src/main/generated/assets/croptopia/items/celery_seed.json new file mode 100644 index 000000000..88e4649b6 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/celery_seed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/celery_seed" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/cheese.json b/src/main/generated/assets/croptopia/items/cheese.json new file mode 100644 index 000000000..b4d7ab8ef --- /dev/null +++ b/src/main/generated/assets/croptopia/items/cheese.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/cheese" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/cheese_cake.json b/src/main/generated/assets/croptopia/items/cheese_cake.json new file mode 100644 index 000000000..3f74bcba1 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/cheese_cake.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/cheese_cake" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/cheese_pizza.json b/src/main/generated/assets/croptopia/items/cheese_pizza.json new file mode 100644 index 000000000..7ab9ba5b1 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/cheese_pizza.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/cheese_pizza" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/cheeseburger.json b/src/main/generated/assets/croptopia/items/cheeseburger.json new file mode 100644 index 000000000..712f44361 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/cheeseburger.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/cheeseburger" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/cheesy_asparagus.json b/src/main/generated/assets/croptopia/items/cheesy_asparagus.json new file mode 100644 index 000000000..50b3a7338 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/cheesy_asparagus.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/cheesy_asparagus" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/cherry.json b/src/main/generated/assets/croptopia/items/cherry.json new file mode 100644 index 000000000..4dbe45f76 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/cherry.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/cherry" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/cherry_jam.json b/src/main/generated/assets/croptopia/items/cherry_jam.json new file mode 100644 index 000000000..387f946e5 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/cherry_jam.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/cherry_jam" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/cherry_pie.json b/src/main/generated/assets/croptopia/items/cherry_pie.json new file mode 100644 index 000000000..1ae2f0bca --- /dev/null +++ b/src/main/generated/assets/croptopia/items/cherry_pie.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/cherry_pie" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/cherry_sapling.json b/src/main/generated/assets/croptopia/items/cherry_sapling.json new file mode 100644 index 000000000..5298476b9 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/cherry_sapling.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/cherry_sapling" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/chicken_and_dumplings.json b/src/main/generated/assets/croptopia/items/chicken_and_dumplings.json new file mode 100644 index 000000000..d12e00077 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/chicken_and_dumplings.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/chicken_and_dumplings" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/chicken_and_noodles.json b/src/main/generated/assets/croptopia/items/chicken_and_noodles.json new file mode 100644 index 000000000..fa1d6eedd --- /dev/null +++ b/src/main/generated/assets/croptopia/items/chicken_and_noodles.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/chicken_and_noodles" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/chicken_and_rice.json b/src/main/generated/assets/croptopia/items/chicken_and_rice.json new file mode 100644 index 000000000..f153a96eb --- /dev/null +++ b/src/main/generated/assets/croptopia/items/chicken_and_rice.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/chicken_and_rice" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/chile_pepper.json b/src/main/generated/assets/croptopia/items/chile_pepper.json new file mode 100644 index 000000000..abc2c6f2a --- /dev/null +++ b/src/main/generated/assets/croptopia/items/chile_pepper.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/chile_pepper" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/chile_pepper_seed.json b/src/main/generated/assets/croptopia/items/chile_pepper_seed.json new file mode 100644 index 000000000..e9c2cd934 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/chile_pepper_seed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/chile_pepper_seed" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/chili_relleno.json b/src/main/generated/assets/croptopia/items/chili_relleno.json new file mode 100644 index 000000000..f842dcccc --- /dev/null +++ b/src/main/generated/assets/croptopia/items/chili_relleno.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/chili_relleno" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/chimichanga.json b/src/main/generated/assets/croptopia/items/chimichanga.json new file mode 100644 index 000000000..c342fb949 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/chimichanga.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/chimichanga" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/chocolate.json b/src/main/generated/assets/croptopia/items/chocolate.json new file mode 100644 index 000000000..a552d66e1 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/chocolate.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/chocolate" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/chocolate_ice_cream.json b/src/main/generated/assets/croptopia/items/chocolate_ice_cream.json new file mode 100644 index 000000000..63d35bcb1 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/chocolate_ice_cream.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/chocolate_ice_cream" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/chocolate_milkshake.json b/src/main/generated/assets/croptopia/items/chocolate_milkshake.json new file mode 100644 index 000000000..207e05873 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/chocolate_milkshake.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/chocolate_milkshake" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/churros.json b/src/main/generated/assets/croptopia/items/churros.json new file mode 100644 index 000000000..fc14af4b1 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/churros.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/churros" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/cinnamon_roll.json b/src/main/generated/assets/croptopia/items/cinnamon_roll.json new file mode 100644 index 000000000..1a08b0f45 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/cinnamon_roll.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/cinnamon_roll" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/clam.json b/src/main/generated/assets/croptopia/items/clam.json new file mode 100644 index 000000000..aae28aab3 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/clam.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/clam" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/coconut.json b/src/main/generated/assets/croptopia/items/coconut.json new file mode 100644 index 000000000..4c057ec82 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/coconut.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/coconut" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/coconut_sapling.json b/src/main/generated/assets/croptopia/items/coconut_sapling.json new file mode 100644 index 000000000..59ef704d1 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/coconut_sapling.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/coconut_sapling" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/coffee.json b/src/main/generated/assets/croptopia/items/coffee.json new file mode 100644 index 000000000..f278d062a --- /dev/null +++ b/src/main/generated/assets/croptopia/items/coffee.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/coffee" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/coffee_beans.json b/src/main/generated/assets/croptopia/items/coffee_beans.json new file mode 100644 index 000000000..7ebcd4517 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/coffee_beans.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/coffee_beans" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/coffee_seed.json b/src/main/generated/assets/croptopia/items/coffee_seed.json new file mode 100644 index 000000000..550bb00b8 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/coffee_seed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/coffee_seed" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/cooked_anchovy.json b/src/main/generated/assets/croptopia/items/cooked_anchovy.json new file mode 100644 index 000000000..e0d258d90 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/cooked_anchovy.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/cooked_anchovy" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/cooked_bacon.json b/src/main/generated/assets/croptopia/items/cooked_bacon.json new file mode 100644 index 000000000..3f0bf3bd0 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/cooked_bacon.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/cooked_bacon" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/cooked_calamari.json b/src/main/generated/assets/croptopia/items/cooked_calamari.json new file mode 100644 index 000000000..d8de0f011 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/cooked_calamari.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/cooked_calamari" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/cooked_shrimp.json b/src/main/generated/assets/croptopia/items/cooked_shrimp.json new file mode 100644 index 000000000..aa981d3c4 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/cooked_shrimp.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/cooked_shrimp" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/cooked_tuna.json b/src/main/generated/assets/croptopia/items/cooked_tuna.json new file mode 100644 index 000000000..703bd16f4 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/cooked_tuna.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/cooked_tuna" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/cooking_pot.json b/src/main/generated/assets/croptopia/items/cooking_pot.json new file mode 100644 index 000000000..59b1985e1 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/cooking_pot.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/cooking_pot" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/corn.json b/src/main/generated/assets/croptopia/items/corn.json new file mode 100644 index 000000000..9e479c0e5 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/corn.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/corn" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/corn_bread.json b/src/main/generated/assets/croptopia/items/corn_bread.json new file mode 100644 index 000000000..04f4512f9 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/corn_bread.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/corn_bread" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/corn_husk.json b/src/main/generated/assets/croptopia/items/corn_husk.json new file mode 100644 index 000000000..82e76c0d1 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/corn_husk.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/corn_husk" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/corn_seed.json b/src/main/generated/assets/croptopia/items/corn_seed.json new file mode 100644 index 000000000..fd8f4dfcf --- /dev/null +++ b/src/main/generated/assets/croptopia/items/corn_seed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/corn_seed" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/cornish_pasty.json b/src/main/generated/assets/croptopia/items/cornish_pasty.json new file mode 100644 index 000000000..1cf67099c --- /dev/null +++ b/src/main/generated/assets/croptopia/items/cornish_pasty.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/cornish_pasty" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/crab.json b/src/main/generated/assets/croptopia/items/crab.json new file mode 100644 index 000000000..c7e283fc1 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/crab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/crab" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/crab_legs.json b/src/main/generated/assets/croptopia/items/crab_legs.json new file mode 100644 index 000000000..90f558cfe --- /dev/null +++ b/src/main/generated/assets/croptopia/items/crab_legs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/crab_legs" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/cranberry.json b/src/main/generated/assets/croptopia/items/cranberry.json new file mode 100644 index 000000000..e761a9966 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/cranberry.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/cranberry" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/cranberry_juice.json b/src/main/generated/assets/croptopia/items/cranberry_juice.json new file mode 100644 index 000000000..032a790f5 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/cranberry_juice.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/cranberry_juice" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/cranberry_seed.json b/src/main/generated/assets/croptopia/items/cranberry_seed.json new file mode 100644 index 000000000..94ccc01ce --- /dev/null +++ b/src/main/generated/assets/croptopia/items/cranberry_seed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/cranberry_seed" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/crema.json b/src/main/generated/assets/croptopia/items/crema.json new file mode 100644 index 000000000..ebbd4eb41 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/crema.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/crema" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/croque_madame.json b/src/main/generated/assets/croptopia/items/croque_madame.json new file mode 100644 index 000000000..3de49e958 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/croque_madame.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/croque_madame" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/croque_monsieur.json b/src/main/generated/assets/croptopia/items/croque_monsieur.json new file mode 100644 index 000000000..96795027d --- /dev/null +++ b/src/main/generated/assets/croptopia/items/croque_monsieur.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/croque_monsieur" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/cucumber.json b/src/main/generated/assets/croptopia/items/cucumber.json new file mode 100644 index 000000000..8b40eef38 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/cucumber.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/cucumber" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/cucumber_salad.json b/src/main/generated/assets/croptopia/items/cucumber_salad.json new file mode 100644 index 000000000..19a66793d --- /dev/null +++ b/src/main/generated/assets/croptopia/items/cucumber_salad.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/cucumber_salad" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/cucumber_seed.json b/src/main/generated/assets/croptopia/items/cucumber_seed.json new file mode 100644 index 000000000..b8e89129a --- /dev/null +++ b/src/main/generated/assets/croptopia/items/cucumber_seed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/cucumber_seed" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/currant.json b/src/main/generated/assets/croptopia/items/currant.json new file mode 100644 index 000000000..6d1550de1 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/currant.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/currant" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/currant_seed.json b/src/main/generated/assets/croptopia/items/currant_seed.json new file mode 100644 index 000000000..4744a9bf5 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/currant_seed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/currant_seed" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/date.json b/src/main/generated/assets/croptopia/items/date.json new file mode 100644 index 000000000..6f1501035 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/date.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/date" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/date_sapling.json b/src/main/generated/assets/croptopia/items/date_sapling.json new file mode 100644 index 000000000..46b8a90b7 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/date_sapling.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/date_sapling" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/dauphine_potatoes.json b/src/main/generated/assets/croptopia/items/dauphine_potatoes.json new file mode 100644 index 000000000..bebd8c514 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/dauphine_potatoes.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/dauphine_potatoes" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/deep_fried_shrimp.json b/src/main/generated/assets/croptopia/items/deep_fried_shrimp.json new file mode 100644 index 000000000..db20c051d --- /dev/null +++ b/src/main/generated/assets/croptopia/items/deep_fried_shrimp.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/deep_fried_shrimp" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/dough.json b/src/main/generated/assets/croptopia/items/dough.json new file mode 100644 index 000000000..8e3fdf8fd --- /dev/null +++ b/src/main/generated/assets/croptopia/items/dough.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/dough" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/doughnut.json b/src/main/generated/assets/croptopia/items/doughnut.json new file mode 100644 index 000000000..83233119f --- /dev/null +++ b/src/main/generated/assets/croptopia/items/doughnut.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/doughnut" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/dragonfruit.json b/src/main/generated/assets/croptopia/items/dragonfruit.json new file mode 100644 index 000000000..70c6ea071 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/dragonfruit.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/dragonfruit" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/dragonfruit_sapling.json b/src/main/generated/assets/croptopia/items/dragonfruit_sapling.json new file mode 100644 index 000000000..958308e53 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/dragonfruit_sapling.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/dragonfruit_sapling" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/egg_roll.json b/src/main/generated/assets/croptopia/items/egg_roll.json new file mode 100644 index 000000000..b5402efd7 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/egg_roll.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/egg_roll" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/eggplant.json b/src/main/generated/assets/croptopia/items/eggplant.json new file mode 100644 index 000000000..3676dc566 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/eggplant.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/eggplant" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/eggplant_parmesan.json b/src/main/generated/assets/croptopia/items/eggplant_parmesan.json new file mode 100644 index 000000000..b6c6e9cbb --- /dev/null +++ b/src/main/generated/assets/croptopia/items/eggplant_parmesan.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/eggplant_parmesan" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/eggplant_seed.json b/src/main/generated/assets/croptopia/items/eggplant_seed.json new file mode 100644 index 000000000..d21ad6a6c --- /dev/null +++ b/src/main/generated/assets/croptopia/items/eggplant_seed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/eggplant_seed" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/elderberry.json b/src/main/generated/assets/croptopia/items/elderberry.json new file mode 100644 index 000000000..f1536163d --- /dev/null +++ b/src/main/generated/assets/croptopia/items/elderberry.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/elderberry" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/elderberry_jam.json b/src/main/generated/assets/croptopia/items/elderberry_jam.json new file mode 100644 index 000000000..14015d9de --- /dev/null +++ b/src/main/generated/assets/croptopia/items/elderberry_jam.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/elderberry_jam" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/elderberry_seed.json b/src/main/generated/assets/croptopia/items/elderberry_seed.json new file mode 100644 index 000000000..7ca3431ca --- /dev/null +++ b/src/main/generated/assets/croptopia/items/elderberry_seed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/elderberry_seed" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/enchilada.json b/src/main/generated/assets/croptopia/items/enchilada.json new file mode 100644 index 000000000..6af25e91e --- /dev/null +++ b/src/main/generated/assets/croptopia/items/enchilada.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/enchilada" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/eton_mess.json b/src/main/generated/assets/croptopia/items/eton_mess.json new file mode 100644 index 000000000..7b60cbdd0 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/eton_mess.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/eton_mess" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/fajitas.json b/src/main/generated/assets/croptopia/items/fajitas.json new file mode 100644 index 000000000..6592bb3b1 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/fajitas.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/fajitas" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/fig.json b/src/main/generated/assets/croptopia/items/fig.json new file mode 100644 index 000000000..226b59e95 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/fig.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/fig" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/fig_sapling.json b/src/main/generated/assets/croptopia/items/fig_sapling.json new file mode 100644 index 000000000..ed6f4bdb4 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/fig_sapling.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/fig_sapling" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/figgy_pudding.json b/src/main/generated/assets/croptopia/items/figgy_pudding.json new file mode 100644 index 000000000..fd2fa5683 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/figgy_pudding.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/figgy_pudding" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/fish_and_chips.json b/src/main/generated/assets/croptopia/items/fish_and_chips.json new file mode 100644 index 000000000..f36801663 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/fish_and_chips.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/fish_and_chips" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/flour.json b/src/main/generated/assets/croptopia/items/flour.json new file mode 100644 index 000000000..5527ddb29 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/flour.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/flour" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/food_press.json b/src/main/generated/assets/croptopia/items/food_press.json new file mode 100644 index 000000000..2d20b81bb --- /dev/null +++ b/src/main/generated/assets/croptopia/items/food_press.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/food_press" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/french_fries.json b/src/main/generated/assets/croptopia/items/french_fries.json new file mode 100644 index 000000000..251d91d4f --- /dev/null +++ b/src/main/generated/assets/croptopia/items/french_fries.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/french_fries" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/fried_calamari.json b/src/main/generated/assets/croptopia/items/fried_calamari.json new file mode 100644 index 000000000..5a40edca0 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/fried_calamari.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/fried_calamari" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/fried_chicken.json b/src/main/generated/assets/croptopia/items/fried_chicken.json new file mode 100644 index 000000000..b88132eaa --- /dev/null +++ b/src/main/generated/assets/croptopia/items/fried_chicken.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/fried_chicken" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/fried_frog_legs.json b/src/main/generated/assets/croptopia/items/fried_frog_legs.json new file mode 100644 index 000000000..490b2b572 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/fried_frog_legs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/fried_frog_legs" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/frog_legs.json b/src/main/generated/assets/croptopia/items/frog_legs.json new file mode 100644 index 000000000..6572dc699 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/frog_legs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/frog_legs" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/fruit_cake.json b/src/main/generated/assets/croptopia/items/fruit_cake.json new file mode 100644 index 000000000..f4c634e6c --- /dev/null +++ b/src/main/generated/assets/croptopia/items/fruit_cake.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/fruit_cake" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/fruit_salad.json b/src/main/generated/assets/croptopia/items/fruit_salad.json new file mode 100644 index 000000000..014aeb8d3 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/fruit_salad.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/fruit_salad" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/fruit_smoothie.json b/src/main/generated/assets/croptopia/items/fruit_smoothie.json new file mode 100644 index 000000000..559aabae7 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/fruit_smoothie.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/fruit_smoothie" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/frying_pan.json b/src/main/generated/assets/croptopia/items/frying_pan.json new file mode 100644 index 000000000..a2a151c1b --- /dev/null +++ b/src/main/generated/assets/croptopia/items/frying_pan.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/frying_pan" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/garlic.json b/src/main/generated/assets/croptopia/items/garlic.json new file mode 100644 index 000000000..c218f49f4 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/garlic.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/garlic" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/garlic_seed.json b/src/main/generated/assets/croptopia/items/garlic_seed.json new file mode 100644 index 000000000..b570f867a --- /dev/null +++ b/src/main/generated/assets/croptopia/items/garlic_seed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/garlic_seed" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/ginger.json b/src/main/generated/assets/croptopia/items/ginger.json new file mode 100644 index 000000000..26b6e0584 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/ginger.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/ginger" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/ginger_seed.json b/src/main/generated/assets/croptopia/items/ginger_seed.json new file mode 100644 index 000000000..df8d10b12 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/ginger_seed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/ginger_seed" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/glowing_calamari.json b/src/main/generated/assets/croptopia/items/glowing_calamari.json new file mode 100644 index 000000000..6bd2c58f6 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/glowing_calamari.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/glowing_calamari" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/goulash.json b/src/main/generated/assets/croptopia/items/goulash.json new file mode 100644 index 000000000..2c7655a65 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/goulash.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/goulash" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/grape.json b/src/main/generated/assets/croptopia/items/grape.json new file mode 100644 index 000000000..e3cefb172 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/grape.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/grape" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/grape_jam.json b/src/main/generated/assets/croptopia/items/grape_jam.json new file mode 100644 index 000000000..278ceb5e2 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/grape_jam.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/grape_jam" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/grape_juice.json b/src/main/generated/assets/croptopia/items/grape_juice.json new file mode 100644 index 000000000..af0b376de --- /dev/null +++ b/src/main/generated/assets/croptopia/items/grape_juice.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/grape_juice" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/grape_seed.json b/src/main/generated/assets/croptopia/items/grape_seed.json new file mode 100644 index 000000000..940f062b2 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/grape_seed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/grape_seed" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/grapefruit.json b/src/main/generated/assets/croptopia/items/grapefruit.json new file mode 100644 index 000000000..edcd50534 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/grapefruit.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/grapefruit" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/grapefruit_sapling.json b/src/main/generated/assets/croptopia/items/grapefruit_sapling.json new file mode 100644 index 000000000..7688e4998 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/grapefruit_sapling.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/grapefruit_sapling" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/greenbean.json b/src/main/generated/assets/croptopia/items/greenbean.json new file mode 100644 index 000000000..e2e64b0a8 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/greenbean.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/greenbean" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/greenbean_seed.json b/src/main/generated/assets/croptopia/items/greenbean_seed.json new file mode 100644 index 000000000..f960421dd --- /dev/null +++ b/src/main/generated/assets/croptopia/items/greenbean_seed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/greenbean_seed" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/greenonion.json b/src/main/generated/assets/croptopia/items/greenonion.json new file mode 100644 index 000000000..05fcb57ad --- /dev/null +++ b/src/main/generated/assets/croptopia/items/greenonion.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/greenonion" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/greenonion_seed.json b/src/main/generated/assets/croptopia/items/greenonion_seed.json new file mode 100644 index 000000000..4d7fd2954 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/greenonion_seed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/greenonion_seed" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/grilled_cheese.json b/src/main/generated/assets/croptopia/items/grilled_cheese.json new file mode 100644 index 000000000..70de4e6cf --- /dev/null +++ b/src/main/generated/assets/croptopia/items/grilled_cheese.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/grilled_cheese" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/grilled_eggplant.json b/src/main/generated/assets/croptopia/items/grilled_eggplant.json new file mode 100644 index 000000000..15134ba49 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/grilled_eggplant.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/grilled_eggplant" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/grilled_oysters.json b/src/main/generated/assets/croptopia/items/grilled_oysters.json new file mode 100644 index 000000000..781259a80 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/grilled_oysters.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/grilled_oysters" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/ground_pork.json b/src/main/generated/assets/croptopia/items/ground_pork.json new file mode 100644 index 000000000..5b1bc7fd9 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/ground_pork.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/ground_pork" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/ham_sandwich.json b/src/main/generated/assets/croptopia/items/ham_sandwich.json new file mode 100644 index 000000000..a7305a54a --- /dev/null +++ b/src/main/generated/assets/croptopia/items/ham_sandwich.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/ham_sandwich" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/hamburger.json b/src/main/generated/assets/croptopia/items/hamburger.json new file mode 100644 index 000000000..196aa25a1 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/hamburger.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/hamburger" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/hashed_brown.json b/src/main/generated/assets/croptopia/items/hashed_brown.json new file mode 100644 index 000000000..0982bde4f --- /dev/null +++ b/src/main/generated/assets/croptopia/items/hashed_brown.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/hashed_brown" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/honeydew.json b/src/main/generated/assets/croptopia/items/honeydew.json new file mode 100644 index 000000000..698f1f54d --- /dev/null +++ b/src/main/generated/assets/croptopia/items/honeydew.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/honeydew" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/honeydew_seed.json b/src/main/generated/assets/croptopia/items/honeydew_seed.json new file mode 100644 index 000000000..941957d8e --- /dev/null +++ b/src/main/generated/assets/croptopia/items/honeydew_seed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/honeydew_seed" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/hops.json b/src/main/generated/assets/croptopia/items/hops.json new file mode 100644 index 000000000..619ee176a --- /dev/null +++ b/src/main/generated/assets/croptopia/items/hops.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/hops" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/hops_seed.json b/src/main/generated/assets/croptopia/items/hops_seed.json new file mode 100644 index 000000000..2724814a3 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/hops_seed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/hops_seed" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/horchata.json b/src/main/generated/assets/croptopia/items/horchata.json new file mode 100644 index 000000000..2e8d0cc33 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/horchata.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/horchata" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/kale.json b/src/main/generated/assets/croptopia/items/kale.json new file mode 100644 index 000000000..5e7ba9681 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/kale.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/kale" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/kale_chips.json b/src/main/generated/assets/croptopia/items/kale_chips.json new file mode 100644 index 000000000..e17f6106f --- /dev/null +++ b/src/main/generated/assets/croptopia/items/kale_chips.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/kale_chips" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/kale_seed.json b/src/main/generated/assets/croptopia/items/kale_seed.json new file mode 100644 index 000000000..d66bbe39d --- /dev/null +++ b/src/main/generated/assets/croptopia/items/kale_seed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/kale_seed" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/kale_smoothie.json b/src/main/generated/assets/croptopia/items/kale_smoothie.json new file mode 100644 index 000000000..33f226b7b --- /dev/null +++ b/src/main/generated/assets/croptopia/items/kale_smoothie.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/kale_smoothie" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/kiwi.json b/src/main/generated/assets/croptopia/items/kiwi.json new file mode 100644 index 000000000..948cf0b41 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/kiwi.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/kiwi" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/kiwi_seed.json b/src/main/generated/assets/croptopia/items/kiwi_seed.json new file mode 100644 index 000000000..ec4d1ffee --- /dev/null +++ b/src/main/generated/assets/croptopia/items/kiwi_seed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/kiwi_seed" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/kiwi_sorbet.json b/src/main/generated/assets/croptopia/items/kiwi_sorbet.json new file mode 100644 index 000000000..4e4cc0162 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/kiwi_sorbet.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/kiwi_sorbet" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/knife.json b/src/main/generated/assets/croptopia/items/knife.json new file mode 100644 index 000000000..81df62804 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/knife.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/knife" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/kumquat.json b/src/main/generated/assets/croptopia/items/kumquat.json new file mode 100644 index 000000000..19be3c13a --- /dev/null +++ b/src/main/generated/assets/croptopia/items/kumquat.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/kumquat" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/kumquat_sapling.json b/src/main/generated/assets/croptopia/items/kumquat_sapling.json new file mode 100644 index 000000000..e1e08aea0 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/kumquat_sapling.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/kumquat_sapling" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/leafy_salad.json b/src/main/generated/assets/croptopia/items/leafy_salad.json new file mode 100644 index 000000000..36416e1f1 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/leafy_salad.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/leafy_salad" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/leek.json b/src/main/generated/assets/croptopia/items/leek.json new file mode 100644 index 000000000..d3634cbaf --- /dev/null +++ b/src/main/generated/assets/croptopia/items/leek.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/leek" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/leek_seed.json b/src/main/generated/assets/croptopia/items/leek_seed.json new file mode 100644 index 000000000..825ece571 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/leek_seed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/leek_seed" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/leek_soup.json b/src/main/generated/assets/croptopia/items/leek_soup.json new file mode 100644 index 000000000..a99453bcb --- /dev/null +++ b/src/main/generated/assets/croptopia/items/leek_soup.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/leek_soup" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/lemon.json b/src/main/generated/assets/croptopia/items/lemon.json new file mode 100644 index 000000000..09ca18ead --- /dev/null +++ b/src/main/generated/assets/croptopia/items/lemon.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/lemon" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/lemon_chicken.json b/src/main/generated/assets/croptopia/items/lemon_chicken.json new file mode 100644 index 000000000..4bfef5cad --- /dev/null +++ b/src/main/generated/assets/croptopia/items/lemon_chicken.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/lemon_chicken" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/lemon_coconut_bar.json b/src/main/generated/assets/croptopia/items/lemon_coconut_bar.json new file mode 100644 index 000000000..d66b1f3f5 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/lemon_coconut_bar.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/lemon_coconut_bar" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/lemon_sapling.json b/src/main/generated/assets/croptopia/items/lemon_sapling.json new file mode 100644 index 000000000..71df89a30 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/lemon_sapling.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/lemon_sapling" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/lemonade.json b/src/main/generated/assets/croptopia/items/lemonade.json new file mode 100644 index 000000000..8499aafad --- /dev/null +++ b/src/main/generated/assets/croptopia/items/lemonade.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/lemonade" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/lettuce.json b/src/main/generated/assets/croptopia/items/lettuce.json new file mode 100644 index 000000000..8660a81b6 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/lettuce.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/lettuce" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/lettuce_seed.json b/src/main/generated/assets/croptopia/items/lettuce_seed.json new file mode 100644 index 000000000..7b4ba556d --- /dev/null +++ b/src/main/generated/assets/croptopia/items/lettuce_seed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/lettuce_seed" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/lime.json b/src/main/generated/assets/croptopia/items/lime.json new file mode 100644 index 000000000..480230031 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/lime.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/lime" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/lime_sapling.json b/src/main/generated/assets/croptopia/items/lime_sapling.json new file mode 100644 index 000000000..d49302828 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/lime_sapling.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/lime_sapling" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/limeade.json b/src/main/generated/assets/croptopia/items/limeade.json new file mode 100644 index 000000000..e0099a728 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/limeade.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/limeade" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/macaron.json b/src/main/generated/assets/croptopia/items/macaron.json new file mode 100644 index 000000000..4bcf0179c --- /dev/null +++ b/src/main/generated/assets/croptopia/items/macaron.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/macaron" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/mango.json b/src/main/generated/assets/croptopia/items/mango.json new file mode 100644 index 000000000..8b25c9583 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/mango.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/mango" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/mango_ice_cream.json b/src/main/generated/assets/croptopia/items/mango_ice_cream.json new file mode 100644 index 000000000..aa752d1fa --- /dev/null +++ b/src/main/generated/assets/croptopia/items/mango_ice_cream.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/mango_ice_cream" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/mango_sapling.json b/src/main/generated/assets/croptopia/items/mango_sapling.json new file mode 100644 index 000000000..fdaeba491 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/mango_sapling.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/mango_sapling" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/mashed_potatoes.json b/src/main/generated/assets/croptopia/items/mashed_potatoes.json new file mode 100644 index 000000000..c4ae45f07 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/mashed_potatoes.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/mashed_potatoes" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/mead.json b/src/main/generated/assets/croptopia/items/mead.json new file mode 100644 index 000000000..d40b799db --- /dev/null +++ b/src/main/generated/assets/croptopia/items/mead.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/mead" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/melon_juice.json b/src/main/generated/assets/croptopia/items/melon_juice.json new file mode 100644 index 000000000..34f364707 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/melon_juice.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/melon_juice" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/meringue.json b/src/main/generated/assets/croptopia/items/meringue.json new file mode 100644 index 000000000..56bec991d --- /dev/null +++ b/src/main/generated/assets/croptopia/items/meringue.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/meringue" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/milk_bottle.json b/src/main/generated/assets/croptopia/items/milk_bottle.json new file mode 100644 index 000000000..f79480b44 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/milk_bottle.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/milk_bottle" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/molasses.json b/src/main/generated/assets/croptopia/items/molasses.json new file mode 100644 index 000000000..b562fdb73 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/molasses.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/molasses" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/mortar_and_pestle.json b/src/main/generated/assets/croptopia/items/mortar_and_pestle.json new file mode 100644 index 000000000..56dd13550 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/mortar_and_pestle.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/mortar_and_pestle" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/mustard.json b/src/main/generated/assets/croptopia/items/mustard.json new file mode 100644 index 000000000..50e0496ff --- /dev/null +++ b/src/main/generated/assets/croptopia/items/mustard.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/mustard" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/mustard_seed.json b/src/main/generated/assets/croptopia/items/mustard_seed.json new file mode 100644 index 000000000..eaa0343f2 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/mustard_seed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/mustard_seed" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/nectarine.json b/src/main/generated/assets/croptopia/items/nectarine.json new file mode 100644 index 000000000..1b80d3835 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/nectarine.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/nectarine" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/nectarine_sapling.json b/src/main/generated/assets/croptopia/items/nectarine_sapling.json new file mode 100644 index 000000000..e6ea4f926 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/nectarine_sapling.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/nectarine_sapling" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/nether_wart_stew.json b/src/main/generated/assets/croptopia/items/nether_wart_stew.json new file mode 100644 index 000000000..961e6af8c --- /dev/null +++ b/src/main/generated/assets/croptopia/items/nether_wart_stew.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/nether_wart_stew" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/noodle.json b/src/main/generated/assets/croptopia/items/noodle.json new file mode 100644 index 000000000..c5f8c92ee --- /dev/null +++ b/src/main/generated/assets/croptopia/items/noodle.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/noodle" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/nougat.json b/src/main/generated/assets/croptopia/items/nougat.json new file mode 100644 index 000000000..4f0d785f8 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/nougat.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/nougat" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/nutmeg.json b/src/main/generated/assets/croptopia/items/nutmeg.json new file mode 100644 index 000000000..c46efacf6 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/nutmeg.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/nutmeg" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/nutmeg_sapling.json b/src/main/generated/assets/croptopia/items/nutmeg_sapling.json new file mode 100644 index 000000000..03fd7589b --- /dev/null +++ b/src/main/generated/assets/croptopia/items/nutmeg_sapling.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/nutmeg_sapling" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/nutty_cookie.json b/src/main/generated/assets/croptopia/items/nutty_cookie.json new file mode 100644 index 000000000..1f019a5fc --- /dev/null +++ b/src/main/generated/assets/croptopia/items/nutty_cookie.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/nutty_cookie" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/oat.json b/src/main/generated/assets/croptopia/items/oat.json new file mode 100644 index 000000000..e51898fbb --- /dev/null +++ b/src/main/generated/assets/croptopia/items/oat.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/oat" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/oat_seed.json b/src/main/generated/assets/croptopia/items/oat_seed.json new file mode 100644 index 000000000..a2d7f3714 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/oat_seed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/oat_seed" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/oatmeal.json b/src/main/generated/assets/croptopia/items/oatmeal.json new file mode 100644 index 000000000..c929fd22d --- /dev/null +++ b/src/main/generated/assets/croptopia/items/oatmeal.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/oatmeal" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/olive.json b/src/main/generated/assets/croptopia/items/olive.json new file mode 100644 index 000000000..e13036e07 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/olive.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/olive" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/olive_oil.json b/src/main/generated/assets/croptopia/items/olive_oil.json new file mode 100644 index 000000000..c06da0634 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/olive_oil.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/olive_oil" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/olive_seed.json b/src/main/generated/assets/croptopia/items/olive_seed.json new file mode 100644 index 000000000..2bf7ee370 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/olive_seed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/olive_seed" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/onion.json b/src/main/generated/assets/croptopia/items/onion.json new file mode 100644 index 000000000..c588dec68 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/onion.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/onion" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/onion_rings.json b/src/main/generated/assets/croptopia/items/onion_rings.json new file mode 100644 index 000000000..1b13df0fb --- /dev/null +++ b/src/main/generated/assets/croptopia/items/onion_rings.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/onion_rings" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/onion_seed.json b/src/main/generated/assets/croptopia/items/onion_seed.json new file mode 100644 index 000000000..b57e64674 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/onion_seed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/onion_seed" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/orange.json b/src/main/generated/assets/croptopia/items/orange.json new file mode 100644 index 000000000..b05997102 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/orange.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/orange" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/orange_juice.json b/src/main/generated/assets/croptopia/items/orange_juice.json new file mode 100644 index 000000000..a046780c2 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/orange_juice.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/orange_juice" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/orange_sapling.json b/src/main/generated/assets/croptopia/items/orange_sapling.json new file mode 100644 index 000000000..12a6bff66 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/orange_sapling.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/orange_sapling" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/oyster.json b/src/main/generated/assets/croptopia/items/oyster.json new file mode 100644 index 000000000..6a1121b01 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/oyster.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/oyster" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/paprika.json b/src/main/generated/assets/croptopia/items/paprika.json new file mode 100644 index 000000000..83648976e --- /dev/null +++ b/src/main/generated/assets/croptopia/items/paprika.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/paprika" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/peach.json b/src/main/generated/assets/croptopia/items/peach.json new file mode 100644 index 000000000..cdae7f27b --- /dev/null +++ b/src/main/generated/assets/croptopia/items/peach.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/peach" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/peach_jam.json b/src/main/generated/assets/croptopia/items/peach_jam.json new file mode 100644 index 000000000..19960d81a --- /dev/null +++ b/src/main/generated/assets/croptopia/items/peach_jam.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/peach_jam" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/peach_sapling.json b/src/main/generated/assets/croptopia/items/peach_sapling.json new file mode 100644 index 000000000..07c9fc511 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/peach_sapling.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/peach_sapling" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/peanut.json b/src/main/generated/assets/croptopia/items/peanut.json new file mode 100644 index 000000000..002d600ee --- /dev/null +++ b/src/main/generated/assets/croptopia/items/peanut.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/peanut" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/peanut_butter.json b/src/main/generated/assets/croptopia/items/peanut_butter.json new file mode 100644 index 000000000..2709d6756 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/peanut_butter.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/peanut_butter" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/peanut_butter_and_jam.json b/src/main/generated/assets/croptopia/items/peanut_butter_and_jam.json new file mode 100644 index 000000000..4fdbe7961 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/peanut_butter_and_jam.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/peanut_butter_and_jam" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/peanut_butter_with_celery.json b/src/main/generated/assets/croptopia/items/peanut_butter_with_celery.json new file mode 100644 index 000000000..83dfddd33 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/peanut_butter_with_celery.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/peanut_butter_with_celery" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/peanut_seed.json b/src/main/generated/assets/croptopia/items/peanut_seed.json new file mode 100644 index 000000000..df87d400f --- /dev/null +++ b/src/main/generated/assets/croptopia/items/peanut_seed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/peanut_seed" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/pear.json b/src/main/generated/assets/croptopia/items/pear.json new file mode 100644 index 000000000..b513aed68 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/pear.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/pear" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/pear_sapling.json b/src/main/generated/assets/croptopia/items/pear_sapling.json new file mode 100644 index 000000000..4613778df --- /dev/null +++ b/src/main/generated/assets/croptopia/items/pear_sapling.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/pear_sapling" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/pecan.json b/src/main/generated/assets/croptopia/items/pecan.json new file mode 100644 index 000000000..686effb12 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/pecan.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/pecan" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/pecan_ice_cream.json b/src/main/generated/assets/croptopia/items/pecan_ice_cream.json new file mode 100644 index 000000000..fe270118b --- /dev/null +++ b/src/main/generated/assets/croptopia/items/pecan_ice_cream.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/pecan_ice_cream" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/pecan_pie.json b/src/main/generated/assets/croptopia/items/pecan_pie.json new file mode 100644 index 000000000..b2826936d --- /dev/null +++ b/src/main/generated/assets/croptopia/items/pecan_pie.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/pecan_pie" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/pecan_sapling.json b/src/main/generated/assets/croptopia/items/pecan_sapling.json new file mode 100644 index 000000000..e11dd0476 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/pecan_sapling.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/pecan_sapling" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/pepper.json b/src/main/generated/assets/croptopia/items/pepper.json new file mode 100644 index 000000000..bde5d1298 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/pepper.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/pepper" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/pepper_seed.json b/src/main/generated/assets/croptopia/items/pepper_seed.json new file mode 100644 index 000000000..d871ddc99 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/pepper_seed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/pepper_seed" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/pepperoni.json b/src/main/generated/assets/croptopia/items/pepperoni.json new file mode 100644 index 000000000..898d52e00 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/pepperoni.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/pepperoni" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/persimmon.json b/src/main/generated/assets/croptopia/items/persimmon.json new file mode 100644 index 000000000..5ecbf9948 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/persimmon.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/persimmon" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/persimmon_sapling.json b/src/main/generated/assets/croptopia/items/persimmon_sapling.json new file mode 100644 index 000000000..b893c49e0 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/persimmon_sapling.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/persimmon_sapling" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/pineapple.json b/src/main/generated/assets/croptopia/items/pineapple.json new file mode 100644 index 000000000..47ebfb991 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/pineapple.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/pineapple" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/pineapple_juice.json b/src/main/generated/assets/croptopia/items/pineapple_juice.json new file mode 100644 index 000000000..6dd49af7c --- /dev/null +++ b/src/main/generated/assets/croptopia/items/pineapple_juice.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/pineapple_juice" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/pineapple_pepperoni_pizza.json b/src/main/generated/assets/croptopia/items/pineapple_pepperoni_pizza.json new file mode 100644 index 000000000..b90225105 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/pineapple_pepperoni_pizza.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/pineapple_pepperoni_pizza" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/pineapple_seed.json b/src/main/generated/assets/croptopia/items/pineapple_seed.json new file mode 100644 index 000000000..8366a5c62 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/pineapple_seed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/pineapple_seed" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/pizza.json b/src/main/generated/assets/croptopia/items/pizza.json new file mode 100644 index 000000000..8872dc216 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/pizza.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/pizza" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/plum.json b/src/main/generated/assets/croptopia/items/plum.json new file mode 100644 index 000000000..3e338fafa --- /dev/null +++ b/src/main/generated/assets/croptopia/items/plum.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/plum" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/plum_sapling.json b/src/main/generated/assets/croptopia/items/plum_sapling.json new file mode 100644 index 000000000..aea556562 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/plum_sapling.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/plum_sapling" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/popcorn.json b/src/main/generated/assets/croptopia/items/popcorn.json new file mode 100644 index 000000000..df16129a6 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/popcorn.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/popcorn" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/pork_and_beans.json b/src/main/generated/assets/croptopia/items/pork_and_beans.json new file mode 100644 index 000000000..c3a03815d --- /dev/null +++ b/src/main/generated/assets/croptopia/items/pork_and_beans.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/pork_and_beans" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/pork_jerky.json b/src/main/generated/assets/croptopia/items/pork_jerky.json new file mode 100644 index 000000000..6933eb282 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/pork_jerky.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/pork_jerky" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/potato_chips.json b/src/main/generated/assets/croptopia/items/potato_chips.json new file mode 100644 index 000000000..d6033fe90 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/potato_chips.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/potato_chips" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/potato_soup.json b/src/main/generated/assets/croptopia/items/potato_soup.json new file mode 100644 index 000000000..04aab48ef --- /dev/null +++ b/src/main/generated/assets/croptopia/items/potato_soup.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/potato_soup" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/protein_bar.json b/src/main/generated/assets/croptopia/items/protein_bar.json new file mode 100644 index 000000000..59e21546b --- /dev/null +++ b/src/main/generated/assets/croptopia/items/protein_bar.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/protein_bar" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/pumpkin_bars.json b/src/main/generated/assets/croptopia/items/pumpkin_bars.json new file mode 100644 index 000000000..43199cd0b --- /dev/null +++ b/src/main/generated/assets/croptopia/items/pumpkin_bars.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/pumpkin_bars" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/pumpkin_soup.json b/src/main/generated/assets/croptopia/items/pumpkin_soup.json new file mode 100644 index 000000000..0fba83d73 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/pumpkin_soup.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/pumpkin_soup" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/pumpkin_spice_latte.json b/src/main/generated/assets/croptopia/items/pumpkin_spice_latte.json new file mode 100644 index 000000000..2b8ab200b --- /dev/null +++ b/src/main/generated/assets/croptopia/items/pumpkin_spice_latte.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/pumpkin_spice_latte" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/quesadilla.json b/src/main/generated/assets/croptopia/items/quesadilla.json new file mode 100644 index 000000000..957f9976a --- /dev/null +++ b/src/main/generated/assets/croptopia/items/quesadilla.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/quesadilla" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/quiche.json b/src/main/generated/assets/croptopia/items/quiche.json new file mode 100644 index 000000000..325ff415a --- /dev/null +++ b/src/main/generated/assets/croptopia/items/quiche.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/quiche" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/radish.json b/src/main/generated/assets/croptopia/items/radish.json new file mode 100644 index 000000000..f3072245d --- /dev/null +++ b/src/main/generated/assets/croptopia/items/radish.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/radish" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/radish_seed.json b/src/main/generated/assets/croptopia/items/radish_seed.json new file mode 100644 index 000000000..c8fc6431f --- /dev/null +++ b/src/main/generated/assets/croptopia/items/radish_seed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/radish_seed" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/raisin_oatmeal_cookie.json b/src/main/generated/assets/croptopia/items/raisin_oatmeal_cookie.json new file mode 100644 index 000000000..b19cbf5d9 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/raisin_oatmeal_cookie.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/raisin_oatmeal_cookie" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/raisins.json b/src/main/generated/assets/croptopia/items/raisins.json new file mode 100644 index 000000000..04ee26142 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/raisins.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/raisins" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/raspberry.json b/src/main/generated/assets/croptopia/items/raspberry.json new file mode 100644 index 000000000..a2ae8a422 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/raspberry.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/raspberry" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/raspberry_jam.json b/src/main/generated/assets/croptopia/items/raspberry_jam.json new file mode 100644 index 000000000..52a01ac58 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/raspberry_jam.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/raspberry_jam" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/raspberry_seed.json b/src/main/generated/assets/croptopia/items/raspberry_seed.json new file mode 100644 index 000000000..d701830af --- /dev/null +++ b/src/main/generated/assets/croptopia/items/raspberry_seed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/raspberry_seed" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/ratatouille.json b/src/main/generated/assets/croptopia/items/ratatouille.json new file mode 100644 index 000000000..31acfdd78 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/ratatouille.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/ratatouille" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/ravioli.json b/src/main/generated/assets/croptopia/items/ravioli.json new file mode 100644 index 000000000..b0e22f357 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/ravioli.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/ravioli" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/refried_beans.json b/src/main/generated/assets/croptopia/items/refried_beans.json new file mode 100644 index 000000000..5adec4aa5 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/refried_beans.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/refried_beans" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/rhubarb.json b/src/main/generated/assets/croptopia/items/rhubarb.json new file mode 100644 index 000000000..b63e5c12f --- /dev/null +++ b/src/main/generated/assets/croptopia/items/rhubarb.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/rhubarb" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/rhubarb_crisp.json b/src/main/generated/assets/croptopia/items/rhubarb_crisp.json new file mode 100644 index 000000000..eff7b9a94 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/rhubarb_crisp.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/rhubarb_crisp" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/rhubarb_pie.json b/src/main/generated/assets/croptopia/items/rhubarb_pie.json new file mode 100644 index 000000000..fbf5d79d4 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/rhubarb_pie.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/rhubarb_pie" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/rhubarb_seed.json b/src/main/generated/assets/croptopia/items/rhubarb_seed.json new file mode 100644 index 000000000..445dfe962 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/rhubarb_seed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/rhubarb_seed" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/rice.json b/src/main/generated/assets/croptopia/items/rice.json new file mode 100644 index 000000000..83a37fdc5 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/rice.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/rice" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/rice_seed.json b/src/main/generated/assets/croptopia/items/rice_seed.json new file mode 100644 index 000000000..1ac2cab84 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/rice_seed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/rice_seed" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/roasted_asparagus.json b/src/main/generated/assets/croptopia/items/roasted_asparagus.json new file mode 100644 index 000000000..2beb413b3 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/roasted_asparagus.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/roasted_asparagus" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/roasted_nuts.json b/src/main/generated/assets/croptopia/items/roasted_nuts.json new file mode 100644 index 000000000..7620c14eb --- /dev/null +++ b/src/main/generated/assets/croptopia/items/roasted_nuts.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/roasted_nuts" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/roasted_pumpkin_seeds.json b/src/main/generated/assets/croptopia/items/roasted_pumpkin_seeds.json new file mode 100644 index 000000000..5728bb723 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/roasted_pumpkin_seeds.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/roasted_pumpkin_seeds" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/roasted_radishes.json b/src/main/generated/assets/croptopia/items/roasted_radishes.json new file mode 100644 index 000000000..f151331ed --- /dev/null +++ b/src/main/generated/assets/croptopia/items/roasted_radishes.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/roasted_radishes" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/roasted_squash.json b/src/main/generated/assets/croptopia/items/roasted_squash.json new file mode 100644 index 000000000..8384e71f7 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/roasted_squash.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/roasted_squash" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/roasted_sunflower_seeds.json b/src/main/generated/assets/croptopia/items/roasted_sunflower_seeds.json new file mode 100644 index 000000000..09e47f0d9 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/roasted_sunflower_seeds.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/roasted_sunflower_seeds" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/roasted_turnips.json b/src/main/generated/assets/croptopia/items/roasted_turnips.json new file mode 100644 index 000000000..74f079733 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/roasted_turnips.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/roasted_turnips" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/roe.json b/src/main/generated/assets/croptopia/items/roe.json new file mode 100644 index 000000000..302104105 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/roe.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/roe" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/rum.json b/src/main/generated/assets/croptopia/items/rum.json new file mode 100644 index 000000000..9f73f1737 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/rum.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/rum" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/rum_raisin_ice_cream.json b/src/main/generated/assets/croptopia/items/rum_raisin_ice_cream.json new file mode 100644 index 000000000..6ebdc5be2 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/rum_raisin_ice_cream.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/rum_raisin_ice_cream" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/rutabaga.json b/src/main/generated/assets/croptopia/items/rutabaga.json new file mode 100644 index 000000000..6aff8f03f --- /dev/null +++ b/src/main/generated/assets/croptopia/items/rutabaga.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/rutabaga" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/rutabaga_seed.json b/src/main/generated/assets/croptopia/items/rutabaga_seed.json new file mode 100644 index 000000000..ef0587be9 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/rutabaga_seed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/rutabaga_seed" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/saguaro.json b/src/main/generated/assets/croptopia/items/saguaro.json new file mode 100644 index 000000000..44efd11b0 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/saguaro.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/saguaro" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/saguaro_juice.json b/src/main/generated/assets/croptopia/items/saguaro_juice.json new file mode 100644 index 000000000..fa661a391 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/saguaro_juice.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/saguaro_juice" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/saguaro_seed.json b/src/main/generated/assets/croptopia/items/saguaro_seed.json new file mode 100644 index 000000000..0e2e7a5bd --- /dev/null +++ b/src/main/generated/assets/croptopia/items/saguaro_seed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/saguaro_seed" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/salsa.json b/src/main/generated/assets/croptopia/items/salsa.json new file mode 100644 index 000000000..f4b2fec46 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/salsa.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/salsa" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/salt.json b/src/main/generated/assets/croptopia/items/salt.json new file mode 100644 index 000000000..152a6d16e --- /dev/null +++ b/src/main/generated/assets/croptopia/items/salt.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/salt" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/saucy_chips.json b/src/main/generated/assets/croptopia/items/saucy_chips.json new file mode 100644 index 000000000..dfe6b81a8 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/saucy_chips.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/saucy_chips" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/sausage.json b/src/main/generated/assets/croptopia/items/sausage.json new file mode 100644 index 000000000..db1e1c928 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/sausage.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/sausage" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/scones.json b/src/main/generated/assets/croptopia/items/scones.json new file mode 100644 index 000000000..275e1d55e --- /dev/null +++ b/src/main/generated/assets/croptopia/items/scones.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/scones" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/scrambled_eggs.json b/src/main/generated/assets/croptopia/items/scrambled_eggs.json new file mode 100644 index 000000000..eec9829bd --- /dev/null +++ b/src/main/generated/assets/croptopia/items/scrambled_eggs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/scrambled_eggs" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/sea_lettuce.json b/src/main/generated/assets/croptopia/items/sea_lettuce.json new file mode 100644 index 000000000..907e0001a --- /dev/null +++ b/src/main/generated/assets/croptopia/items/sea_lettuce.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/sea_lettuce" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/shepherds_pie.json b/src/main/generated/assets/croptopia/items/shepherds_pie.json new file mode 100644 index 000000000..88ba3867c --- /dev/null +++ b/src/main/generated/assets/croptopia/items/shepherds_pie.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/shepherds_pie" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/shrimp.json b/src/main/generated/assets/croptopia/items/shrimp.json new file mode 100644 index 000000000..12165f44d --- /dev/null +++ b/src/main/generated/assets/croptopia/items/shrimp.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/shrimp" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/snicker_doodle.json b/src/main/generated/assets/croptopia/items/snicker_doodle.json new file mode 100644 index 000000000..41e18556e --- /dev/null +++ b/src/main/generated/assets/croptopia/items/snicker_doodle.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/snicker_doodle" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/soy_milk.json b/src/main/generated/assets/croptopia/items/soy_milk.json new file mode 100644 index 000000000..40d6cbdcf --- /dev/null +++ b/src/main/generated/assets/croptopia/items/soy_milk.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/soy_milk" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/soy_sauce.json b/src/main/generated/assets/croptopia/items/soy_sauce.json new file mode 100644 index 000000000..2f247eaf6 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/soy_sauce.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/soy_sauce" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/soybean.json b/src/main/generated/assets/croptopia/items/soybean.json new file mode 100644 index 000000000..40d5fc7e1 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/soybean.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/soybean" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/soybean_seed.json b/src/main/generated/assets/croptopia/items/soybean_seed.json new file mode 100644 index 000000000..4bd9fdf02 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/soybean_seed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/soybean_seed" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/spaghetti_squash.json b/src/main/generated/assets/croptopia/items/spaghetti_squash.json new file mode 100644 index 000000000..2ddc606ee --- /dev/null +++ b/src/main/generated/assets/croptopia/items/spaghetti_squash.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/spaghetti_squash" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/spinach.json b/src/main/generated/assets/croptopia/items/spinach.json new file mode 100644 index 000000000..0d9cfb600 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/spinach.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/spinach" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/spinach_seed.json b/src/main/generated/assets/croptopia/items/spinach_seed.json new file mode 100644 index 000000000..2ee9126e2 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/spinach_seed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/spinach_seed" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/squash.json b/src/main/generated/assets/croptopia/items/squash.json new file mode 100644 index 000000000..86ff8ab51 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/squash.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/squash" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/squash_seed.json b/src/main/generated/assets/croptopia/items/squash_seed.json new file mode 100644 index 000000000..400bacd12 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/squash_seed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/squash_seed" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/starfruit.json b/src/main/generated/assets/croptopia/items/starfruit.json new file mode 100644 index 000000000..751e06a84 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/starfruit.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/starfruit" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/starfruit_sapling.json b/src/main/generated/assets/croptopia/items/starfruit_sapling.json new file mode 100644 index 000000000..745a277cb --- /dev/null +++ b/src/main/generated/assets/croptopia/items/starfruit_sapling.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/starfruit_sapling" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/steamed_broccoli.json b/src/main/generated/assets/croptopia/items/steamed_broccoli.json new file mode 100644 index 000000000..3e100bbf1 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/steamed_broccoli.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/steamed_broccoli" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/steamed_clams.json b/src/main/generated/assets/croptopia/items/steamed_clams.json new file mode 100644 index 000000000..172e463c3 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/steamed_clams.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/steamed_clams" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/steamed_crab.json b/src/main/generated/assets/croptopia/items/steamed_crab.json new file mode 100644 index 000000000..053da3196 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/steamed_crab.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/steamed_crab" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/steamed_green_beans.json b/src/main/generated/assets/croptopia/items/steamed_green_beans.json new file mode 100644 index 000000000..4d8ca98e0 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/steamed_green_beans.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/steamed_green_beans" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/steamed_rice.json b/src/main/generated/assets/croptopia/items/steamed_rice.json new file mode 100644 index 000000000..e8b3e64f9 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/steamed_rice.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/steamed_rice" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/sticky_toffee_pudding.json b/src/main/generated/assets/croptopia/items/sticky_toffee_pudding.json new file mode 100644 index 000000000..684225e2c --- /dev/null +++ b/src/main/generated/assets/croptopia/items/sticky_toffee_pudding.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/sticky_toffee_pudding" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/stir_fry.json b/src/main/generated/assets/croptopia/items/stir_fry.json new file mode 100644 index 000000000..cc32f61b3 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/stir_fry.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/stir_fry" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/strawberry.json b/src/main/generated/assets/croptopia/items/strawberry.json new file mode 100644 index 000000000..70e846edd --- /dev/null +++ b/src/main/generated/assets/croptopia/items/strawberry.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/strawberry" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/strawberry_ice_cream.json b/src/main/generated/assets/croptopia/items/strawberry_ice_cream.json new file mode 100644 index 000000000..5344d18e0 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/strawberry_ice_cream.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/strawberry_ice_cream" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/strawberry_jam.json b/src/main/generated/assets/croptopia/items/strawberry_jam.json new file mode 100644 index 000000000..3fa7c56d8 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/strawberry_jam.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/strawberry_jam" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/strawberry_seed.json b/src/main/generated/assets/croptopia/items/strawberry_seed.json new file mode 100644 index 000000000..622c4de00 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/strawberry_seed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/strawberry_seed" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/strawberry_smoothie.json b/src/main/generated/assets/croptopia/items/strawberry_smoothie.json new file mode 100644 index 000000000..f85bd48f4 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/strawberry_smoothie.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/strawberry_smoothie" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/stuffed_artichoke.json b/src/main/generated/assets/croptopia/items/stuffed_artichoke.json new file mode 100644 index 000000000..b41b9f6d4 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/stuffed_artichoke.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/stuffed_artichoke" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/stuffed_poblanos.json b/src/main/generated/assets/croptopia/items/stuffed_poblanos.json new file mode 100644 index 000000000..4da321cad --- /dev/null +++ b/src/main/generated/assets/croptopia/items/stuffed_poblanos.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/stuffed_poblanos" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/sunny_side_eggs.json b/src/main/generated/assets/croptopia/items/sunny_side_eggs.json new file mode 100644 index 000000000..49b880a43 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/sunny_side_eggs.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/sunny_side_eggs" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/supreme_pizza.json b/src/main/generated/assets/croptopia/items/supreme_pizza.json new file mode 100644 index 000000000..7b698d148 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/supreme_pizza.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/supreme_pizza" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/sushi.json b/src/main/generated/assets/croptopia/items/sushi.json new file mode 100644 index 000000000..ec199c0ed --- /dev/null +++ b/src/main/generated/assets/croptopia/items/sushi.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/sushi" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/sweet_crepes.json b/src/main/generated/assets/croptopia/items/sweet_crepes.json new file mode 100644 index 000000000..a40df3112 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/sweet_crepes.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/sweet_crepes" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/sweet_potato_fries.json b/src/main/generated/assets/croptopia/items/sweet_potato_fries.json new file mode 100644 index 000000000..153582623 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/sweet_potato_fries.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/sweet_potato_fries" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/sweetpotato.json b/src/main/generated/assets/croptopia/items/sweetpotato.json new file mode 100644 index 000000000..e2783326e --- /dev/null +++ b/src/main/generated/assets/croptopia/items/sweetpotato.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/sweetpotato" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/sweetpotato_seed.json b/src/main/generated/assets/croptopia/items/sweetpotato_seed.json new file mode 100644 index 000000000..e67949813 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/sweetpotato_seed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/sweetpotato_seed" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/taco.json b/src/main/generated/assets/croptopia/items/taco.json new file mode 100644 index 000000000..682b73b32 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/taco.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/taco" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/tamales.json b/src/main/generated/assets/croptopia/items/tamales.json new file mode 100644 index 000000000..2d28006c9 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/tamales.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/tamales" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/tea.json b/src/main/generated/assets/croptopia/items/tea.json new file mode 100644 index 000000000..03ddd22fc --- /dev/null +++ b/src/main/generated/assets/croptopia/items/tea.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/tea" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/tea_leaves.json b/src/main/generated/assets/croptopia/items/tea_leaves.json new file mode 100644 index 000000000..2f8858a92 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/tea_leaves.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/tea_leaves" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/tea_seed.json b/src/main/generated/assets/croptopia/items/tea_seed.json new file mode 100644 index 000000000..cbd633764 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/tea_seed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/tea_seed" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/the_big_breakfast.json b/src/main/generated/assets/croptopia/items/the_big_breakfast.json new file mode 100644 index 000000000..fce4c3562 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/the_big_breakfast.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/the_big_breakfast" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/toast.json b/src/main/generated/assets/croptopia/items/toast.json new file mode 100644 index 000000000..3ca74bac1 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/toast.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/toast" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/toast_sandwich.json b/src/main/generated/assets/croptopia/items/toast_sandwich.json new file mode 100644 index 000000000..a5e416c57 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/toast_sandwich.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/toast_sandwich" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/toast_with_jam.json b/src/main/generated/assets/croptopia/items/toast_with_jam.json new file mode 100644 index 000000000..7fb88d1da --- /dev/null +++ b/src/main/generated/assets/croptopia/items/toast_with_jam.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/toast_with_jam" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/tofu.json b/src/main/generated/assets/croptopia/items/tofu.json new file mode 100644 index 000000000..6a0c724c6 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/tofu.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/tofu" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/tofu_and_dumplings.json b/src/main/generated/assets/croptopia/items/tofu_and_dumplings.json new file mode 100644 index 000000000..a39adbd06 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/tofu_and_dumplings.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/tofu_and_dumplings" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/tofuburger.json b/src/main/generated/assets/croptopia/items/tofuburger.json new file mode 100644 index 000000000..d015d6d66 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/tofuburger.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/tofuburger" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/tomatillo.json b/src/main/generated/assets/croptopia/items/tomatillo.json new file mode 100644 index 000000000..c076b3e8b --- /dev/null +++ b/src/main/generated/assets/croptopia/items/tomatillo.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/tomatillo" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/tomatillo_seed.json b/src/main/generated/assets/croptopia/items/tomatillo_seed.json new file mode 100644 index 000000000..e182f64ef --- /dev/null +++ b/src/main/generated/assets/croptopia/items/tomatillo_seed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/tomatillo_seed" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/tomato.json b/src/main/generated/assets/croptopia/items/tomato.json new file mode 100644 index 000000000..5dba563c7 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/tomato.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/tomato" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/tomato_juice.json b/src/main/generated/assets/croptopia/items/tomato_juice.json new file mode 100644 index 000000000..1457e4ad4 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/tomato_juice.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/tomato_juice" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/tomato_seed.json b/src/main/generated/assets/croptopia/items/tomato_seed.json new file mode 100644 index 000000000..144bdc22d --- /dev/null +++ b/src/main/generated/assets/croptopia/items/tomato_seed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/tomato_seed" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/tortilla.json b/src/main/generated/assets/croptopia/items/tortilla.json new file mode 100644 index 000000000..ddde799f7 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/tortilla.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/tortilla" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/tostada.json b/src/main/generated/assets/croptopia/items/tostada.json new file mode 100644 index 000000000..f70f32349 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/tostada.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/tostada" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/trail_mix.json b/src/main/generated/assets/croptopia/items/trail_mix.json new file mode 100644 index 000000000..de266e9dd --- /dev/null +++ b/src/main/generated/assets/croptopia/items/trail_mix.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/trail_mix" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/treacle_tart.json b/src/main/generated/assets/croptopia/items/treacle_tart.json new file mode 100644 index 000000000..ad8cbfd60 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/treacle_tart.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/treacle_tart" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/tres_leche_cake.json b/src/main/generated/assets/croptopia/items/tres_leche_cake.json new file mode 100644 index 000000000..b3bf1b12b --- /dev/null +++ b/src/main/generated/assets/croptopia/items/tres_leche_cake.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/tres_leche_cake" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/trifle.json b/src/main/generated/assets/croptopia/items/trifle.json new file mode 100644 index 000000000..779c58df1 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/trifle.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/trifle" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/tuna.json b/src/main/generated/assets/croptopia/items/tuna.json new file mode 100644 index 000000000..26a189b52 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/tuna.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/tuna" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/tuna_roll.json b/src/main/generated/assets/croptopia/items/tuna_roll.json new file mode 100644 index 000000000..35058285c --- /dev/null +++ b/src/main/generated/assets/croptopia/items/tuna_roll.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/tuna_roll" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/tuna_sandwich.json b/src/main/generated/assets/croptopia/items/tuna_sandwich.json new file mode 100644 index 000000000..be5945322 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/tuna_sandwich.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/tuna_sandwich" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/turmeric.json b/src/main/generated/assets/croptopia/items/turmeric.json new file mode 100644 index 000000000..46e32062b --- /dev/null +++ b/src/main/generated/assets/croptopia/items/turmeric.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/turmeric" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/turmeric_seed.json b/src/main/generated/assets/croptopia/items/turmeric_seed.json new file mode 100644 index 000000000..936ff6438 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/turmeric_seed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/turmeric_seed" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/turnip.json b/src/main/generated/assets/croptopia/items/turnip.json new file mode 100644 index 000000000..fe7e167d1 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/turnip.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/turnip" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/turnip_seed.json b/src/main/generated/assets/croptopia/items/turnip_seed.json new file mode 100644 index 000000000..e4cd7cd2f --- /dev/null +++ b/src/main/generated/assets/croptopia/items/turnip_seed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/turnip_seed" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/vanilla.json b/src/main/generated/assets/croptopia/items/vanilla.json new file mode 100644 index 000000000..94db8a77d --- /dev/null +++ b/src/main/generated/assets/croptopia/items/vanilla.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/vanilla" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/vanilla_ice_cream.json b/src/main/generated/assets/croptopia/items/vanilla_ice_cream.json new file mode 100644 index 000000000..273985190 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/vanilla_ice_cream.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/vanilla_ice_cream" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/vanilla_seeds.json b/src/main/generated/assets/croptopia/items/vanilla_seeds.json new file mode 100644 index 000000000..25cf4191d --- /dev/null +++ b/src/main/generated/assets/croptopia/items/vanilla_seeds.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/vanilla_seeds" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/veggie_salad.json b/src/main/generated/assets/croptopia/items/veggie_salad.json new file mode 100644 index 000000000..47d2fb086 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/veggie_salad.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/veggie_salad" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/walnut.json b/src/main/generated/assets/croptopia/items/walnut.json new file mode 100644 index 000000000..4c7e4772a --- /dev/null +++ b/src/main/generated/assets/croptopia/items/walnut.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/walnut" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/walnut_sapling.json b/src/main/generated/assets/croptopia/items/walnut_sapling.json new file mode 100644 index 000000000..dffb8d7c0 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/walnut_sapling.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/walnut_sapling" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/water_bottle.json b/src/main/generated/assets/croptopia/items/water_bottle.json new file mode 100644 index 000000000..886924bba --- /dev/null +++ b/src/main/generated/assets/croptopia/items/water_bottle.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/water_bottle" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/whipping_cream.json b/src/main/generated/assets/croptopia/items/whipping_cream.json new file mode 100644 index 000000000..2b93e5938 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/whipping_cream.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/whipping_cream" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/wine.json b/src/main/generated/assets/croptopia/items/wine.json new file mode 100644 index 000000000..b8d125d2f --- /dev/null +++ b/src/main/generated/assets/croptopia/items/wine.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/wine" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/yam.json b/src/main/generated/assets/croptopia/items/yam.json new file mode 100644 index 000000000..3a4744147 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/yam.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/yam" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/yam_jam.json b/src/main/generated/assets/croptopia/items/yam_jam.json new file mode 100644 index 000000000..3d0221f11 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/yam_jam.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/yam_jam" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/yam_seed.json b/src/main/generated/assets/croptopia/items/yam_seed.json new file mode 100644 index 000000000..e366af475 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/yam_seed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/yam_seed" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/yoghurt.json b/src/main/generated/assets/croptopia/items/yoghurt.json new file mode 100644 index 000000000..1d5b34d29 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/yoghurt.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/yoghurt" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/zucchini.json b/src/main/generated/assets/croptopia/items/zucchini.json new file mode 100644 index 000000000..0165b8b78 --- /dev/null +++ b/src/main/generated/assets/croptopia/items/zucchini.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/zucchini" + } +} \ No newline at end of file diff --git a/src/main/generated/assets/croptopia/items/zucchini_seed.json b/src/main/generated/assets/croptopia/items/zucchini_seed.json new file mode 100644 index 000000000..bb276191e --- /dev/null +++ b/src/main/generated/assets/croptopia/items/zucchini_seed.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/zucchini_seed" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/croptopia/models/item/ajvar.json b/src/main/generated/assets/croptopia/models/item/ajvar.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/ajvar.json rename to src/main/generated/assets/croptopia/models/item/ajvar.json diff --git a/src/main/resources/assets/croptopia/models/item/ajvar_toast.json b/src/main/generated/assets/croptopia/models/item/ajvar_toast.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/ajvar_toast.json rename to src/main/generated/assets/croptopia/models/item/ajvar_toast.json diff --git a/src/main/resources/assets/croptopia/models/item/almond.json b/src/main/generated/assets/croptopia/models/item/almond.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/almond.json rename to src/main/generated/assets/croptopia/models/item/almond.json diff --git a/src/main/resources/assets/croptopia/models/item/almond_brittle.json b/src/main/generated/assets/croptopia/models/item/almond_brittle.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/almond_brittle.json rename to src/main/generated/assets/croptopia/models/item/almond_brittle.json diff --git a/src/main/resources/assets/croptopia/models/item/almond_sapling.json b/src/main/generated/assets/croptopia/models/item/almond_sapling.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/almond_sapling.json rename to src/main/generated/assets/croptopia/models/item/almond_sapling.json diff --git a/src/main/resources/assets/croptopia/models/item/apple_juice.json b/src/main/generated/assets/croptopia/models/item/apple_juice.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/apple_juice.json rename to src/main/generated/assets/croptopia/models/item/apple_juice.json diff --git a/src/main/resources/assets/croptopia/models/item/apple_pie.json b/src/main/generated/assets/croptopia/models/item/apple_pie.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/apple_pie.json rename to src/main/generated/assets/croptopia/models/item/apple_pie.json diff --git a/src/main/resources/assets/croptopia/models/item/apple_sapling.json b/src/main/generated/assets/croptopia/models/item/apple_sapling.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/apple_sapling.json rename to src/main/generated/assets/croptopia/models/item/apple_sapling.json diff --git a/src/main/resources/assets/croptopia/models/item/apricot.json b/src/main/generated/assets/croptopia/models/item/apricot.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/apricot.json rename to src/main/generated/assets/croptopia/models/item/apricot.json diff --git a/src/main/resources/assets/croptopia/models/item/apricot_jam.json b/src/main/generated/assets/croptopia/models/item/apricot_jam.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/apricot_jam.json rename to src/main/generated/assets/croptopia/models/item/apricot_jam.json diff --git a/src/main/resources/assets/croptopia/models/item/apricot_sapling.json b/src/main/generated/assets/croptopia/models/item/apricot_sapling.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/apricot_sapling.json rename to src/main/generated/assets/croptopia/models/item/apricot_sapling.json diff --git a/src/main/resources/assets/croptopia/models/item/artichoke.json b/src/main/generated/assets/croptopia/models/item/artichoke.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/artichoke.json rename to src/main/generated/assets/croptopia/models/item/artichoke.json diff --git a/src/main/resources/assets/croptopia/models/item/artichoke_dip.json b/src/main/generated/assets/croptopia/models/item/artichoke_dip.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/artichoke_dip.json rename to src/main/generated/assets/croptopia/models/item/artichoke_dip.json diff --git a/src/main/resources/assets/croptopia/models/item/artichoke_seed.json b/src/main/generated/assets/croptopia/models/item/artichoke_seed.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/artichoke_seed.json rename to src/main/generated/assets/croptopia/models/item/artichoke_seed.json diff --git a/src/main/resources/assets/croptopia/models/item/asparagus.json b/src/main/generated/assets/croptopia/models/item/asparagus.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/asparagus.json rename to src/main/generated/assets/croptopia/models/item/asparagus.json diff --git a/src/main/resources/assets/croptopia/models/item/asparagus_seed.json b/src/main/generated/assets/croptopia/models/item/asparagus_seed.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/asparagus_seed.json rename to src/main/generated/assets/croptopia/models/item/asparagus_seed.json diff --git a/src/main/resources/assets/croptopia/models/item/avocado.json b/src/main/generated/assets/croptopia/models/item/avocado.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/avocado.json rename to src/main/generated/assets/croptopia/models/item/avocado.json diff --git a/src/main/resources/assets/croptopia/models/item/avocado_sapling.json b/src/main/generated/assets/croptopia/models/item/avocado_sapling.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/avocado_sapling.json rename to src/main/generated/assets/croptopia/models/item/avocado_sapling.json diff --git a/src/main/resources/assets/croptopia/models/item/avocado_toast.json b/src/main/generated/assets/croptopia/models/item/avocado_toast.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/avocado_toast.json rename to src/main/generated/assets/croptopia/models/item/avocado_toast.json diff --git a/src/main/resources/assets/croptopia/models/item/bacon.json b/src/main/generated/assets/croptopia/models/item/bacon.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/bacon.json rename to src/main/generated/assets/croptopia/models/item/bacon.json diff --git a/src/main/resources/assets/croptopia/models/item/baked_beans.json b/src/main/generated/assets/croptopia/models/item/baked_beans.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/baked_beans.json rename to src/main/generated/assets/croptopia/models/item/baked_beans.json diff --git a/src/main/resources/assets/croptopia/models/item/baked_sweet_potato.json b/src/main/generated/assets/croptopia/models/item/baked_sweet_potato.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/baked_sweet_potato.json rename to src/main/generated/assets/croptopia/models/item/baked_sweet_potato.json diff --git a/src/main/resources/assets/croptopia/models/item/baked_yam.json b/src/main/generated/assets/croptopia/models/item/baked_yam.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/baked_yam.json rename to src/main/generated/assets/croptopia/models/item/baked_yam.json diff --git a/src/main/resources/assets/croptopia/models/item/banana.json b/src/main/generated/assets/croptopia/models/item/banana.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/banana.json rename to src/main/generated/assets/croptopia/models/item/banana.json diff --git a/src/main/resources/assets/croptopia/models/item/banana_cream_pie.json b/src/main/generated/assets/croptopia/models/item/banana_cream_pie.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/banana_cream_pie.json rename to src/main/generated/assets/croptopia/models/item/banana_cream_pie.json diff --git a/src/main/resources/assets/croptopia/models/item/banana_nut_bread.json b/src/main/generated/assets/croptopia/models/item/banana_nut_bread.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/banana_nut_bread.json rename to src/main/generated/assets/croptopia/models/item/banana_nut_bread.json diff --git a/src/main/resources/assets/croptopia/models/item/banana_sapling.json b/src/main/generated/assets/croptopia/models/item/banana_sapling.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/banana_sapling.json rename to src/main/generated/assets/croptopia/models/item/banana_sapling.json diff --git a/src/main/resources/assets/croptopia/models/item/banana_smoothie.json b/src/main/generated/assets/croptopia/models/item/banana_smoothie.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/banana_smoothie.json rename to src/main/generated/assets/croptopia/models/item/banana_smoothie.json diff --git a/src/main/resources/assets/croptopia/models/item/barley.json b/src/main/generated/assets/croptopia/models/item/barley.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/barley.json rename to src/main/generated/assets/croptopia/models/item/barley.json diff --git a/src/main/resources/assets/croptopia/models/item/barley_seed.json b/src/main/generated/assets/croptopia/models/item/barley_seed.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/barley_seed.json rename to src/main/generated/assets/croptopia/models/item/barley_seed.json diff --git a/src/main/resources/assets/croptopia/models/item/basil.json b/src/main/generated/assets/croptopia/models/item/basil.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/basil.json rename to src/main/generated/assets/croptopia/models/item/basil.json diff --git a/src/main/resources/assets/croptopia/models/item/basil_seed.json b/src/main/generated/assets/croptopia/models/item/basil_seed.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/basil_seed.json rename to src/main/generated/assets/croptopia/models/item/basil_seed.json diff --git a/src/main/resources/assets/croptopia/models/item/beef_jerky.json b/src/main/generated/assets/croptopia/models/item/beef_jerky.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/beef_jerky.json rename to src/main/generated/assets/croptopia/models/item/beef_jerky.json diff --git a/src/main/resources/assets/croptopia/models/item/beef_stew.json b/src/main/generated/assets/croptopia/models/item/beef_stew.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/beef_stew.json rename to src/main/generated/assets/croptopia/models/item/beef_stew.json diff --git a/src/main/resources/assets/croptopia/models/item/beef_stir_fry.json b/src/main/generated/assets/croptopia/models/item/beef_stir_fry.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/beef_stir_fry.json rename to src/main/generated/assets/croptopia/models/item/beef_stir_fry.json diff --git a/src/main/resources/assets/croptopia/models/item/beef_wellington.json b/src/main/generated/assets/croptopia/models/item/beef_wellington.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/beef_wellington.json rename to src/main/generated/assets/croptopia/models/item/beef_wellington.json diff --git a/src/main/resources/assets/croptopia/models/item/beer.json b/src/main/generated/assets/croptopia/models/item/beer.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/beer.json rename to src/main/generated/assets/croptopia/models/item/beer.json diff --git a/src/main/resources/assets/croptopia/models/item/bellpepper.json b/src/main/generated/assets/croptopia/models/item/bellpepper.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/bellpepper.json rename to src/main/generated/assets/croptopia/models/item/bellpepper.json diff --git a/src/main/resources/assets/croptopia/models/item/bellpepper_seed.json b/src/main/generated/assets/croptopia/models/item/bellpepper_seed.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/bellpepper_seed.json rename to src/main/generated/assets/croptopia/models/item/bellpepper_seed.json diff --git a/src/main/resources/assets/croptopia/models/item/blackbean.json b/src/main/generated/assets/croptopia/models/item/blackbean.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/blackbean.json rename to src/main/generated/assets/croptopia/models/item/blackbean.json diff --git a/src/main/resources/assets/croptopia/models/item/blackbean_seed.json b/src/main/generated/assets/croptopia/models/item/blackbean_seed.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/blackbean_seed.json rename to src/main/generated/assets/croptopia/models/item/blackbean_seed.json diff --git a/src/main/resources/assets/croptopia/models/item/blackberry.json b/src/main/generated/assets/croptopia/models/item/blackberry.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/blackberry.json rename to src/main/generated/assets/croptopia/models/item/blackberry.json diff --git a/src/main/resources/assets/croptopia/models/item/blackberry_jam.json b/src/main/generated/assets/croptopia/models/item/blackberry_jam.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/blackberry_jam.json rename to src/main/generated/assets/croptopia/models/item/blackberry_jam.json diff --git a/src/main/resources/assets/croptopia/models/item/blackberry_seed.json b/src/main/generated/assets/croptopia/models/item/blackberry_seed.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/blackberry_seed.json rename to src/main/generated/assets/croptopia/models/item/blackberry_seed.json diff --git a/src/main/resources/assets/croptopia/models/item/blt.json b/src/main/generated/assets/croptopia/models/item/blt.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/blt.json rename to src/main/generated/assets/croptopia/models/item/blt.json diff --git a/src/main/resources/assets/croptopia/models/item/blueberry.json b/src/main/generated/assets/croptopia/models/item/blueberry.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/blueberry.json rename to src/main/generated/assets/croptopia/models/item/blueberry.json diff --git a/src/main/resources/assets/croptopia/models/item/blueberry_jam.json b/src/main/generated/assets/croptopia/models/item/blueberry_jam.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/blueberry_jam.json rename to src/main/generated/assets/croptopia/models/item/blueberry_jam.json diff --git a/src/main/resources/assets/croptopia/models/item/blueberry_seed.json b/src/main/generated/assets/croptopia/models/item/blueberry_seed.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/blueberry_seed.json rename to src/main/generated/assets/croptopia/models/item/blueberry_seed.json diff --git a/src/main/resources/assets/croptopia/models/item/broccoli.json b/src/main/generated/assets/croptopia/models/item/broccoli.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/broccoli.json rename to src/main/generated/assets/croptopia/models/item/broccoli.json diff --git a/src/main/resources/assets/croptopia/models/item/broccoli_seed.json b/src/main/generated/assets/croptopia/models/item/broccoli_seed.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/broccoli_seed.json rename to src/main/generated/assets/croptopia/models/item/broccoli_seed.json diff --git a/src/main/resources/assets/croptopia/models/item/brownies.json b/src/main/generated/assets/croptopia/models/item/brownies.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/brownies.json rename to src/main/generated/assets/croptopia/models/item/brownies.json diff --git a/src/main/resources/assets/croptopia/models/item/burrito.json b/src/main/generated/assets/croptopia/models/item/burrito.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/burrito.json rename to src/main/generated/assets/croptopia/models/item/burrito.json diff --git a/src/main/resources/assets/croptopia/models/item/butter.json b/src/main/generated/assets/croptopia/models/item/butter.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/butter.json rename to src/main/generated/assets/croptopia/models/item/butter.json diff --git a/src/main/resources/assets/croptopia/models/item/buttered_green_beans.json b/src/main/generated/assets/croptopia/models/item/buttered_green_beans.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/buttered_green_beans.json rename to src/main/generated/assets/croptopia/models/item/buttered_green_beans.json diff --git a/src/main/resources/assets/croptopia/models/item/buttered_toast.json b/src/main/generated/assets/croptopia/models/item/buttered_toast.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/buttered_toast.json rename to src/main/generated/assets/croptopia/models/item/buttered_toast.json diff --git a/src/main/resources/assets/croptopia/models/item/cabbage.json b/src/main/generated/assets/croptopia/models/item/cabbage.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/cabbage.json rename to src/main/generated/assets/croptopia/models/item/cabbage.json diff --git a/src/main/resources/assets/croptopia/models/item/cabbage_seed.json b/src/main/generated/assets/croptopia/models/item/cabbage_seed.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/cabbage_seed.json rename to src/main/generated/assets/croptopia/models/item/cabbage_seed.json diff --git a/src/main/resources/assets/croptopia/models/item/caesar_salad.json b/src/main/generated/assets/croptopia/models/item/caesar_salad.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/caesar_salad.json rename to src/main/generated/assets/croptopia/models/item/caesar_salad.json diff --git a/src/main/resources/assets/croptopia/models/item/candied_nuts.json b/src/main/generated/assets/croptopia/models/item/candied_nuts.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/candied_nuts.json rename to src/main/generated/assets/croptopia/models/item/candied_nuts.json diff --git a/src/main/resources/assets/croptopia/models/item/candy_corn.json b/src/main/generated/assets/croptopia/models/item/candy_corn.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/candy_corn.json rename to src/main/generated/assets/croptopia/models/item/candy_corn.json diff --git a/src/main/resources/assets/croptopia/models/item/cantaloupe.json b/src/main/generated/assets/croptopia/models/item/cantaloupe.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/cantaloupe.json rename to src/main/generated/assets/croptopia/models/item/cantaloupe.json diff --git a/src/main/resources/assets/croptopia/models/item/cantaloupe_seed.json b/src/main/generated/assets/croptopia/models/item/cantaloupe_seed.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/cantaloupe_seed.json rename to src/main/generated/assets/croptopia/models/item/cantaloupe_seed.json diff --git a/src/main/resources/assets/croptopia/models/item/caramel.json b/src/main/generated/assets/croptopia/models/item/caramel.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/caramel.json rename to src/main/generated/assets/croptopia/models/item/caramel.json diff --git a/src/main/resources/assets/croptopia/models/item/carnitas.json b/src/main/generated/assets/croptopia/models/item/carnitas.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/carnitas.json rename to src/main/generated/assets/croptopia/models/item/carnitas.json diff --git a/src/main/resources/assets/croptopia/models/item/cashew.json b/src/main/generated/assets/croptopia/models/item/cashew.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/cashew.json rename to src/main/generated/assets/croptopia/models/item/cashew.json diff --git a/src/main/resources/assets/croptopia/models/item/cashew_chicken.json b/src/main/generated/assets/croptopia/models/item/cashew_chicken.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/cashew_chicken.json rename to src/main/generated/assets/croptopia/models/item/cashew_chicken.json diff --git a/src/main/resources/assets/croptopia/models/item/cashew_sapling.json b/src/main/generated/assets/croptopia/models/item/cashew_sapling.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/cashew_sapling.json rename to src/main/generated/assets/croptopia/models/item/cashew_sapling.json diff --git a/src/main/resources/assets/croptopia/models/item/cauliflower.json b/src/main/generated/assets/croptopia/models/item/cauliflower.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/cauliflower.json rename to src/main/generated/assets/croptopia/models/item/cauliflower.json diff --git a/src/main/resources/assets/croptopia/models/item/cauliflower_seed.json b/src/main/generated/assets/croptopia/models/item/cauliflower_seed.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/cauliflower_seed.json rename to src/main/generated/assets/croptopia/models/item/cauliflower_seed.json diff --git a/src/main/resources/assets/croptopia/models/item/celery.json b/src/main/generated/assets/croptopia/models/item/celery.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/celery.json rename to src/main/generated/assets/croptopia/models/item/celery.json diff --git a/src/main/resources/assets/croptopia/models/item/celery_seed.json b/src/main/generated/assets/croptopia/models/item/celery_seed.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/celery_seed.json rename to src/main/generated/assets/croptopia/models/item/celery_seed.json diff --git a/src/main/resources/assets/croptopia/models/item/cheese.json b/src/main/generated/assets/croptopia/models/item/cheese.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/cheese.json rename to src/main/generated/assets/croptopia/models/item/cheese.json diff --git a/src/main/resources/assets/croptopia/models/item/cheese_cake.json b/src/main/generated/assets/croptopia/models/item/cheese_cake.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/cheese_cake.json rename to src/main/generated/assets/croptopia/models/item/cheese_cake.json diff --git a/src/main/resources/assets/croptopia/models/item/cheese_pizza.json b/src/main/generated/assets/croptopia/models/item/cheese_pizza.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/cheese_pizza.json rename to src/main/generated/assets/croptopia/models/item/cheese_pizza.json diff --git a/src/main/resources/assets/croptopia/models/item/cheeseburger.json b/src/main/generated/assets/croptopia/models/item/cheeseburger.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/cheeseburger.json rename to src/main/generated/assets/croptopia/models/item/cheeseburger.json diff --git a/src/main/resources/assets/croptopia/models/item/cheesy_asparagus.json b/src/main/generated/assets/croptopia/models/item/cheesy_asparagus.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/cheesy_asparagus.json rename to src/main/generated/assets/croptopia/models/item/cheesy_asparagus.json diff --git a/src/main/resources/assets/croptopia/models/item/cherry.json b/src/main/generated/assets/croptopia/models/item/cherry.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/cherry.json rename to src/main/generated/assets/croptopia/models/item/cherry.json diff --git a/src/main/resources/assets/croptopia/models/item/cherry_jam.json b/src/main/generated/assets/croptopia/models/item/cherry_jam.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/cherry_jam.json rename to src/main/generated/assets/croptopia/models/item/cherry_jam.json diff --git a/src/main/resources/assets/croptopia/models/item/cherry_pie.json b/src/main/generated/assets/croptopia/models/item/cherry_pie.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/cherry_pie.json rename to src/main/generated/assets/croptopia/models/item/cherry_pie.json diff --git a/src/main/resources/assets/croptopia/models/item/cherry_sapling.json b/src/main/generated/assets/croptopia/models/item/cherry_sapling.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/cherry_sapling.json rename to src/main/generated/assets/croptopia/models/item/cherry_sapling.json diff --git a/src/main/resources/assets/croptopia/models/item/chicken_and_dumplings.json b/src/main/generated/assets/croptopia/models/item/chicken_and_dumplings.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/chicken_and_dumplings.json rename to src/main/generated/assets/croptopia/models/item/chicken_and_dumplings.json diff --git a/src/main/resources/assets/croptopia/models/item/chicken_and_noodles.json b/src/main/generated/assets/croptopia/models/item/chicken_and_noodles.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/chicken_and_noodles.json rename to src/main/generated/assets/croptopia/models/item/chicken_and_noodles.json diff --git a/src/main/resources/assets/croptopia/models/item/chicken_and_rice.json b/src/main/generated/assets/croptopia/models/item/chicken_and_rice.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/chicken_and_rice.json rename to src/main/generated/assets/croptopia/models/item/chicken_and_rice.json diff --git a/src/main/resources/assets/croptopia/models/item/chile_pepper.json b/src/main/generated/assets/croptopia/models/item/chile_pepper.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/chile_pepper.json rename to src/main/generated/assets/croptopia/models/item/chile_pepper.json diff --git a/src/main/resources/assets/croptopia/models/item/chile_pepper_seed.json b/src/main/generated/assets/croptopia/models/item/chile_pepper_seed.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/chile_pepper_seed.json rename to src/main/generated/assets/croptopia/models/item/chile_pepper_seed.json diff --git a/src/main/resources/assets/croptopia/models/item/chili_relleno.json b/src/main/generated/assets/croptopia/models/item/chili_relleno.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/chili_relleno.json rename to src/main/generated/assets/croptopia/models/item/chili_relleno.json diff --git a/src/main/resources/assets/croptopia/models/item/chimichanga.json b/src/main/generated/assets/croptopia/models/item/chimichanga.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/chimichanga.json rename to src/main/generated/assets/croptopia/models/item/chimichanga.json diff --git a/src/main/resources/assets/croptopia/models/item/chocolate.json b/src/main/generated/assets/croptopia/models/item/chocolate.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/chocolate.json rename to src/main/generated/assets/croptopia/models/item/chocolate.json diff --git a/src/main/resources/assets/croptopia/models/item/chocolate_ice_cream.json b/src/main/generated/assets/croptopia/models/item/chocolate_ice_cream.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/chocolate_ice_cream.json rename to src/main/generated/assets/croptopia/models/item/chocolate_ice_cream.json diff --git a/src/main/resources/assets/croptopia/models/item/chocolate_milkshake.json b/src/main/generated/assets/croptopia/models/item/chocolate_milkshake.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/chocolate_milkshake.json rename to src/main/generated/assets/croptopia/models/item/chocolate_milkshake.json diff --git a/src/main/resources/assets/croptopia/models/item/churros.json b/src/main/generated/assets/croptopia/models/item/churros.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/churros.json rename to src/main/generated/assets/croptopia/models/item/churros.json diff --git a/src/main/resources/assets/croptopia/models/item/coconut.json b/src/main/generated/assets/croptopia/models/item/coconut.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/coconut.json rename to src/main/generated/assets/croptopia/models/item/coconut.json diff --git a/src/main/resources/assets/croptopia/models/item/coconut_sapling.json b/src/main/generated/assets/croptopia/models/item/coconut_sapling.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/coconut_sapling.json rename to src/main/generated/assets/croptopia/models/item/coconut_sapling.json diff --git a/src/main/resources/assets/croptopia/models/item/coffee.json b/src/main/generated/assets/croptopia/models/item/coffee.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/coffee.json rename to src/main/generated/assets/croptopia/models/item/coffee.json diff --git a/src/main/resources/assets/croptopia/models/item/coffee_beans.json b/src/main/generated/assets/croptopia/models/item/coffee_beans.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/coffee_beans.json rename to src/main/generated/assets/croptopia/models/item/coffee_beans.json diff --git a/src/main/resources/assets/croptopia/models/item/coffee_seed.json b/src/main/generated/assets/croptopia/models/item/coffee_seed.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/coffee_seed.json rename to src/main/generated/assets/croptopia/models/item/coffee_seed.json diff --git a/src/main/resources/assets/croptopia/models/item/cooked_bacon.json b/src/main/generated/assets/croptopia/models/item/cooked_bacon.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/cooked_bacon.json rename to src/main/generated/assets/croptopia/models/item/cooked_bacon.json diff --git a/src/main/resources/assets/croptopia/models/item/cooking_pot.json b/src/main/generated/assets/croptopia/models/item/cooking_pot.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/cooking_pot.json rename to src/main/generated/assets/croptopia/models/item/cooking_pot.json diff --git a/src/main/resources/assets/croptopia/models/item/corn.json b/src/main/generated/assets/croptopia/models/item/corn.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/corn.json rename to src/main/generated/assets/croptopia/models/item/corn.json diff --git a/src/main/resources/assets/croptopia/models/item/corn_husk.json b/src/main/generated/assets/croptopia/models/item/corn_husk.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/corn_husk.json rename to src/main/generated/assets/croptopia/models/item/corn_husk.json diff --git a/src/main/resources/assets/croptopia/models/item/corn_seed.json b/src/main/generated/assets/croptopia/models/item/corn_seed.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/corn_seed.json rename to src/main/generated/assets/croptopia/models/item/corn_seed.json diff --git a/src/main/resources/assets/croptopia/models/item/cornish_pasty.json b/src/main/generated/assets/croptopia/models/item/cornish_pasty.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/cornish_pasty.json rename to src/main/generated/assets/croptopia/models/item/cornish_pasty.json diff --git a/src/main/resources/assets/croptopia/models/item/cranberry.json b/src/main/generated/assets/croptopia/models/item/cranberry.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/cranberry.json rename to src/main/generated/assets/croptopia/models/item/cranberry.json diff --git a/src/main/resources/assets/croptopia/models/item/cranberry_juice.json b/src/main/generated/assets/croptopia/models/item/cranberry_juice.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/cranberry_juice.json rename to src/main/generated/assets/croptopia/models/item/cranberry_juice.json diff --git a/src/main/resources/assets/croptopia/models/item/cranberry_seed.json b/src/main/generated/assets/croptopia/models/item/cranberry_seed.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/cranberry_seed.json rename to src/main/generated/assets/croptopia/models/item/cranberry_seed.json diff --git a/src/main/resources/assets/croptopia/models/item/crema.json b/src/main/generated/assets/croptopia/models/item/crema.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/crema.json rename to src/main/generated/assets/croptopia/models/item/crema.json diff --git a/src/main/resources/assets/croptopia/models/item/cucumber.json b/src/main/generated/assets/croptopia/models/item/cucumber.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/cucumber.json rename to src/main/generated/assets/croptopia/models/item/cucumber.json diff --git a/src/main/resources/assets/croptopia/models/item/cucumber_salad.json b/src/main/generated/assets/croptopia/models/item/cucumber_salad.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/cucumber_salad.json rename to src/main/generated/assets/croptopia/models/item/cucumber_salad.json diff --git a/src/main/resources/assets/croptopia/models/item/cucumber_seed.json b/src/main/generated/assets/croptopia/models/item/cucumber_seed.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/cucumber_seed.json rename to src/main/generated/assets/croptopia/models/item/cucumber_seed.json diff --git a/src/main/resources/assets/croptopia/models/item/currant.json b/src/main/generated/assets/croptopia/models/item/currant.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/currant.json rename to src/main/generated/assets/croptopia/models/item/currant.json diff --git a/src/main/resources/assets/croptopia/models/item/currant_seed.json b/src/main/generated/assets/croptopia/models/item/currant_seed.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/currant_seed.json rename to src/main/generated/assets/croptopia/models/item/currant_seed.json diff --git a/src/main/resources/assets/croptopia/models/item/date.json b/src/main/generated/assets/croptopia/models/item/date.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/date.json rename to src/main/generated/assets/croptopia/models/item/date.json diff --git a/src/main/resources/assets/croptopia/models/item/date_sapling.json b/src/main/generated/assets/croptopia/models/item/date_sapling.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/date_sapling.json rename to src/main/generated/assets/croptopia/models/item/date_sapling.json diff --git a/src/main/resources/assets/croptopia/models/item/dough.json b/src/main/generated/assets/croptopia/models/item/dough.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/dough.json rename to src/main/generated/assets/croptopia/models/item/dough.json diff --git a/src/main/resources/assets/croptopia/models/item/doughnut.json b/src/main/generated/assets/croptopia/models/item/doughnut.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/doughnut.json rename to src/main/generated/assets/croptopia/models/item/doughnut.json diff --git a/src/main/resources/assets/croptopia/models/item/dragonfruit.json b/src/main/generated/assets/croptopia/models/item/dragonfruit.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/dragonfruit.json rename to src/main/generated/assets/croptopia/models/item/dragonfruit.json diff --git a/src/main/resources/assets/croptopia/models/item/dragonfruit_sapling.json b/src/main/generated/assets/croptopia/models/item/dragonfruit_sapling.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/dragonfruit_sapling.json rename to src/main/generated/assets/croptopia/models/item/dragonfruit_sapling.json diff --git a/src/main/resources/assets/croptopia/models/item/egg_roll.json b/src/main/generated/assets/croptopia/models/item/egg_roll.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/egg_roll.json rename to src/main/generated/assets/croptopia/models/item/egg_roll.json diff --git a/src/main/resources/assets/croptopia/models/item/eggplant.json b/src/main/generated/assets/croptopia/models/item/eggplant.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/eggplant.json rename to src/main/generated/assets/croptopia/models/item/eggplant.json diff --git a/src/main/resources/assets/croptopia/models/item/eggplant_parmesan.json b/src/main/generated/assets/croptopia/models/item/eggplant_parmesan.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/eggplant_parmesan.json rename to src/main/generated/assets/croptopia/models/item/eggplant_parmesan.json diff --git a/src/main/resources/assets/croptopia/models/item/eggplant_seed.json b/src/main/generated/assets/croptopia/models/item/eggplant_seed.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/eggplant_seed.json rename to src/main/generated/assets/croptopia/models/item/eggplant_seed.json diff --git a/src/main/resources/assets/croptopia/models/item/elderberry.json b/src/main/generated/assets/croptopia/models/item/elderberry.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/elderberry.json rename to src/main/generated/assets/croptopia/models/item/elderberry.json diff --git a/src/main/resources/assets/croptopia/models/item/elderberry_jam.json b/src/main/generated/assets/croptopia/models/item/elderberry_jam.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/elderberry_jam.json rename to src/main/generated/assets/croptopia/models/item/elderberry_jam.json diff --git a/src/main/resources/assets/croptopia/models/item/elderberry_seed.json b/src/main/generated/assets/croptopia/models/item/elderberry_seed.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/elderberry_seed.json rename to src/main/generated/assets/croptopia/models/item/elderberry_seed.json diff --git a/src/main/resources/assets/croptopia/models/item/enchilada.json b/src/main/generated/assets/croptopia/models/item/enchilada.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/enchilada.json rename to src/main/generated/assets/croptopia/models/item/enchilada.json diff --git a/src/main/resources/assets/croptopia/models/item/eton_mess.json b/src/main/generated/assets/croptopia/models/item/eton_mess.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/eton_mess.json rename to src/main/generated/assets/croptopia/models/item/eton_mess.json diff --git a/src/main/resources/assets/croptopia/models/item/fajitas.json b/src/main/generated/assets/croptopia/models/item/fajitas.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/fajitas.json rename to src/main/generated/assets/croptopia/models/item/fajitas.json diff --git a/src/main/resources/assets/croptopia/models/item/fig.json b/src/main/generated/assets/croptopia/models/item/fig.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/fig.json rename to src/main/generated/assets/croptopia/models/item/fig.json diff --git a/src/main/resources/assets/croptopia/models/item/fig_sapling.json b/src/main/generated/assets/croptopia/models/item/fig_sapling.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/fig_sapling.json rename to src/main/generated/assets/croptopia/models/item/fig_sapling.json diff --git a/src/main/resources/assets/croptopia/models/item/figgy_pudding.json b/src/main/generated/assets/croptopia/models/item/figgy_pudding.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/figgy_pudding.json rename to src/main/generated/assets/croptopia/models/item/figgy_pudding.json diff --git a/src/main/resources/assets/croptopia/models/item/fish_and_chips.json b/src/main/generated/assets/croptopia/models/item/fish_and_chips.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/fish_and_chips.json rename to src/main/generated/assets/croptopia/models/item/fish_and_chips.json diff --git a/src/main/resources/assets/croptopia/models/item/flour.json b/src/main/generated/assets/croptopia/models/item/flour.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/flour.json rename to src/main/generated/assets/croptopia/models/item/flour.json diff --git a/src/main/resources/assets/croptopia/models/item/food_press.json b/src/main/generated/assets/croptopia/models/item/food_press.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/food_press.json rename to src/main/generated/assets/croptopia/models/item/food_press.json diff --git a/src/main/resources/assets/croptopia/models/item/french_fries.json b/src/main/generated/assets/croptopia/models/item/french_fries.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/french_fries.json rename to src/main/generated/assets/croptopia/models/item/french_fries.json diff --git a/src/main/resources/assets/croptopia/models/item/fried_chicken.json b/src/main/generated/assets/croptopia/models/item/fried_chicken.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/fried_chicken.json rename to src/main/generated/assets/croptopia/models/item/fried_chicken.json diff --git a/src/main/resources/assets/croptopia/models/item/fruit_cake.json b/src/main/generated/assets/croptopia/models/item/fruit_cake.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/fruit_cake.json rename to src/main/generated/assets/croptopia/models/item/fruit_cake.json diff --git a/src/main/resources/assets/croptopia/models/item/fruit_salad.json b/src/main/generated/assets/croptopia/models/item/fruit_salad.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/fruit_salad.json rename to src/main/generated/assets/croptopia/models/item/fruit_salad.json diff --git a/src/main/resources/assets/croptopia/models/item/fruit_smoothie.json b/src/main/generated/assets/croptopia/models/item/fruit_smoothie.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/fruit_smoothie.json rename to src/main/generated/assets/croptopia/models/item/fruit_smoothie.json diff --git a/src/main/resources/assets/croptopia/models/item/frying_pan.json b/src/main/generated/assets/croptopia/models/item/frying_pan.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/frying_pan.json rename to src/main/generated/assets/croptopia/models/item/frying_pan.json diff --git a/src/main/resources/assets/croptopia/models/item/garlic.json b/src/main/generated/assets/croptopia/models/item/garlic.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/garlic.json rename to src/main/generated/assets/croptopia/models/item/garlic.json diff --git a/src/main/resources/assets/croptopia/models/item/garlic_seed.json b/src/main/generated/assets/croptopia/models/item/garlic_seed.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/garlic_seed.json rename to src/main/generated/assets/croptopia/models/item/garlic_seed.json diff --git a/src/main/resources/assets/croptopia/models/item/ginger.json b/src/main/generated/assets/croptopia/models/item/ginger.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/ginger.json rename to src/main/generated/assets/croptopia/models/item/ginger.json diff --git a/src/main/resources/assets/croptopia/models/item/ginger_seed.json b/src/main/generated/assets/croptopia/models/item/ginger_seed.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/ginger_seed.json rename to src/main/generated/assets/croptopia/models/item/ginger_seed.json diff --git a/src/main/resources/assets/croptopia/models/item/grape.json b/src/main/generated/assets/croptopia/models/item/grape.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/grape.json rename to src/main/generated/assets/croptopia/models/item/grape.json diff --git a/src/main/resources/assets/croptopia/models/item/grape_jam.json b/src/main/generated/assets/croptopia/models/item/grape_jam.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/grape_jam.json rename to src/main/generated/assets/croptopia/models/item/grape_jam.json diff --git a/src/main/resources/assets/croptopia/models/item/grape_juice.json b/src/main/generated/assets/croptopia/models/item/grape_juice.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/grape_juice.json rename to src/main/generated/assets/croptopia/models/item/grape_juice.json diff --git a/src/main/resources/assets/croptopia/models/item/grape_seed.json b/src/main/generated/assets/croptopia/models/item/grape_seed.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/grape_seed.json rename to src/main/generated/assets/croptopia/models/item/grape_seed.json diff --git a/src/main/resources/assets/croptopia/models/item/grapefruit.json b/src/main/generated/assets/croptopia/models/item/grapefruit.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/grapefruit.json rename to src/main/generated/assets/croptopia/models/item/grapefruit.json diff --git a/src/main/resources/assets/croptopia/models/item/grapefruit_sapling.json b/src/main/generated/assets/croptopia/models/item/grapefruit_sapling.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/grapefruit_sapling.json rename to src/main/generated/assets/croptopia/models/item/grapefruit_sapling.json diff --git a/src/main/resources/assets/croptopia/models/item/greenbean.json b/src/main/generated/assets/croptopia/models/item/greenbean.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/greenbean.json rename to src/main/generated/assets/croptopia/models/item/greenbean.json diff --git a/src/main/resources/assets/croptopia/models/item/greenbean_seed.json b/src/main/generated/assets/croptopia/models/item/greenbean_seed.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/greenbean_seed.json rename to src/main/generated/assets/croptopia/models/item/greenbean_seed.json diff --git a/src/main/resources/assets/croptopia/models/item/greenonion.json b/src/main/generated/assets/croptopia/models/item/greenonion.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/greenonion.json rename to src/main/generated/assets/croptopia/models/item/greenonion.json diff --git a/src/main/resources/assets/croptopia/models/item/greenonion_seed.json b/src/main/generated/assets/croptopia/models/item/greenonion_seed.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/greenonion_seed.json rename to src/main/generated/assets/croptopia/models/item/greenonion_seed.json diff --git a/src/main/resources/assets/croptopia/models/item/grilled_cheese.json b/src/main/generated/assets/croptopia/models/item/grilled_cheese.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/grilled_cheese.json rename to src/main/generated/assets/croptopia/models/item/grilled_cheese.json diff --git a/src/main/resources/assets/croptopia/models/item/grilled_eggplant.json b/src/main/generated/assets/croptopia/models/item/grilled_eggplant.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/grilled_eggplant.json rename to src/main/generated/assets/croptopia/models/item/grilled_eggplant.json diff --git a/src/main/resources/assets/croptopia/models/item/ham_sandwich.json b/src/main/generated/assets/croptopia/models/item/ham_sandwich.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/ham_sandwich.json rename to src/main/generated/assets/croptopia/models/item/ham_sandwich.json diff --git a/src/main/resources/assets/croptopia/models/item/hamburger.json b/src/main/generated/assets/croptopia/models/item/hamburger.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/hamburger.json rename to src/main/generated/assets/croptopia/models/item/hamburger.json diff --git a/src/main/resources/assets/croptopia/models/item/honeydew.json b/src/main/generated/assets/croptopia/models/item/honeydew.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/honeydew.json rename to src/main/generated/assets/croptopia/models/item/honeydew.json diff --git a/src/main/resources/assets/croptopia/models/item/honeydew_seed.json b/src/main/generated/assets/croptopia/models/item/honeydew_seed.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/honeydew_seed.json rename to src/main/generated/assets/croptopia/models/item/honeydew_seed.json diff --git a/src/main/resources/assets/croptopia/models/item/hops.json b/src/main/generated/assets/croptopia/models/item/hops.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/hops.json rename to src/main/generated/assets/croptopia/models/item/hops.json diff --git a/src/main/resources/assets/croptopia/models/item/hops_seed.json b/src/main/generated/assets/croptopia/models/item/hops_seed.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/hops_seed.json rename to src/main/generated/assets/croptopia/models/item/hops_seed.json diff --git a/src/main/resources/assets/croptopia/models/item/horchata.json b/src/main/generated/assets/croptopia/models/item/horchata.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/horchata.json rename to src/main/generated/assets/croptopia/models/item/horchata.json diff --git a/src/main/resources/assets/croptopia/models/item/kale.json b/src/main/generated/assets/croptopia/models/item/kale.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/kale.json rename to src/main/generated/assets/croptopia/models/item/kale.json diff --git a/src/main/resources/assets/croptopia/models/item/kale_chips.json b/src/main/generated/assets/croptopia/models/item/kale_chips.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/kale_chips.json rename to src/main/generated/assets/croptopia/models/item/kale_chips.json diff --git a/src/main/resources/assets/croptopia/models/item/kale_seed.json b/src/main/generated/assets/croptopia/models/item/kale_seed.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/kale_seed.json rename to src/main/generated/assets/croptopia/models/item/kale_seed.json diff --git a/src/main/resources/assets/croptopia/models/item/kale_smoothie.json b/src/main/generated/assets/croptopia/models/item/kale_smoothie.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/kale_smoothie.json rename to src/main/generated/assets/croptopia/models/item/kale_smoothie.json diff --git a/src/main/resources/assets/croptopia/models/item/kiwi.json b/src/main/generated/assets/croptopia/models/item/kiwi.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/kiwi.json rename to src/main/generated/assets/croptopia/models/item/kiwi.json diff --git a/src/main/resources/assets/croptopia/models/item/kiwi_seed.json b/src/main/generated/assets/croptopia/models/item/kiwi_seed.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/kiwi_seed.json rename to src/main/generated/assets/croptopia/models/item/kiwi_seed.json diff --git a/src/main/resources/assets/croptopia/models/item/kiwi_sorbet.json b/src/main/generated/assets/croptopia/models/item/kiwi_sorbet.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/kiwi_sorbet.json rename to src/main/generated/assets/croptopia/models/item/kiwi_sorbet.json diff --git a/src/main/resources/assets/croptopia/models/item/knife.json b/src/main/generated/assets/croptopia/models/item/knife.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/knife.json rename to src/main/generated/assets/croptopia/models/item/knife.json diff --git a/src/main/resources/assets/croptopia/models/item/kumquat.json b/src/main/generated/assets/croptopia/models/item/kumquat.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/kumquat.json rename to src/main/generated/assets/croptopia/models/item/kumquat.json diff --git a/src/main/resources/assets/croptopia/models/item/kumquat_sapling.json b/src/main/generated/assets/croptopia/models/item/kumquat_sapling.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/kumquat_sapling.json rename to src/main/generated/assets/croptopia/models/item/kumquat_sapling.json diff --git a/src/main/resources/assets/croptopia/models/item/leafy_salad.json b/src/main/generated/assets/croptopia/models/item/leafy_salad.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/leafy_salad.json rename to src/main/generated/assets/croptopia/models/item/leafy_salad.json diff --git a/src/main/resources/assets/croptopia/models/item/leek.json b/src/main/generated/assets/croptopia/models/item/leek.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/leek.json rename to src/main/generated/assets/croptopia/models/item/leek.json diff --git a/src/main/resources/assets/croptopia/models/item/leek_seed.json b/src/main/generated/assets/croptopia/models/item/leek_seed.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/leek_seed.json rename to src/main/generated/assets/croptopia/models/item/leek_seed.json diff --git a/src/main/resources/assets/croptopia/models/item/leek_soup.json b/src/main/generated/assets/croptopia/models/item/leek_soup.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/leek_soup.json rename to src/main/generated/assets/croptopia/models/item/leek_soup.json diff --git a/src/main/resources/assets/croptopia/models/item/lemon.json b/src/main/generated/assets/croptopia/models/item/lemon.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/lemon.json rename to src/main/generated/assets/croptopia/models/item/lemon.json diff --git a/src/main/resources/assets/croptopia/models/item/lemon_chicken.json b/src/main/generated/assets/croptopia/models/item/lemon_chicken.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/lemon_chicken.json rename to src/main/generated/assets/croptopia/models/item/lemon_chicken.json diff --git a/src/main/resources/assets/croptopia/models/item/lemon_coconut_bar.json b/src/main/generated/assets/croptopia/models/item/lemon_coconut_bar.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/lemon_coconut_bar.json rename to src/main/generated/assets/croptopia/models/item/lemon_coconut_bar.json diff --git a/src/main/resources/assets/croptopia/models/item/lemon_sapling.json b/src/main/generated/assets/croptopia/models/item/lemon_sapling.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/lemon_sapling.json rename to src/main/generated/assets/croptopia/models/item/lemon_sapling.json diff --git a/src/main/resources/assets/croptopia/models/item/lemonade.json b/src/main/generated/assets/croptopia/models/item/lemonade.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/lemonade.json rename to src/main/generated/assets/croptopia/models/item/lemonade.json diff --git a/src/main/resources/assets/croptopia/models/item/lettuce.json b/src/main/generated/assets/croptopia/models/item/lettuce.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/lettuce.json rename to src/main/generated/assets/croptopia/models/item/lettuce.json diff --git a/src/main/resources/assets/croptopia/models/item/lettuce_seed.json b/src/main/generated/assets/croptopia/models/item/lettuce_seed.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/lettuce_seed.json rename to src/main/generated/assets/croptopia/models/item/lettuce_seed.json diff --git a/src/main/resources/assets/croptopia/models/item/lime.json b/src/main/generated/assets/croptopia/models/item/lime.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/lime.json rename to src/main/generated/assets/croptopia/models/item/lime.json diff --git a/src/main/resources/assets/croptopia/models/item/lime_sapling.json b/src/main/generated/assets/croptopia/models/item/lime_sapling.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/lime_sapling.json rename to src/main/generated/assets/croptopia/models/item/lime_sapling.json diff --git a/src/main/resources/assets/croptopia/models/item/limeade.json b/src/main/generated/assets/croptopia/models/item/limeade.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/limeade.json rename to src/main/generated/assets/croptopia/models/item/limeade.json diff --git a/src/main/resources/assets/croptopia/models/item/mango.json b/src/main/generated/assets/croptopia/models/item/mango.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/mango.json rename to src/main/generated/assets/croptopia/models/item/mango.json diff --git a/src/main/resources/assets/croptopia/models/item/mango_ice_cream.json b/src/main/generated/assets/croptopia/models/item/mango_ice_cream.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/mango_ice_cream.json rename to src/main/generated/assets/croptopia/models/item/mango_ice_cream.json diff --git a/src/main/resources/assets/croptopia/models/item/mango_sapling.json b/src/main/generated/assets/croptopia/models/item/mango_sapling.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/mango_sapling.json rename to src/main/generated/assets/croptopia/models/item/mango_sapling.json diff --git a/src/main/resources/assets/croptopia/models/item/mead.json b/src/main/generated/assets/croptopia/models/item/mead.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/mead.json rename to src/main/generated/assets/croptopia/models/item/mead.json diff --git a/src/main/resources/assets/croptopia/models/item/melon_juice.json b/src/main/generated/assets/croptopia/models/item/melon_juice.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/melon_juice.json rename to src/main/generated/assets/croptopia/models/item/melon_juice.json diff --git a/src/main/resources/assets/croptopia/models/item/milk_bottle.json b/src/main/generated/assets/croptopia/models/item/milk_bottle.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/milk_bottle.json rename to src/main/generated/assets/croptopia/models/item/milk_bottle.json diff --git a/src/main/resources/assets/croptopia/models/item/molasses.json b/src/main/generated/assets/croptopia/models/item/molasses.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/molasses.json rename to src/main/generated/assets/croptopia/models/item/molasses.json diff --git a/src/main/resources/assets/croptopia/models/item/mortar_and_pestle.json b/src/main/generated/assets/croptopia/models/item/mortar_and_pestle.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/mortar_and_pestle.json rename to src/main/generated/assets/croptopia/models/item/mortar_and_pestle.json diff --git a/src/main/resources/assets/croptopia/models/item/mustard.json b/src/main/generated/assets/croptopia/models/item/mustard.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/mustard.json rename to src/main/generated/assets/croptopia/models/item/mustard.json diff --git a/src/main/resources/assets/croptopia/models/item/mustard_seed.json b/src/main/generated/assets/croptopia/models/item/mustard_seed.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/mustard_seed.json rename to src/main/generated/assets/croptopia/models/item/mustard_seed.json diff --git a/src/main/resources/assets/croptopia/models/item/nectarine.json b/src/main/generated/assets/croptopia/models/item/nectarine.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/nectarine.json rename to src/main/generated/assets/croptopia/models/item/nectarine.json diff --git a/src/main/resources/assets/croptopia/models/item/nectarine_sapling.json b/src/main/generated/assets/croptopia/models/item/nectarine_sapling.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/nectarine_sapling.json rename to src/main/generated/assets/croptopia/models/item/nectarine_sapling.json diff --git a/src/main/resources/assets/croptopia/models/item/nether_wart_stew.json b/src/main/generated/assets/croptopia/models/item/nether_wart_stew.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/nether_wart_stew.json rename to src/main/generated/assets/croptopia/models/item/nether_wart_stew.json diff --git a/src/main/resources/assets/croptopia/models/item/noodle.json b/src/main/generated/assets/croptopia/models/item/noodle.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/noodle.json rename to src/main/generated/assets/croptopia/models/item/noodle.json diff --git a/src/main/resources/assets/croptopia/models/item/nougat.json b/src/main/generated/assets/croptopia/models/item/nougat.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/nougat.json rename to src/main/generated/assets/croptopia/models/item/nougat.json diff --git a/src/main/resources/assets/croptopia/models/item/nutmeg.json b/src/main/generated/assets/croptopia/models/item/nutmeg.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/nutmeg.json rename to src/main/generated/assets/croptopia/models/item/nutmeg.json diff --git a/src/main/resources/assets/croptopia/models/item/nutmeg_sapling.json b/src/main/generated/assets/croptopia/models/item/nutmeg_sapling.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/nutmeg_sapling.json rename to src/main/generated/assets/croptopia/models/item/nutmeg_sapling.json diff --git a/src/main/resources/assets/croptopia/models/item/nutty_cookie.json b/src/main/generated/assets/croptopia/models/item/nutty_cookie.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/nutty_cookie.json rename to src/main/generated/assets/croptopia/models/item/nutty_cookie.json diff --git a/src/main/resources/assets/croptopia/models/item/oat.json b/src/main/generated/assets/croptopia/models/item/oat.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/oat.json rename to src/main/generated/assets/croptopia/models/item/oat.json diff --git a/src/main/resources/assets/croptopia/models/item/oat_seed.json b/src/main/generated/assets/croptopia/models/item/oat_seed.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/oat_seed.json rename to src/main/generated/assets/croptopia/models/item/oat_seed.json diff --git a/src/main/resources/assets/croptopia/models/item/oatmeal.json b/src/main/generated/assets/croptopia/models/item/oatmeal.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/oatmeal.json rename to src/main/generated/assets/croptopia/models/item/oatmeal.json diff --git a/src/main/resources/assets/croptopia/models/item/olive.json b/src/main/generated/assets/croptopia/models/item/olive.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/olive.json rename to src/main/generated/assets/croptopia/models/item/olive.json diff --git a/src/main/resources/assets/croptopia/models/item/olive_oil.json b/src/main/generated/assets/croptopia/models/item/olive_oil.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/olive_oil.json rename to src/main/generated/assets/croptopia/models/item/olive_oil.json diff --git a/src/main/resources/assets/croptopia/models/item/olive_seed.json b/src/main/generated/assets/croptopia/models/item/olive_seed.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/olive_seed.json rename to src/main/generated/assets/croptopia/models/item/olive_seed.json diff --git a/src/main/resources/assets/croptopia/models/item/onion.json b/src/main/generated/assets/croptopia/models/item/onion.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/onion.json rename to src/main/generated/assets/croptopia/models/item/onion.json diff --git a/src/main/resources/assets/croptopia/models/item/onion_rings.json b/src/main/generated/assets/croptopia/models/item/onion_rings.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/onion_rings.json rename to src/main/generated/assets/croptopia/models/item/onion_rings.json diff --git a/src/main/resources/assets/croptopia/models/item/onion_seed.json b/src/main/generated/assets/croptopia/models/item/onion_seed.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/onion_seed.json rename to src/main/generated/assets/croptopia/models/item/onion_seed.json diff --git a/src/main/resources/assets/croptopia/models/item/orange.json b/src/main/generated/assets/croptopia/models/item/orange.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/orange.json rename to src/main/generated/assets/croptopia/models/item/orange.json diff --git a/src/main/resources/assets/croptopia/models/item/orange_juice.json b/src/main/generated/assets/croptopia/models/item/orange_juice.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/orange_juice.json rename to src/main/generated/assets/croptopia/models/item/orange_juice.json diff --git a/src/main/resources/assets/croptopia/models/item/orange_sapling.json b/src/main/generated/assets/croptopia/models/item/orange_sapling.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/orange_sapling.json rename to src/main/generated/assets/croptopia/models/item/orange_sapling.json diff --git a/src/main/resources/assets/croptopia/models/item/paprika.json b/src/main/generated/assets/croptopia/models/item/paprika.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/paprika.json rename to src/main/generated/assets/croptopia/models/item/paprika.json diff --git a/src/main/resources/assets/croptopia/models/item/peach.json b/src/main/generated/assets/croptopia/models/item/peach.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/peach.json rename to src/main/generated/assets/croptopia/models/item/peach.json diff --git a/src/main/resources/assets/croptopia/models/item/peach_jam.json b/src/main/generated/assets/croptopia/models/item/peach_jam.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/peach_jam.json rename to src/main/generated/assets/croptopia/models/item/peach_jam.json diff --git a/src/main/resources/assets/croptopia/models/item/peach_sapling.json b/src/main/generated/assets/croptopia/models/item/peach_sapling.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/peach_sapling.json rename to src/main/generated/assets/croptopia/models/item/peach_sapling.json diff --git a/src/main/resources/assets/croptopia/models/item/peanut.json b/src/main/generated/assets/croptopia/models/item/peanut.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/peanut.json rename to src/main/generated/assets/croptopia/models/item/peanut.json diff --git a/src/main/resources/assets/croptopia/models/item/peanut_butter.json b/src/main/generated/assets/croptopia/models/item/peanut_butter.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/peanut_butter.json rename to src/main/generated/assets/croptopia/models/item/peanut_butter.json diff --git a/src/main/resources/assets/croptopia/models/item/peanut_butter_and_jam.json b/src/main/generated/assets/croptopia/models/item/peanut_butter_and_jam.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/peanut_butter_and_jam.json rename to src/main/generated/assets/croptopia/models/item/peanut_butter_and_jam.json diff --git a/src/main/resources/assets/croptopia/models/item/peanut_butter_with_celery.json b/src/main/generated/assets/croptopia/models/item/peanut_butter_with_celery.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/peanut_butter_with_celery.json rename to src/main/generated/assets/croptopia/models/item/peanut_butter_with_celery.json diff --git a/src/main/resources/assets/croptopia/models/item/peanut_seed.json b/src/main/generated/assets/croptopia/models/item/peanut_seed.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/peanut_seed.json rename to src/main/generated/assets/croptopia/models/item/peanut_seed.json diff --git a/src/main/resources/assets/croptopia/models/item/pear.json b/src/main/generated/assets/croptopia/models/item/pear.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/pear.json rename to src/main/generated/assets/croptopia/models/item/pear.json diff --git a/src/main/resources/assets/croptopia/models/item/pear_sapling.json b/src/main/generated/assets/croptopia/models/item/pear_sapling.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/pear_sapling.json rename to src/main/generated/assets/croptopia/models/item/pear_sapling.json diff --git a/src/main/resources/assets/croptopia/models/item/pecan.json b/src/main/generated/assets/croptopia/models/item/pecan.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/pecan.json rename to src/main/generated/assets/croptopia/models/item/pecan.json diff --git a/src/main/resources/assets/croptopia/models/item/pecan_ice_cream.json b/src/main/generated/assets/croptopia/models/item/pecan_ice_cream.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/pecan_ice_cream.json rename to src/main/generated/assets/croptopia/models/item/pecan_ice_cream.json diff --git a/src/main/resources/assets/croptopia/models/item/pecan_pie.json b/src/main/generated/assets/croptopia/models/item/pecan_pie.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/pecan_pie.json rename to src/main/generated/assets/croptopia/models/item/pecan_pie.json diff --git a/src/main/resources/assets/croptopia/models/item/pecan_sapling.json b/src/main/generated/assets/croptopia/models/item/pecan_sapling.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/pecan_sapling.json rename to src/main/generated/assets/croptopia/models/item/pecan_sapling.json diff --git a/src/main/resources/assets/croptopia/models/item/pepper.json b/src/main/generated/assets/croptopia/models/item/pepper.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/pepper.json rename to src/main/generated/assets/croptopia/models/item/pepper.json diff --git a/src/main/resources/assets/croptopia/models/item/pepper_seed.json b/src/main/generated/assets/croptopia/models/item/pepper_seed.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/pepper_seed.json rename to src/main/generated/assets/croptopia/models/item/pepper_seed.json diff --git a/src/main/resources/assets/croptopia/models/item/pepperoni.json b/src/main/generated/assets/croptopia/models/item/pepperoni.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/pepperoni.json rename to src/main/generated/assets/croptopia/models/item/pepperoni.json diff --git a/src/main/resources/assets/croptopia/models/item/persimmon.json b/src/main/generated/assets/croptopia/models/item/persimmon.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/persimmon.json rename to src/main/generated/assets/croptopia/models/item/persimmon.json diff --git a/src/main/resources/assets/croptopia/models/item/persimmon_sapling.json b/src/main/generated/assets/croptopia/models/item/persimmon_sapling.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/persimmon_sapling.json rename to src/main/generated/assets/croptopia/models/item/persimmon_sapling.json diff --git a/src/main/resources/assets/croptopia/models/item/pineapple.json b/src/main/generated/assets/croptopia/models/item/pineapple.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/pineapple.json rename to src/main/generated/assets/croptopia/models/item/pineapple.json diff --git a/src/main/resources/assets/croptopia/models/item/pineapple_juice.json b/src/main/generated/assets/croptopia/models/item/pineapple_juice.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/pineapple_juice.json rename to src/main/generated/assets/croptopia/models/item/pineapple_juice.json diff --git a/src/main/resources/assets/croptopia/models/item/pineapple_pepperoni_pizza.json b/src/main/generated/assets/croptopia/models/item/pineapple_pepperoni_pizza.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/pineapple_pepperoni_pizza.json rename to src/main/generated/assets/croptopia/models/item/pineapple_pepperoni_pizza.json diff --git a/src/main/resources/assets/croptopia/models/item/pineapple_seed.json b/src/main/generated/assets/croptopia/models/item/pineapple_seed.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/pineapple_seed.json rename to src/main/generated/assets/croptopia/models/item/pineapple_seed.json diff --git a/src/main/resources/assets/croptopia/models/item/pizza.json b/src/main/generated/assets/croptopia/models/item/pizza.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/pizza.json rename to src/main/generated/assets/croptopia/models/item/pizza.json diff --git a/src/main/resources/assets/croptopia/models/item/plum.json b/src/main/generated/assets/croptopia/models/item/plum.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/plum.json rename to src/main/generated/assets/croptopia/models/item/plum.json diff --git a/src/main/resources/assets/croptopia/models/item/plum_sapling.json b/src/main/generated/assets/croptopia/models/item/plum_sapling.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/plum_sapling.json rename to src/main/generated/assets/croptopia/models/item/plum_sapling.json diff --git a/src/main/resources/assets/croptopia/models/item/popcorn.json b/src/main/generated/assets/croptopia/models/item/popcorn.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/popcorn.json rename to src/main/generated/assets/croptopia/models/item/popcorn.json diff --git a/src/main/resources/assets/croptopia/models/item/pork_and_beans.json b/src/main/generated/assets/croptopia/models/item/pork_and_beans.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/pork_and_beans.json rename to src/main/generated/assets/croptopia/models/item/pork_and_beans.json diff --git a/src/main/resources/assets/croptopia/models/item/pork_jerky.json b/src/main/generated/assets/croptopia/models/item/pork_jerky.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/pork_jerky.json rename to src/main/generated/assets/croptopia/models/item/pork_jerky.json diff --git a/src/main/resources/assets/croptopia/models/item/potato_chips.json b/src/main/generated/assets/croptopia/models/item/potato_chips.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/potato_chips.json rename to src/main/generated/assets/croptopia/models/item/potato_chips.json diff --git a/src/main/resources/assets/croptopia/models/item/potato_soup.json b/src/main/generated/assets/croptopia/models/item/potato_soup.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/potato_soup.json rename to src/main/generated/assets/croptopia/models/item/potato_soup.json diff --git a/src/main/resources/assets/croptopia/models/item/protein_bar.json b/src/main/generated/assets/croptopia/models/item/protein_bar.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/protein_bar.json rename to src/main/generated/assets/croptopia/models/item/protein_bar.json diff --git a/src/main/resources/assets/croptopia/models/item/pumpkin_spice_latte.json b/src/main/generated/assets/croptopia/models/item/pumpkin_spice_latte.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/pumpkin_spice_latte.json rename to src/main/generated/assets/croptopia/models/item/pumpkin_spice_latte.json diff --git a/src/main/resources/assets/croptopia/models/item/quesadilla.json b/src/main/generated/assets/croptopia/models/item/quesadilla.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/quesadilla.json rename to src/main/generated/assets/croptopia/models/item/quesadilla.json diff --git a/src/main/resources/assets/croptopia/models/item/radish.json b/src/main/generated/assets/croptopia/models/item/radish.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/radish.json rename to src/main/generated/assets/croptopia/models/item/radish.json diff --git a/src/main/resources/assets/croptopia/models/item/radish_seed.json b/src/main/generated/assets/croptopia/models/item/radish_seed.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/radish_seed.json rename to src/main/generated/assets/croptopia/models/item/radish_seed.json diff --git a/src/main/resources/assets/croptopia/models/item/raisin_oatmeal_cookie.json b/src/main/generated/assets/croptopia/models/item/raisin_oatmeal_cookie.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/raisin_oatmeal_cookie.json rename to src/main/generated/assets/croptopia/models/item/raisin_oatmeal_cookie.json diff --git a/src/main/resources/assets/croptopia/models/item/raisins.json b/src/main/generated/assets/croptopia/models/item/raisins.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/raisins.json rename to src/main/generated/assets/croptopia/models/item/raisins.json diff --git a/src/main/resources/assets/croptopia/models/item/raspberry.json b/src/main/generated/assets/croptopia/models/item/raspberry.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/raspberry.json rename to src/main/generated/assets/croptopia/models/item/raspberry.json diff --git a/src/main/resources/assets/croptopia/models/item/raspberry_jam.json b/src/main/generated/assets/croptopia/models/item/raspberry_jam.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/raspberry_jam.json rename to src/main/generated/assets/croptopia/models/item/raspberry_jam.json diff --git a/src/main/resources/assets/croptopia/models/item/raspberry_seed.json b/src/main/generated/assets/croptopia/models/item/raspberry_seed.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/raspberry_seed.json rename to src/main/generated/assets/croptopia/models/item/raspberry_seed.json diff --git a/src/main/resources/assets/croptopia/models/item/ratatouille.json b/src/main/generated/assets/croptopia/models/item/ratatouille.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/ratatouille.json rename to src/main/generated/assets/croptopia/models/item/ratatouille.json diff --git a/src/main/resources/assets/croptopia/models/item/ravioli.json b/src/main/generated/assets/croptopia/models/item/ravioli.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/ravioli.json rename to src/main/generated/assets/croptopia/models/item/ravioli.json diff --git a/src/main/resources/assets/croptopia/models/item/refried_beans.json b/src/main/generated/assets/croptopia/models/item/refried_beans.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/refried_beans.json rename to src/main/generated/assets/croptopia/models/item/refried_beans.json diff --git a/src/main/resources/assets/croptopia/models/item/rhubarb.json b/src/main/generated/assets/croptopia/models/item/rhubarb.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/rhubarb.json rename to src/main/generated/assets/croptopia/models/item/rhubarb.json diff --git a/src/main/resources/assets/croptopia/models/item/rhubarb_crisp.json b/src/main/generated/assets/croptopia/models/item/rhubarb_crisp.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/rhubarb_crisp.json rename to src/main/generated/assets/croptopia/models/item/rhubarb_crisp.json diff --git a/src/main/resources/assets/croptopia/models/item/rhubarb_pie.json b/src/main/generated/assets/croptopia/models/item/rhubarb_pie.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/rhubarb_pie.json rename to src/main/generated/assets/croptopia/models/item/rhubarb_pie.json diff --git a/src/main/resources/assets/croptopia/models/item/rhubarb_seed.json b/src/main/generated/assets/croptopia/models/item/rhubarb_seed.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/rhubarb_seed.json rename to src/main/generated/assets/croptopia/models/item/rhubarb_seed.json diff --git a/src/main/resources/assets/croptopia/models/item/rice.json b/src/main/generated/assets/croptopia/models/item/rice.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/rice.json rename to src/main/generated/assets/croptopia/models/item/rice.json diff --git a/src/main/resources/assets/croptopia/models/item/rice_seed.json b/src/main/generated/assets/croptopia/models/item/rice_seed.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/rice_seed.json rename to src/main/generated/assets/croptopia/models/item/rice_seed.json diff --git a/src/main/resources/assets/croptopia/models/item/roasted_asparagus.json b/src/main/generated/assets/croptopia/models/item/roasted_asparagus.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/roasted_asparagus.json rename to src/main/generated/assets/croptopia/models/item/roasted_asparagus.json diff --git a/src/main/resources/assets/croptopia/models/item/roasted_nuts.json b/src/main/generated/assets/croptopia/models/item/roasted_nuts.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/roasted_nuts.json rename to src/main/generated/assets/croptopia/models/item/roasted_nuts.json diff --git a/src/main/resources/assets/croptopia/models/item/roasted_radishes.json b/src/main/generated/assets/croptopia/models/item/roasted_radishes.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/roasted_radishes.json rename to src/main/generated/assets/croptopia/models/item/roasted_radishes.json diff --git a/src/main/resources/assets/croptopia/models/item/roasted_squash.json b/src/main/generated/assets/croptopia/models/item/roasted_squash.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/roasted_squash.json rename to src/main/generated/assets/croptopia/models/item/roasted_squash.json diff --git a/src/main/resources/assets/croptopia/models/item/roasted_turnips.json b/src/main/generated/assets/croptopia/models/item/roasted_turnips.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/roasted_turnips.json rename to src/main/generated/assets/croptopia/models/item/roasted_turnips.json diff --git a/src/main/resources/assets/croptopia/models/item/rum.json b/src/main/generated/assets/croptopia/models/item/rum.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/rum.json rename to src/main/generated/assets/croptopia/models/item/rum.json diff --git a/src/main/resources/assets/croptopia/models/item/rum_raisin_ice_cream.json b/src/main/generated/assets/croptopia/models/item/rum_raisin_ice_cream.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/rum_raisin_ice_cream.json rename to src/main/generated/assets/croptopia/models/item/rum_raisin_ice_cream.json diff --git a/src/main/resources/assets/croptopia/models/item/rutabaga.json b/src/main/generated/assets/croptopia/models/item/rutabaga.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/rutabaga.json rename to src/main/generated/assets/croptopia/models/item/rutabaga.json diff --git a/src/main/resources/assets/croptopia/models/item/rutabaga_seed.json b/src/main/generated/assets/croptopia/models/item/rutabaga_seed.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/rutabaga_seed.json rename to src/main/generated/assets/croptopia/models/item/rutabaga_seed.json diff --git a/src/main/resources/assets/croptopia/models/item/saguaro.json b/src/main/generated/assets/croptopia/models/item/saguaro.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/saguaro.json rename to src/main/generated/assets/croptopia/models/item/saguaro.json diff --git a/src/main/resources/assets/croptopia/models/item/saguaro_juice.json b/src/main/generated/assets/croptopia/models/item/saguaro_juice.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/saguaro_juice.json rename to src/main/generated/assets/croptopia/models/item/saguaro_juice.json diff --git a/src/main/resources/assets/croptopia/models/item/saguaro_seed.json b/src/main/generated/assets/croptopia/models/item/saguaro_seed.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/saguaro_seed.json rename to src/main/generated/assets/croptopia/models/item/saguaro_seed.json diff --git a/src/main/resources/assets/croptopia/models/item/salsa.json b/src/main/generated/assets/croptopia/models/item/salsa.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/salsa.json rename to src/main/generated/assets/croptopia/models/item/salsa.json diff --git a/src/main/resources/assets/croptopia/models/item/salt.json b/src/main/generated/assets/croptopia/models/item/salt.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/salt.json rename to src/main/generated/assets/croptopia/models/item/salt.json diff --git a/src/main/resources/assets/croptopia/models/item/saucy_chips.json b/src/main/generated/assets/croptopia/models/item/saucy_chips.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/saucy_chips.json rename to src/main/generated/assets/croptopia/models/item/saucy_chips.json diff --git a/src/main/resources/assets/croptopia/models/item/scones.json b/src/main/generated/assets/croptopia/models/item/scones.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/scones.json rename to src/main/generated/assets/croptopia/models/item/scones.json diff --git a/src/main/resources/assets/croptopia/models/item/scrambled_eggs.json b/src/main/generated/assets/croptopia/models/item/scrambled_eggs.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/scrambled_eggs.json rename to src/main/generated/assets/croptopia/models/item/scrambled_eggs.json diff --git a/src/main/resources/assets/croptopia/models/item/shepherds_pie.json b/src/main/generated/assets/croptopia/models/item/shepherds_pie.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/shepherds_pie.json rename to src/main/generated/assets/croptopia/models/item/shepherds_pie.json diff --git a/src/main/resources/assets/croptopia/models/item/snicker_doodle.json b/src/main/generated/assets/croptopia/models/item/snicker_doodle.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/snicker_doodle.json rename to src/main/generated/assets/croptopia/models/item/snicker_doodle.json diff --git a/src/main/resources/assets/croptopia/models/item/soy_milk.json b/src/main/generated/assets/croptopia/models/item/soy_milk.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/soy_milk.json rename to src/main/generated/assets/croptopia/models/item/soy_milk.json diff --git a/src/main/resources/assets/croptopia/models/item/soy_sauce.json b/src/main/generated/assets/croptopia/models/item/soy_sauce.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/soy_sauce.json rename to src/main/generated/assets/croptopia/models/item/soy_sauce.json diff --git a/src/main/resources/assets/croptopia/models/item/soybean.json b/src/main/generated/assets/croptopia/models/item/soybean.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/soybean.json rename to src/main/generated/assets/croptopia/models/item/soybean.json diff --git a/src/main/resources/assets/croptopia/models/item/soybean_seed.json b/src/main/generated/assets/croptopia/models/item/soybean_seed.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/soybean_seed.json rename to src/main/generated/assets/croptopia/models/item/soybean_seed.json diff --git a/src/main/resources/assets/croptopia/models/item/spaghetti_squash.json b/src/main/generated/assets/croptopia/models/item/spaghetti_squash.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/spaghetti_squash.json rename to src/main/generated/assets/croptopia/models/item/spaghetti_squash.json diff --git a/src/main/resources/assets/croptopia/models/item/spinach.json b/src/main/generated/assets/croptopia/models/item/spinach.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/spinach.json rename to src/main/generated/assets/croptopia/models/item/spinach.json diff --git a/src/main/resources/assets/croptopia/models/item/spinach_seed.json b/src/main/generated/assets/croptopia/models/item/spinach_seed.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/spinach_seed.json rename to src/main/generated/assets/croptopia/models/item/spinach_seed.json diff --git a/src/main/resources/assets/croptopia/models/item/squash.json b/src/main/generated/assets/croptopia/models/item/squash.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/squash.json rename to src/main/generated/assets/croptopia/models/item/squash.json diff --git a/src/main/resources/assets/croptopia/models/item/squash_seed.json b/src/main/generated/assets/croptopia/models/item/squash_seed.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/squash_seed.json rename to src/main/generated/assets/croptopia/models/item/squash_seed.json diff --git a/src/main/resources/assets/croptopia/models/item/starfruit.json b/src/main/generated/assets/croptopia/models/item/starfruit.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/starfruit.json rename to src/main/generated/assets/croptopia/models/item/starfruit.json diff --git a/src/main/resources/assets/croptopia/models/item/starfruit_sapling.json b/src/main/generated/assets/croptopia/models/item/starfruit_sapling.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/starfruit_sapling.json rename to src/main/generated/assets/croptopia/models/item/starfruit_sapling.json diff --git a/src/main/resources/assets/croptopia/models/item/steamed_broccoli.json b/src/main/generated/assets/croptopia/models/item/steamed_broccoli.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/steamed_broccoli.json rename to src/main/generated/assets/croptopia/models/item/steamed_broccoli.json diff --git a/src/main/resources/assets/croptopia/models/item/steamed_green_beans.json b/src/main/generated/assets/croptopia/models/item/steamed_green_beans.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/steamed_green_beans.json rename to src/main/generated/assets/croptopia/models/item/steamed_green_beans.json diff --git a/src/main/resources/assets/croptopia/models/item/steamed_rice.json b/src/main/generated/assets/croptopia/models/item/steamed_rice.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/steamed_rice.json rename to src/main/generated/assets/croptopia/models/item/steamed_rice.json diff --git a/src/main/resources/assets/croptopia/models/item/sticky_toffee_pudding.json b/src/main/generated/assets/croptopia/models/item/sticky_toffee_pudding.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/sticky_toffee_pudding.json rename to src/main/generated/assets/croptopia/models/item/sticky_toffee_pudding.json diff --git a/src/main/resources/assets/croptopia/models/item/stir_fry.json b/src/main/generated/assets/croptopia/models/item/stir_fry.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/stir_fry.json rename to src/main/generated/assets/croptopia/models/item/stir_fry.json diff --git a/src/main/resources/assets/croptopia/models/item/strawberry.json b/src/main/generated/assets/croptopia/models/item/strawberry.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/strawberry.json rename to src/main/generated/assets/croptopia/models/item/strawberry.json diff --git a/src/main/resources/assets/croptopia/models/item/strawberry_ice_cream.json b/src/main/generated/assets/croptopia/models/item/strawberry_ice_cream.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/strawberry_ice_cream.json rename to src/main/generated/assets/croptopia/models/item/strawberry_ice_cream.json diff --git a/src/main/resources/assets/croptopia/models/item/strawberry_jam.json b/src/main/generated/assets/croptopia/models/item/strawberry_jam.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/strawberry_jam.json rename to src/main/generated/assets/croptopia/models/item/strawberry_jam.json diff --git a/src/main/resources/assets/croptopia/models/item/strawberry_seed.json b/src/main/generated/assets/croptopia/models/item/strawberry_seed.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/strawberry_seed.json rename to src/main/generated/assets/croptopia/models/item/strawberry_seed.json diff --git a/src/main/resources/assets/croptopia/models/item/strawberry_smoothie.json b/src/main/generated/assets/croptopia/models/item/strawberry_smoothie.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/strawberry_smoothie.json rename to src/main/generated/assets/croptopia/models/item/strawberry_smoothie.json diff --git a/src/main/resources/assets/croptopia/models/item/stuffed_artichoke.json b/src/main/generated/assets/croptopia/models/item/stuffed_artichoke.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/stuffed_artichoke.json rename to src/main/generated/assets/croptopia/models/item/stuffed_artichoke.json diff --git a/src/main/resources/assets/croptopia/models/item/stuffed_poblanos.json b/src/main/generated/assets/croptopia/models/item/stuffed_poblanos.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/stuffed_poblanos.json rename to src/main/generated/assets/croptopia/models/item/stuffed_poblanos.json diff --git a/src/main/resources/assets/croptopia/models/item/supreme_pizza.json b/src/main/generated/assets/croptopia/models/item/supreme_pizza.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/supreme_pizza.json rename to src/main/generated/assets/croptopia/models/item/supreme_pizza.json diff --git a/src/main/resources/assets/croptopia/models/item/sushi.json b/src/main/generated/assets/croptopia/models/item/sushi.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/sushi.json rename to src/main/generated/assets/croptopia/models/item/sushi.json diff --git a/src/main/resources/assets/croptopia/models/item/sweet_potato_fries.json b/src/main/generated/assets/croptopia/models/item/sweet_potato_fries.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/sweet_potato_fries.json rename to src/main/generated/assets/croptopia/models/item/sweet_potato_fries.json diff --git a/src/main/resources/assets/croptopia/models/item/sweetpotato.json b/src/main/generated/assets/croptopia/models/item/sweetpotato.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/sweetpotato.json rename to src/main/generated/assets/croptopia/models/item/sweetpotato.json diff --git a/src/main/resources/assets/croptopia/models/item/sweetpotato_seed.json b/src/main/generated/assets/croptopia/models/item/sweetpotato_seed.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/sweetpotato_seed.json rename to src/main/generated/assets/croptopia/models/item/sweetpotato_seed.json diff --git a/src/main/resources/assets/croptopia/models/item/taco.json b/src/main/generated/assets/croptopia/models/item/taco.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/taco.json rename to src/main/generated/assets/croptopia/models/item/taco.json diff --git a/src/main/resources/assets/croptopia/models/item/tamales.json b/src/main/generated/assets/croptopia/models/item/tamales.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/tamales.json rename to src/main/generated/assets/croptopia/models/item/tamales.json diff --git a/src/main/resources/assets/croptopia/models/item/tea.json b/src/main/generated/assets/croptopia/models/item/tea.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/tea.json rename to src/main/generated/assets/croptopia/models/item/tea.json diff --git a/src/main/resources/assets/croptopia/models/item/tea_leaves.json b/src/main/generated/assets/croptopia/models/item/tea_leaves.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/tea_leaves.json rename to src/main/generated/assets/croptopia/models/item/tea_leaves.json diff --git a/src/main/resources/assets/croptopia/models/item/tea_seed.json b/src/main/generated/assets/croptopia/models/item/tea_seed.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/tea_seed.json rename to src/main/generated/assets/croptopia/models/item/tea_seed.json diff --git a/src/main/resources/assets/croptopia/models/item/toast.json b/src/main/generated/assets/croptopia/models/item/toast.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/toast.json rename to src/main/generated/assets/croptopia/models/item/toast.json diff --git a/src/main/resources/assets/croptopia/models/item/toast_sandwich.json b/src/main/generated/assets/croptopia/models/item/toast_sandwich.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/toast_sandwich.json rename to src/main/generated/assets/croptopia/models/item/toast_sandwich.json diff --git a/src/main/resources/assets/croptopia/models/item/toast_with_jam.json b/src/main/generated/assets/croptopia/models/item/toast_with_jam.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/toast_with_jam.json rename to src/main/generated/assets/croptopia/models/item/toast_with_jam.json diff --git a/src/main/resources/assets/croptopia/models/item/tofu.json b/src/main/generated/assets/croptopia/models/item/tofu.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/tofu.json rename to src/main/generated/assets/croptopia/models/item/tofu.json diff --git a/src/main/resources/assets/croptopia/models/item/tofu_and_dumplings.json b/src/main/generated/assets/croptopia/models/item/tofu_and_dumplings.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/tofu_and_dumplings.json rename to src/main/generated/assets/croptopia/models/item/tofu_and_dumplings.json diff --git a/src/main/resources/assets/croptopia/models/item/tofuburger.json b/src/main/generated/assets/croptopia/models/item/tofuburger.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/tofuburger.json rename to src/main/generated/assets/croptopia/models/item/tofuburger.json diff --git a/src/main/resources/assets/croptopia/models/item/tomatillo.json b/src/main/generated/assets/croptopia/models/item/tomatillo.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/tomatillo.json rename to src/main/generated/assets/croptopia/models/item/tomatillo.json diff --git a/src/main/resources/assets/croptopia/models/item/tomatillo_seed.json b/src/main/generated/assets/croptopia/models/item/tomatillo_seed.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/tomatillo_seed.json rename to src/main/generated/assets/croptopia/models/item/tomatillo_seed.json diff --git a/src/main/resources/assets/croptopia/models/item/tomato.json b/src/main/generated/assets/croptopia/models/item/tomato.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/tomato.json rename to src/main/generated/assets/croptopia/models/item/tomato.json diff --git a/src/main/resources/assets/croptopia/models/item/tomato_juice.json b/src/main/generated/assets/croptopia/models/item/tomato_juice.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/tomato_juice.json rename to src/main/generated/assets/croptopia/models/item/tomato_juice.json diff --git a/src/main/resources/assets/croptopia/models/item/tomato_seed.json b/src/main/generated/assets/croptopia/models/item/tomato_seed.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/tomato_seed.json rename to src/main/generated/assets/croptopia/models/item/tomato_seed.json diff --git a/src/main/resources/assets/croptopia/models/item/tortilla.json b/src/main/generated/assets/croptopia/models/item/tortilla.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/tortilla.json rename to src/main/generated/assets/croptopia/models/item/tortilla.json diff --git a/src/main/resources/assets/croptopia/models/item/tostada.json b/src/main/generated/assets/croptopia/models/item/tostada.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/tostada.json rename to src/main/generated/assets/croptopia/models/item/tostada.json diff --git a/src/main/resources/assets/croptopia/models/item/trail_mix.json b/src/main/generated/assets/croptopia/models/item/trail_mix.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/trail_mix.json rename to src/main/generated/assets/croptopia/models/item/trail_mix.json diff --git a/src/main/resources/assets/croptopia/models/item/treacle_tart.json b/src/main/generated/assets/croptopia/models/item/treacle_tart.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/treacle_tart.json rename to src/main/generated/assets/croptopia/models/item/treacle_tart.json diff --git a/src/main/resources/assets/croptopia/models/item/tres_leche_cake.json b/src/main/generated/assets/croptopia/models/item/tres_leche_cake.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/tres_leche_cake.json rename to src/main/generated/assets/croptopia/models/item/tres_leche_cake.json diff --git a/src/main/resources/assets/croptopia/models/item/trifle.json b/src/main/generated/assets/croptopia/models/item/trifle.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/trifle.json rename to src/main/generated/assets/croptopia/models/item/trifle.json diff --git a/src/main/resources/assets/croptopia/models/item/tuna_sandwich.json b/src/main/generated/assets/croptopia/models/item/tuna_sandwich.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/tuna_sandwich.json rename to src/main/generated/assets/croptopia/models/item/tuna_sandwich.json diff --git a/src/main/resources/assets/croptopia/models/item/turmeric.json b/src/main/generated/assets/croptopia/models/item/turmeric.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/turmeric.json rename to src/main/generated/assets/croptopia/models/item/turmeric.json diff --git a/src/main/resources/assets/croptopia/models/item/turmeric_seed.json b/src/main/generated/assets/croptopia/models/item/turmeric_seed.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/turmeric_seed.json rename to src/main/generated/assets/croptopia/models/item/turmeric_seed.json diff --git a/src/main/resources/assets/croptopia/models/item/turnip.json b/src/main/generated/assets/croptopia/models/item/turnip.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/turnip.json rename to src/main/generated/assets/croptopia/models/item/turnip.json diff --git a/src/main/resources/assets/croptopia/models/item/turnip_seed.json b/src/main/generated/assets/croptopia/models/item/turnip_seed.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/turnip_seed.json rename to src/main/generated/assets/croptopia/models/item/turnip_seed.json diff --git a/src/main/resources/assets/croptopia/models/item/vanilla.json b/src/main/generated/assets/croptopia/models/item/vanilla.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/vanilla.json rename to src/main/generated/assets/croptopia/models/item/vanilla.json diff --git a/src/main/resources/assets/croptopia/models/item/vanilla_ice_cream.json b/src/main/generated/assets/croptopia/models/item/vanilla_ice_cream.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/vanilla_ice_cream.json rename to src/main/generated/assets/croptopia/models/item/vanilla_ice_cream.json diff --git a/src/main/resources/assets/croptopia/models/item/vanilla_seeds.json b/src/main/generated/assets/croptopia/models/item/vanilla_seeds.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/vanilla_seeds.json rename to src/main/generated/assets/croptopia/models/item/vanilla_seeds.json diff --git a/src/main/resources/assets/croptopia/models/item/veggie_salad.json b/src/main/generated/assets/croptopia/models/item/veggie_salad.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/veggie_salad.json rename to src/main/generated/assets/croptopia/models/item/veggie_salad.json diff --git a/src/main/resources/assets/croptopia/models/item/walnut.json b/src/main/generated/assets/croptopia/models/item/walnut.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/walnut.json rename to src/main/generated/assets/croptopia/models/item/walnut.json diff --git a/src/main/resources/assets/croptopia/models/item/walnut_sapling.json b/src/main/generated/assets/croptopia/models/item/walnut_sapling.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/walnut_sapling.json rename to src/main/generated/assets/croptopia/models/item/walnut_sapling.json diff --git a/src/main/resources/assets/croptopia/models/item/water_bottle.json b/src/main/generated/assets/croptopia/models/item/water_bottle.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/water_bottle.json rename to src/main/generated/assets/croptopia/models/item/water_bottle.json diff --git a/src/main/resources/assets/croptopia/models/item/whipping_cream.json b/src/main/generated/assets/croptopia/models/item/whipping_cream.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/whipping_cream.json rename to src/main/generated/assets/croptopia/models/item/whipping_cream.json diff --git a/src/main/resources/assets/croptopia/models/item/wine.json b/src/main/generated/assets/croptopia/models/item/wine.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/wine.json rename to src/main/generated/assets/croptopia/models/item/wine.json diff --git a/src/main/resources/assets/croptopia/models/item/yam.json b/src/main/generated/assets/croptopia/models/item/yam.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/yam.json rename to src/main/generated/assets/croptopia/models/item/yam.json diff --git a/src/main/resources/assets/croptopia/models/item/yam_jam.json b/src/main/generated/assets/croptopia/models/item/yam_jam.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/yam_jam.json rename to src/main/generated/assets/croptopia/models/item/yam_jam.json diff --git a/src/main/resources/assets/croptopia/models/item/yam_seed.json b/src/main/generated/assets/croptopia/models/item/yam_seed.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/yam_seed.json rename to src/main/generated/assets/croptopia/models/item/yam_seed.json diff --git a/src/main/resources/assets/croptopia/models/item/yoghurt.json b/src/main/generated/assets/croptopia/models/item/yoghurt.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/yoghurt.json rename to src/main/generated/assets/croptopia/models/item/yoghurt.json diff --git a/src/main/resources/assets/croptopia/models/item/zucchini.json b/src/main/generated/assets/croptopia/models/item/zucchini.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/zucchini.json rename to src/main/generated/assets/croptopia/models/item/zucchini.json diff --git a/src/main/resources/assets/croptopia/models/item/zucchini_seed.json b/src/main/generated/assets/croptopia/models/item/zucchini_seed.json similarity index 100% rename from src/main/resources/assets/croptopia/models/item/zucchini_seed.json rename to src/main/generated/assets/croptopia/models/item/zucchini_seed.json diff --git a/src/main/generated/assets/minecraft/items/apple.json b/src/main/generated/assets/minecraft/items/apple.json new file mode 100644 index 000000000..775daabba --- /dev/null +++ b/src/main/generated/assets/minecraft/items/apple.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "minecraft:item/apple" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/croptopia/models/item/dumpling.json b/src/main/generated/assets/minecraft/models/item/apple.json similarity index 61% rename from src/main/resources/assets/croptopia/models/item/dumpling.json rename to src/main/generated/assets/minecraft/models/item/apple.json index 4690032bd..c314b0587 100644 --- a/src/main/resources/assets/croptopia/models/item/dumpling.json +++ b/src/main/generated/assets/minecraft/models/item/apple.json @@ -1,6 +1,6 @@ { "parent": "minecraft:item/generated", "textures": { - "layer0": "croptopia:item/dumpling" + "layer0": "minecraft:item/apple" } } \ No newline at end of file diff --git a/src/main/generated/data/croptopia/advancement/recipes/food/baked_beans_from_blackbean.json b/src/main/generated/data/croptopia/advancement/recipes/food/baked_beans_from_blackbean.json index fcb422d32..f372a5b65 100644 --- a/src/main/generated/data/croptopia/advancement/recipes/food/baked_beans_from_blackbean.json +++ b/src/main/generated/data/croptopia/advancement/recipes/food/baked_beans_from_blackbean.json @@ -13,7 +13,7 @@ }, "has_the_recipe": { "conditions": { - "recipe": "minecraft:baked_beans_from_blackbean" + "recipe": "croptopia:baked_beans_from_blackbean" }, "trigger": "minecraft:recipe_unlocked" } @@ -26,7 +26,7 @@ ], "rewards": { "recipes": [ - "minecraft:baked_beans_from_blackbean" + "croptopia:baked_beans_from_blackbean" ] } } \ No newline at end of file diff --git a/src/main/generated/data/croptopia/advancement/recipes/food/baked_beans_from_smoking_blackbean.json b/src/main/generated/data/croptopia/advancement/recipes/food/baked_beans_from_smoking_blackbean.json index 61100b0cb..06c9c04db 100644 --- a/src/main/generated/data/croptopia/advancement/recipes/food/baked_beans_from_smoking_blackbean.json +++ b/src/main/generated/data/croptopia/advancement/recipes/food/baked_beans_from_smoking_blackbean.json @@ -13,7 +13,7 @@ }, "has_the_recipe": { "conditions": { - "recipe": "minecraft:baked_beans_from_smoking_blackbean" + "recipe": "croptopia:baked_beans_from_smoking_blackbean" }, "trigger": "minecraft:recipe_unlocked" } @@ -26,7 +26,7 @@ ], "rewards": { "recipes": [ - "minecraft:baked_beans_from_smoking_blackbean" + "croptopia:baked_beans_from_smoking_blackbean" ] } } \ No newline at end of file diff --git a/src/main/generated/data/croptopia/advancement/recipes/food/baked_sweet_potato_from_smoking_sweetpotato.json b/src/main/generated/data/croptopia/advancement/recipes/food/baked_sweet_potato_from_smoking_sweetpotato.json index 3873aaa9f..acaa2fbdc 100644 --- a/src/main/generated/data/croptopia/advancement/recipes/food/baked_sweet_potato_from_smoking_sweetpotato.json +++ b/src/main/generated/data/croptopia/advancement/recipes/food/baked_sweet_potato_from_smoking_sweetpotato.json @@ -13,7 +13,7 @@ }, "has_the_recipe": { "conditions": { - "recipe": "minecraft:baked_sweet_potato_from_smoking_sweetpotato" + "recipe": "croptopia:baked_sweet_potato_from_smoking_sweetpotato" }, "trigger": "minecraft:recipe_unlocked" } @@ -26,7 +26,7 @@ ], "rewards": { "recipes": [ - "minecraft:baked_sweet_potato_from_smoking_sweetpotato" + "croptopia:baked_sweet_potato_from_smoking_sweetpotato" ] } } \ No newline at end of file diff --git a/src/main/generated/data/croptopia/advancement/recipes/food/baked_sweet_potato_from_sweetpotato.json b/src/main/generated/data/croptopia/advancement/recipes/food/baked_sweet_potato_from_sweetpotato.json index 921511bd3..745550846 100644 --- a/src/main/generated/data/croptopia/advancement/recipes/food/baked_sweet_potato_from_sweetpotato.json +++ b/src/main/generated/data/croptopia/advancement/recipes/food/baked_sweet_potato_from_sweetpotato.json @@ -13,7 +13,7 @@ }, "has_the_recipe": { "conditions": { - "recipe": "minecraft:baked_sweet_potato_from_sweetpotato" + "recipe": "croptopia:baked_sweet_potato_from_sweetpotato" }, "trigger": "minecraft:recipe_unlocked" } @@ -26,7 +26,7 @@ ], "rewards": { "recipes": [ - "minecraft:baked_sweet_potato_from_sweetpotato" + "croptopia:baked_sweet_potato_from_sweetpotato" ] } } \ No newline at end of file diff --git a/src/main/generated/data/croptopia/advancement/recipes/food/baked_yam_from_smoking_yam.json b/src/main/generated/data/croptopia/advancement/recipes/food/baked_yam_from_smoking_yam.json index e93081f24..6b99c0191 100644 --- a/src/main/generated/data/croptopia/advancement/recipes/food/baked_yam_from_smoking_yam.json +++ b/src/main/generated/data/croptopia/advancement/recipes/food/baked_yam_from_smoking_yam.json @@ -3,7 +3,7 @@ "criteria": { "has_the_recipe": { "conditions": { - "recipe": "minecraft:baked_yam_from_smoking_yam" + "recipe": "croptopia:baked_yam_from_smoking_yam" }, "trigger": "minecraft:recipe_unlocked" }, @@ -26,7 +26,7 @@ ], "rewards": { "recipes": [ - "minecraft:baked_yam_from_smoking_yam" + "croptopia:baked_yam_from_smoking_yam" ] } } \ No newline at end of file diff --git a/src/main/generated/data/croptopia/advancement/recipes/food/baked_yam_from_yam.json b/src/main/generated/data/croptopia/advancement/recipes/food/baked_yam_from_yam.json index 46e3f322d..00389dbe1 100644 --- a/src/main/generated/data/croptopia/advancement/recipes/food/baked_yam_from_yam.json +++ b/src/main/generated/data/croptopia/advancement/recipes/food/baked_yam_from_yam.json @@ -3,7 +3,7 @@ "criteria": { "has_the_recipe": { "conditions": { - "recipe": "minecraft:baked_yam_from_yam" + "recipe": "croptopia:baked_yam_from_yam" }, "trigger": "minecraft:recipe_unlocked" }, @@ -26,7 +26,7 @@ ], "rewards": { "recipes": [ - "minecraft:baked_yam_from_yam" + "croptopia:baked_yam_from_yam" ] } } \ No newline at end of file diff --git a/src/main/generated/data/croptopia/advancement/recipes/food/caramel_from_smoking_sugar.json b/src/main/generated/data/croptopia/advancement/recipes/food/caramel_from_smoking_sugar.json index 02b17be25..d76c4135b 100644 --- a/src/main/generated/data/croptopia/advancement/recipes/food/caramel_from_smoking_sugar.json +++ b/src/main/generated/data/croptopia/advancement/recipes/food/caramel_from_smoking_sugar.json @@ -13,7 +13,7 @@ }, "has_the_recipe": { "conditions": { - "recipe": "minecraft:caramel_from_smoking_sugar" + "recipe": "croptopia:caramel_from_smoking_sugar" }, "trigger": "minecraft:recipe_unlocked" } @@ -26,7 +26,7 @@ ], "rewards": { "recipes": [ - "minecraft:caramel_from_smoking_sugar" + "croptopia:caramel_from_smoking_sugar" ] } } \ No newline at end of file diff --git a/src/main/generated/data/croptopia/advancement/recipes/food/caramel_from_sugar.json b/src/main/generated/data/croptopia/advancement/recipes/food/caramel_from_sugar.json index 2396dda1f..a8e345d73 100644 --- a/src/main/generated/data/croptopia/advancement/recipes/food/caramel_from_sugar.json +++ b/src/main/generated/data/croptopia/advancement/recipes/food/caramel_from_sugar.json @@ -13,7 +13,7 @@ }, "has_the_recipe": { "conditions": { - "recipe": "minecraft:caramel_from_sugar" + "recipe": "croptopia:caramel_from_sugar" }, "trigger": "minecraft:recipe_unlocked" } @@ -26,7 +26,7 @@ ], "rewards": { "recipes": [ - "minecraft:caramel_from_sugar" + "croptopia:caramel_from_sugar" ] } } \ No newline at end of file diff --git a/src/main/generated/data/croptopia/advancement/recipes/food/cooked_anchovy_from_anchovy.json b/src/main/generated/data/croptopia/advancement/recipes/food/cooked_anchovy_from_anchovy.json index 76b451f0f..02ebbf4fa 100644 --- a/src/main/generated/data/croptopia/advancement/recipes/food/cooked_anchovy_from_anchovy.json +++ b/src/main/generated/data/croptopia/advancement/recipes/food/cooked_anchovy_from_anchovy.json @@ -13,7 +13,7 @@ }, "has_the_recipe": { "conditions": { - "recipe": "minecraft:cooked_anchovy_from_anchovy" + "recipe": "croptopia:cooked_anchovy_from_anchovy" }, "trigger": "minecraft:recipe_unlocked" } @@ -26,7 +26,7 @@ ], "rewards": { "recipes": [ - "minecraft:cooked_anchovy_from_anchovy" + "croptopia:cooked_anchovy_from_anchovy" ] } } \ No newline at end of file diff --git a/src/main/generated/data/croptopia/advancement/recipes/food/cooked_anchovy_from_smoking_anchovy.json b/src/main/generated/data/croptopia/advancement/recipes/food/cooked_anchovy_from_smoking_anchovy.json index 15ebbe284..17c8078a5 100644 --- a/src/main/generated/data/croptopia/advancement/recipes/food/cooked_anchovy_from_smoking_anchovy.json +++ b/src/main/generated/data/croptopia/advancement/recipes/food/cooked_anchovy_from_smoking_anchovy.json @@ -13,7 +13,7 @@ }, "has_the_recipe": { "conditions": { - "recipe": "minecraft:cooked_anchovy_from_smoking_anchovy" + "recipe": "croptopia:cooked_anchovy_from_smoking_anchovy" }, "trigger": "minecraft:recipe_unlocked" } @@ -26,7 +26,7 @@ ], "rewards": { "recipes": [ - "minecraft:cooked_anchovy_from_smoking_anchovy" + "croptopia:cooked_anchovy_from_smoking_anchovy" ] } } \ No newline at end of file diff --git a/src/main/generated/data/croptopia/advancement/recipes/food/cooked_bacon_from_bacon.json b/src/main/generated/data/croptopia/advancement/recipes/food/cooked_bacon_from_bacon.json index a791db43b..e84c60b4f 100644 --- a/src/main/generated/data/croptopia/advancement/recipes/food/cooked_bacon_from_bacon.json +++ b/src/main/generated/data/croptopia/advancement/recipes/food/cooked_bacon_from_bacon.json @@ -13,7 +13,7 @@ }, "has_the_recipe": { "conditions": { - "recipe": "minecraft:cooked_bacon_from_bacon" + "recipe": "croptopia:cooked_bacon_from_bacon" }, "trigger": "minecraft:recipe_unlocked" } @@ -26,7 +26,7 @@ ], "rewards": { "recipes": [ - "minecraft:cooked_bacon_from_bacon" + "croptopia:cooked_bacon_from_bacon" ] } } \ No newline at end of file diff --git a/src/main/generated/data/croptopia/advancement/recipes/food/cooked_bacon_from_smoking_bacon.json b/src/main/generated/data/croptopia/advancement/recipes/food/cooked_bacon_from_smoking_bacon.json index 197412896..f85705bab 100644 --- a/src/main/generated/data/croptopia/advancement/recipes/food/cooked_bacon_from_smoking_bacon.json +++ b/src/main/generated/data/croptopia/advancement/recipes/food/cooked_bacon_from_smoking_bacon.json @@ -13,7 +13,7 @@ }, "has_the_recipe": { "conditions": { - "recipe": "minecraft:cooked_bacon_from_smoking_bacon" + "recipe": "croptopia:cooked_bacon_from_smoking_bacon" }, "trigger": "minecraft:recipe_unlocked" } @@ -26,7 +26,7 @@ ], "rewards": { "recipes": [ - "minecraft:cooked_bacon_from_smoking_bacon" + "croptopia:cooked_bacon_from_smoking_bacon" ] } } \ No newline at end of file diff --git a/src/main/generated/data/croptopia/advancement/recipes/food/cooked_calamari_from_calamari.json b/src/main/generated/data/croptopia/advancement/recipes/food/cooked_calamari_from_calamari.json index 1c0dee0e8..198200292 100644 --- a/src/main/generated/data/croptopia/advancement/recipes/food/cooked_calamari_from_calamari.json +++ b/src/main/generated/data/croptopia/advancement/recipes/food/cooked_calamari_from_calamari.json @@ -13,7 +13,7 @@ }, "has_the_recipe": { "conditions": { - "recipe": "minecraft:cooked_calamari_from_calamari" + "recipe": "croptopia:cooked_calamari_from_calamari" }, "trigger": "minecraft:recipe_unlocked" } @@ -26,7 +26,7 @@ ], "rewards": { "recipes": [ - "minecraft:cooked_calamari_from_calamari" + "croptopia:cooked_calamari_from_calamari" ] } } \ No newline at end of file diff --git a/src/main/generated/data/croptopia/advancement/recipes/food/cooked_calamari_from_glowing_calamari.json b/src/main/generated/data/croptopia/advancement/recipes/food/cooked_calamari_from_glowing_calamari.json index c795f8a91..232dd009f 100644 --- a/src/main/generated/data/croptopia/advancement/recipes/food/cooked_calamari_from_glowing_calamari.json +++ b/src/main/generated/data/croptopia/advancement/recipes/food/cooked_calamari_from_glowing_calamari.json @@ -13,7 +13,7 @@ }, "has_the_recipe": { "conditions": { - "recipe": "minecraft:cooked_calamari_from_glowing_calamari" + "recipe": "croptopia:cooked_calamari_from_glowing_calamari" }, "trigger": "minecraft:recipe_unlocked" } @@ -26,7 +26,7 @@ ], "rewards": { "recipes": [ - "minecraft:cooked_calamari_from_glowing_calamari" + "croptopia:cooked_calamari_from_glowing_calamari" ] } } \ No newline at end of file diff --git a/src/main/generated/data/croptopia/advancement/recipes/food/cooked_calamari_from_smoking_calamari.json b/src/main/generated/data/croptopia/advancement/recipes/food/cooked_calamari_from_smoking_calamari.json index 6eca9b4b1..ebd6ddb27 100644 --- a/src/main/generated/data/croptopia/advancement/recipes/food/cooked_calamari_from_smoking_calamari.json +++ b/src/main/generated/data/croptopia/advancement/recipes/food/cooked_calamari_from_smoking_calamari.json @@ -13,7 +13,7 @@ }, "has_the_recipe": { "conditions": { - "recipe": "minecraft:cooked_calamari_from_smoking_calamari" + "recipe": "croptopia:cooked_calamari_from_smoking_calamari" }, "trigger": "minecraft:recipe_unlocked" } @@ -26,7 +26,7 @@ ], "rewards": { "recipes": [ - "minecraft:cooked_calamari_from_smoking_calamari" + "croptopia:cooked_calamari_from_smoking_calamari" ] } } \ No newline at end of file diff --git a/src/main/generated/data/croptopia/advancement/recipes/food/cooked_calamari_from_smoking_glowing_calamari.json b/src/main/generated/data/croptopia/advancement/recipes/food/cooked_calamari_from_smoking_glowing_calamari.json index b0d6ee232..c62f20900 100644 --- a/src/main/generated/data/croptopia/advancement/recipes/food/cooked_calamari_from_smoking_glowing_calamari.json +++ b/src/main/generated/data/croptopia/advancement/recipes/food/cooked_calamari_from_smoking_glowing_calamari.json @@ -13,7 +13,7 @@ }, "has_the_recipe": { "conditions": { - "recipe": "minecraft:cooked_calamari_from_smoking_glowing_calamari" + "recipe": "croptopia:cooked_calamari_from_smoking_glowing_calamari" }, "trigger": "minecraft:recipe_unlocked" } @@ -26,7 +26,7 @@ ], "rewards": { "recipes": [ - "minecraft:cooked_calamari_from_smoking_glowing_calamari" + "croptopia:cooked_calamari_from_smoking_glowing_calamari" ] } } \ No newline at end of file diff --git a/src/main/generated/data/croptopia/advancement/recipes/food/cooked_shrimp_from_shrimp.json b/src/main/generated/data/croptopia/advancement/recipes/food/cooked_shrimp_from_shrimp.json index 3fed9a938..e7349012d 100644 --- a/src/main/generated/data/croptopia/advancement/recipes/food/cooked_shrimp_from_shrimp.json +++ b/src/main/generated/data/croptopia/advancement/recipes/food/cooked_shrimp_from_shrimp.json @@ -13,7 +13,7 @@ }, "has_the_recipe": { "conditions": { - "recipe": "minecraft:cooked_shrimp_from_shrimp" + "recipe": "croptopia:cooked_shrimp_from_shrimp" }, "trigger": "minecraft:recipe_unlocked" } @@ -26,7 +26,7 @@ ], "rewards": { "recipes": [ - "minecraft:cooked_shrimp_from_shrimp" + "croptopia:cooked_shrimp_from_shrimp" ] } } \ No newline at end of file diff --git a/src/main/generated/data/croptopia/advancement/recipes/food/cooked_shrimp_from_smoking_shrimp.json b/src/main/generated/data/croptopia/advancement/recipes/food/cooked_shrimp_from_smoking_shrimp.json index 307f06220..26c0c951c 100644 --- a/src/main/generated/data/croptopia/advancement/recipes/food/cooked_shrimp_from_smoking_shrimp.json +++ b/src/main/generated/data/croptopia/advancement/recipes/food/cooked_shrimp_from_smoking_shrimp.json @@ -13,7 +13,7 @@ }, "has_the_recipe": { "conditions": { - "recipe": "minecraft:cooked_shrimp_from_smoking_shrimp" + "recipe": "croptopia:cooked_shrimp_from_smoking_shrimp" }, "trigger": "minecraft:recipe_unlocked" } @@ -26,7 +26,7 @@ ], "rewards": { "recipes": [ - "minecraft:cooked_shrimp_from_smoking_shrimp" + "croptopia:cooked_shrimp_from_smoking_shrimp" ] } } \ No newline at end of file diff --git a/src/main/generated/data/croptopia/advancement/recipes/food/cooked_tuna_from_smoking_tuna.json b/src/main/generated/data/croptopia/advancement/recipes/food/cooked_tuna_from_smoking_tuna.json index 1eb06fe17..f1dabb203 100644 --- a/src/main/generated/data/croptopia/advancement/recipes/food/cooked_tuna_from_smoking_tuna.json +++ b/src/main/generated/data/croptopia/advancement/recipes/food/cooked_tuna_from_smoking_tuna.json @@ -3,7 +3,7 @@ "criteria": { "has_the_recipe": { "conditions": { - "recipe": "minecraft:cooked_tuna_from_smoking_tuna" + "recipe": "croptopia:cooked_tuna_from_smoking_tuna" }, "trigger": "minecraft:recipe_unlocked" }, @@ -26,7 +26,7 @@ ], "rewards": { "recipes": [ - "minecraft:cooked_tuna_from_smoking_tuna" + "croptopia:cooked_tuna_from_smoking_tuna" ] } } \ No newline at end of file diff --git a/src/main/generated/data/croptopia/advancement/recipes/food/cooked_tuna_from_tuna.json b/src/main/generated/data/croptopia/advancement/recipes/food/cooked_tuna_from_tuna.json index 7ddff3fe4..46cfee1f9 100644 --- a/src/main/generated/data/croptopia/advancement/recipes/food/cooked_tuna_from_tuna.json +++ b/src/main/generated/data/croptopia/advancement/recipes/food/cooked_tuna_from_tuna.json @@ -3,7 +3,7 @@ "criteria": { "has_the_recipe": { "conditions": { - "recipe": "minecraft:cooked_tuna_from_tuna" + "recipe": "croptopia:cooked_tuna_from_tuna" }, "trigger": "minecraft:recipe_unlocked" }, @@ -26,7 +26,7 @@ ], "rewards": { "recipes": [ - "minecraft:cooked_tuna_from_tuna" + "croptopia:cooked_tuna_from_tuna" ] } } \ No newline at end of file diff --git a/src/main/generated/data/croptopia/advancement/recipes/food/molasses_from_smoking_sugar_cane.json b/src/main/generated/data/croptopia/advancement/recipes/food/molasses_from_smoking_sugar_cane.json index 7a15f7794..3b6e56c5f 100644 --- a/src/main/generated/data/croptopia/advancement/recipes/food/molasses_from_smoking_sugar_cane.json +++ b/src/main/generated/data/croptopia/advancement/recipes/food/molasses_from_smoking_sugar_cane.json @@ -13,7 +13,7 @@ }, "has_the_recipe": { "conditions": { - "recipe": "minecraft:molasses_from_smoking_sugar_cane" + "recipe": "croptopia:molasses_from_smoking_sugar_cane" }, "trigger": "minecraft:recipe_unlocked" } @@ -26,7 +26,7 @@ ], "rewards": { "recipes": [ - "minecraft:molasses_from_smoking_sugar_cane" + "croptopia:molasses_from_smoking_sugar_cane" ] } } \ No newline at end of file diff --git a/src/main/generated/data/croptopia/advancement/recipes/food/molasses_from_sugar_cane.json b/src/main/generated/data/croptopia/advancement/recipes/food/molasses_from_sugar_cane.json index 0aecd4d32..4a5d17f80 100644 --- a/src/main/generated/data/croptopia/advancement/recipes/food/molasses_from_sugar_cane.json +++ b/src/main/generated/data/croptopia/advancement/recipes/food/molasses_from_sugar_cane.json @@ -13,7 +13,7 @@ }, "has_the_recipe": { "conditions": { - "recipe": "minecraft:molasses_from_sugar_cane" + "recipe": "croptopia:molasses_from_sugar_cane" }, "trigger": "minecraft:recipe_unlocked" } @@ -26,7 +26,7 @@ ], "rewards": { "recipes": [ - "minecraft:molasses_from_sugar_cane" + "croptopia:molasses_from_sugar_cane" ] } } \ No newline at end of file diff --git a/src/main/generated/data/croptopia/advancement/recipes/food/popcorn_from_corn.json b/src/main/generated/data/croptopia/advancement/recipes/food/popcorn_from_corn.json index 7964ca440..aa9cfb2e9 100644 --- a/src/main/generated/data/croptopia/advancement/recipes/food/popcorn_from_corn.json +++ b/src/main/generated/data/croptopia/advancement/recipes/food/popcorn_from_corn.json @@ -13,7 +13,7 @@ }, "has_the_recipe": { "conditions": { - "recipe": "minecraft:popcorn_from_corn" + "recipe": "croptopia:popcorn_from_corn" }, "trigger": "minecraft:recipe_unlocked" } @@ -26,7 +26,7 @@ ], "rewards": { "recipes": [ - "minecraft:popcorn_from_corn" + "croptopia:popcorn_from_corn" ] } } \ No newline at end of file diff --git a/src/main/generated/data/croptopia/advancement/recipes/food/popcorn_from_smoking_corn.json b/src/main/generated/data/croptopia/advancement/recipes/food/popcorn_from_smoking_corn.json index f0aaf303f..8bf81a815 100644 --- a/src/main/generated/data/croptopia/advancement/recipes/food/popcorn_from_smoking_corn.json +++ b/src/main/generated/data/croptopia/advancement/recipes/food/popcorn_from_smoking_corn.json @@ -13,7 +13,7 @@ }, "has_the_recipe": { "conditions": { - "recipe": "minecraft:popcorn_from_smoking_corn" + "recipe": "croptopia:popcorn_from_smoking_corn" }, "trigger": "minecraft:recipe_unlocked" } @@ -26,7 +26,7 @@ ], "rewards": { "recipes": [ - "minecraft:popcorn_from_smoking_corn" + "croptopia:popcorn_from_smoking_corn" ] } } \ No newline at end of file diff --git a/src/main/generated/data/croptopia/advancement/recipes/food/raisins_from_grape.json b/src/main/generated/data/croptopia/advancement/recipes/food/raisins_from_grape.json index 20e8f93a2..ce253ba16 100644 --- a/src/main/generated/data/croptopia/advancement/recipes/food/raisins_from_grape.json +++ b/src/main/generated/data/croptopia/advancement/recipes/food/raisins_from_grape.json @@ -13,7 +13,7 @@ }, "has_the_recipe": { "conditions": { - "recipe": "minecraft:raisins_from_grape" + "recipe": "croptopia:raisins_from_grape" }, "trigger": "minecraft:recipe_unlocked" } @@ -26,7 +26,7 @@ ], "rewards": { "recipes": [ - "minecraft:raisins_from_grape" + "croptopia:raisins_from_grape" ] } } \ No newline at end of file diff --git a/src/main/generated/data/croptopia/advancement/recipes/food/raisins_from_smoking_grape.json b/src/main/generated/data/croptopia/advancement/recipes/food/raisins_from_smoking_grape.json index bc9d390d6..2b43b9053 100644 --- a/src/main/generated/data/croptopia/advancement/recipes/food/raisins_from_smoking_grape.json +++ b/src/main/generated/data/croptopia/advancement/recipes/food/raisins_from_smoking_grape.json @@ -13,7 +13,7 @@ }, "has_the_recipe": { "conditions": { - "recipe": "minecraft:raisins_from_smoking_grape" + "recipe": "croptopia:raisins_from_smoking_grape" }, "trigger": "minecraft:recipe_unlocked" } @@ -26,7 +26,7 @@ ], "rewards": { "recipes": [ - "minecraft:raisins_from_smoking_grape" + "croptopia:raisins_from_smoking_grape" ] } } \ No newline at end of file diff --git a/src/main/generated/data/croptopia/advancement/recipes/food/salt_from_smoking_water_bottle.json b/src/main/generated/data/croptopia/advancement/recipes/food/salt_from_smoking_water_bottle.json index 6ad3e05a3..388dcaaf8 100644 --- a/src/main/generated/data/croptopia/advancement/recipes/food/salt_from_smoking_water_bottle.json +++ b/src/main/generated/data/croptopia/advancement/recipes/food/salt_from_smoking_water_bottle.json @@ -3,7 +3,7 @@ "criteria": { "has_the_recipe": { "conditions": { - "recipe": "minecraft:salt_from_smoking_water_bottle" + "recipe": "croptopia:salt_from_smoking_water_bottle" }, "trigger": "minecraft:recipe_unlocked" }, @@ -26,7 +26,7 @@ ], "rewards": { "recipes": [ - "minecraft:salt_from_smoking_water_bottle" + "croptopia:salt_from_smoking_water_bottle" ] } } \ No newline at end of file diff --git a/src/main/generated/data/croptopia/advancement/recipes/food/salt_from_water_bottle.json b/src/main/generated/data/croptopia/advancement/recipes/food/salt_from_water_bottle.json index 63ecbeefb..7bd810d0c 100644 --- a/src/main/generated/data/croptopia/advancement/recipes/food/salt_from_water_bottle.json +++ b/src/main/generated/data/croptopia/advancement/recipes/food/salt_from_water_bottle.json @@ -3,7 +3,7 @@ "criteria": { "has_the_recipe": { "conditions": { - "recipe": "minecraft:salt_from_water_bottle" + "recipe": "croptopia:salt_from_water_bottle" }, "trigger": "minecraft:recipe_unlocked" }, @@ -26,7 +26,7 @@ ], "rewards": { "recipes": [ - "minecraft:salt_from_water_bottle" + "croptopia:salt_from_water_bottle" ] } } \ No newline at end of file diff --git a/src/main/generated/data/croptopia/advancement/recipes/food/toast_from_bread.json b/src/main/generated/data/croptopia/advancement/recipes/food/toast_from_bread.json index 1a49188e7..7a773674d 100644 --- a/src/main/generated/data/croptopia/advancement/recipes/food/toast_from_bread.json +++ b/src/main/generated/data/croptopia/advancement/recipes/food/toast_from_bread.json @@ -13,7 +13,7 @@ }, "has_the_recipe": { "conditions": { - "recipe": "minecraft:toast_from_bread" + "recipe": "croptopia:toast_from_bread" }, "trigger": "minecraft:recipe_unlocked" } @@ -26,7 +26,7 @@ ], "rewards": { "recipes": [ - "minecraft:toast_from_bread" + "croptopia:toast_from_bread" ] } } \ No newline at end of file diff --git a/src/main/generated/data/croptopia/advancement/recipes/food/toast_from_smoking_bread.json b/src/main/generated/data/croptopia/advancement/recipes/food/toast_from_smoking_bread.json index 94928899a..9a1855b8a 100644 --- a/src/main/generated/data/croptopia/advancement/recipes/food/toast_from_smoking_bread.json +++ b/src/main/generated/data/croptopia/advancement/recipes/food/toast_from_smoking_bread.json @@ -13,7 +13,7 @@ }, "has_the_recipe": { "conditions": { - "recipe": "minecraft:toast_from_smoking_bread" + "recipe": "croptopia:toast_from_smoking_bread" }, "trigger": "minecraft:recipe_unlocked" } @@ -26,7 +26,7 @@ ], "rewards": { "recipes": [ - "minecraft:toast_from_smoking_bread" + "croptopia:toast_from_smoking_bread" ] } } \ No newline at end of file diff --git a/src/main/generated/data/croptopia/advancement/recipes/misc/dead_bush.json b/src/main/generated/data/croptopia/advancement/recipes/misc/dead_bush.json index 864c7210d..088a1d399 100644 --- a/src/main/generated/data/croptopia/advancement/recipes/misc/dead_bush.json +++ b/src/main/generated/data/croptopia/advancement/recipes/misc/dead_bush.json @@ -13,7 +13,7 @@ }, "has_the_recipe": { "conditions": { - "recipe": "minecraft:dead_bush" + "recipe": "croptopia:dead_bush" }, "trigger": "minecraft:recipe_unlocked" } @@ -26,7 +26,7 @@ ], "rewards": { "recipes": [ - "minecraft:dead_bush" + "croptopia:dead_bush" ] } } \ No newline at end of file diff --git a/src/main/generated/data/croptopia/advancement/recipes/misc/orange_dye.json b/src/main/generated/data/croptopia/advancement/recipes/misc/orange_dye.json index 2e8f2e7ce..68ba3ce76 100644 --- a/src/main/generated/data/croptopia/advancement/recipes/misc/orange_dye.json +++ b/src/main/generated/data/croptopia/advancement/recipes/misc/orange_dye.json @@ -3,7 +3,7 @@ "criteria": { "has_the_recipe": { "conditions": { - "recipe": "minecraft:orange_dye" + "recipe": "croptopia:orange_dye" }, "trigger": "minecraft:recipe_unlocked" }, @@ -26,7 +26,7 @@ ], "rewards": { "recipes": [ - "minecraft:orange_dye" + "croptopia:orange_dye" ] } } \ No newline at end of file diff --git a/src/main/generated/data/croptopia/advancement/recipes/misc/purple_dye.json b/src/main/generated/data/croptopia/advancement/recipes/misc/purple_dye.json index 932a5dd0d..3bda2bc46 100644 --- a/src/main/generated/data/croptopia/advancement/recipes/misc/purple_dye.json +++ b/src/main/generated/data/croptopia/advancement/recipes/misc/purple_dye.json @@ -13,7 +13,7 @@ }, "has_the_recipe": { "conditions": { - "recipe": "minecraft:purple_dye" + "recipe": "croptopia:purple_dye" }, "trigger": "minecraft:recipe_unlocked" } @@ -26,7 +26,7 @@ ], "rewards": { "recipes": [ - "minecraft:purple_dye" + "croptopia:purple_dye" ] } } \ No newline at end of file diff --git a/src/main/generated/data/croptopia/recipe/almond_sapling.json b/src/main/generated/data/croptopia/recipe/almond_sapling.json index 5d7ff769f..26b2cc2d4 100644 --- a/src/main/generated/data/croptopia/recipe/almond_sapling.json +++ b/src/main/generated/data/croptopia/recipe/almond_sapling.json @@ -2,15 +2,9 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:almonds" - }, - { - "tag": "${dependent}:almonds" - }, - { - "tag": "minecraft:saplings" - } + "#${dependent}:almonds", + "#${dependent}:almonds", + "#minecraft:saplings" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/anchovy_pizza.json b/src/main/generated/data/croptopia/recipe/anchovy_pizza.json index fa60c2c91..581a91da2 100644 --- a/src/main/generated/data/croptopia/recipe/anchovy_pizza.json +++ b/src/main/generated/data/croptopia/recipe/anchovy_pizza.json @@ -2,21 +2,11 @@ "type": "minecraft:crafting_shaped", "category": "misc", "key": { - "1": { - "tag": "${dependent}:tomatoes" - }, - "2": { - "tag": "${dependent}:anchovies" - }, - "3": { - "tag": "${dependent}:cheeses" - }, - "4": { - "tag": "${dependent}:doughs" - }, - "7": { - "item": "croptopia:frying_pan" - } + "1": "#${dependent}:tomatoes", + "2": "#${dependent}:anchovies", + "3": "#${dependent}:cheeses", + "4": "#${dependent}:doughs", + "7": "croptopia:frying_pan" }, "pattern": [ "123", diff --git a/src/main/generated/data/croptopia/recipe/apple_juice.json b/src/main/generated/data/croptopia/recipe/apple_juice.json index 82403ecdb..958debefb 100644 --- a/src/main/generated/data/croptopia/recipe/apple_juice.json +++ b/src/main/generated/data/croptopia/recipe/apple_juice.json @@ -2,15 +2,9 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:apples" - }, - { - "item": "croptopia:food_press" - }, - { - "item": "minecraft:glass_bottle" - } + "#${dependent}:apples", + "croptopia:food_press", + "minecraft:glass_bottle" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/apple_pie.json b/src/main/generated/data/croptopia/recipe/apple_pie.json index 7ee303e64..3efc0ca3f 100644 --- a/src/main/generated/data/croptopia/recipe/apple_pie.json +++ b/src/main/generated/data/croptopia/recipe/apple_pie.json @@ -2,24 +2,12 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:apples" - }, - { - "item": "minecraft:sugar" - }, - { - "item": "minecraft:egg" - }, - { - "tag": "${dependent}:flour" - }, - { - "tag": "${dependent}:doughs" - }, - { - "item": "croptopia:frying_pan" - } + "#${dependent}:apples", + "minecraft:sugar", + "minecraft:egg", + "#${dependent}:flour", + "#${dependent}:doughs", + "croptopia:frying_pan" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/apple_sapling.json b/src/main/generated/data/croptopia/recipe/apple_sapling.json index 6d93936fe..ad9a4ef37 100644 --- a/src/main/generated/data/croptopia/recipe/apple_sapling.json +++ b/src/main/generated/data/croptopia/recipe/apple_sapling.json @@ -2,15 +2,9 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:apples" - }, - { - "tag": "${dependent}:apples" - }, - { - "tag": "minecraft:saplings" - } + "#${dependent}:apples", + "#${dependent}:apples", + "#minecraft:saplings" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/apricot_jam.json b/src/main/generated/data/croptopia/recipe/apricot_jam.json index 4b1b980a1..a575088fb 100644 --- a/src/main/generated/data/croptopia/recipe/apricot_jam.json +++ b/src/main/generated/data/croptopia/recipe/apricot_jam.json @@ -2,15 +2,9 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:apricots" - }, - { - "item": "minecraft:sugar" - }, - { - "item": "croptopia:cooking_pot" - } + "#${dependent}:apricots", + "minecraft:sugar", + "croptopia:cooking_pot" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/apricot_sapling.json b/src/main/generated/data/croptopia/recipe/apricot_sapling.json index 4703804ca..b6cafb394 100644 --- a/src/main/generated/data/croptopia/recipe/apricot_sapling.json +++ b/src/main/generated/data/croptopia/recipe/apricot_sapling.json @@ -2,15 +2,9 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:apricots" - }, - { - "tag": "${dependent}:apricots" - }, - { - "tag": "minecraft:saplings" - } + "#${dependent}:apricots", + "#${dependent}:apricots", + "#minecraft:saplings" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/artichoke_seed.json b/src/main/generated/data/croptopia/recipe/artichoke_seed.json index e9b4e83e7..38516c99e 100644 --- a/src/main/generated/data/croptopia/recipe/artichoke_seed.json +++ b/src/main/generated/data/croptopia/recipe/artichoke_seed.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:artichokes" - } + "#${dependent}:artichokes" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/asparagus_seed.json b/src/main/generated/data/croptopia/recipe/asparagus_seed.json index f44f99380..3b2a0607a 100644 --- a/src/main/generated/data/croptopia/recipe/asparagus_seed.json +++ b/src/main/generated/data/croptopia/recipe/asparagus_seed.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:asparagus" - } + "#${dependent}:asparagus" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/avocado_sapling.json b/src/main/generated/data/croptopia/recipe/avocado_sapling.json index 17c2c428b..5a43fcdd7 100644 --- a/src/main/generated/data/croptopia/recipe/avocado_sapling.json +++ b/src/main/generated/data/croptopia/recipe/avocado_sapling.json @@ -2,15 +2,9 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:avocados" - }, - { - "tag": "${dependent}:avocados" - }, - { - "tag": "minecraft:saplings" - } + "#${dependent}:avocados", + "#${dependent}:avocados", + "#minecraft:saplings" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/baked_beans_from_blackbean.json b/src/main/generated/data/croptopia/recipe/baked_beans_from_blackbean.json index 289ec73fc..afcc03f8f 100644 --- a/src/main/generated/data/croptopia/recipe/baked_beans_from_blackbean.json +++ b/src/main/generated/data/croptopia/recipe/baked_beans_from_blackbean.json @@ -3,9 +3,7 @@ "category": "food", "cookingtime": 200, "experience": 0.2, - "ingredient": { - "item": "croptopia:blackbean" - }, + "ingredient": "croptopia:blackbean", "result": { "id": "croptopia:baked_beans" } diff --git a/src/main/generated/data/croptopia/recipe/baked_beans_from_smoking_blackbean.json b/src/main/generated/data/croptopia/recipe/baked_beans_from_smoking_blackbean.json index 97002e6f7..8e27178ea 100644 --- a/src/main/generated/data/croptopia/recipe/baked_beans_from_smoking_blackbean.json +++ b/src/main/generated/data/croptopia/recipe/baked_beans_from_smoking_blackbean.json @@ -3,9 +3,7 @@ "category": "food", "cookingtime": 100, "experience": 0.2, - "ingredient": { - "item": "croptopia:blackbean" - }, + "ingredient": "croptopia:blackbean", "result": { "id": "croptopia:baked_beans" } diff --git a/src/main/generated/data/croptopia/recipe/baked_crepes.json b/src/main/generated/data/croptopia/recipe/baked_crepes.json index abf26cf99..7541824ed 100644 --- a/src/main/generated/data/croptopia/recipe/baked_crepes.json +++ b/src/main/generated/data/croptopia/recipe/baked_crepes.json @@ -2,24 +2,12 @@ "type": "minecraft:crafting_shaped", "category": "misc", "key": { - "1": { - "item": "minecraft:egg" - }, - "2": { - "tag": "${dependent}:flour" - }, - "3": { - "tag": "${dependent}:milks" - }, - "5": { - "tag": "${dependent}:spinach" - }, - "6": { - "tag": "${dependent}:cheeses" - }, - "7": { - "item": "croptopia:frying_pan" - } + "1": "minecraft:egg", + "2": "#${dependent}:flour", + "3": "#${dependent}:milks", + "5": "#${dependent}:spinach", + "6": "#${dependent}:cheeses", + "7": "croptopia:frying_pan" }, "pattern": [ "121", diff --git a/src/main/generated/data/croptopia/recipe/baked_sweet_potato_from_smoking_sweetpotato.json b/src/main/generated/data/croptopia/recipe/baked_sweet_potato_from_smoking_sweetpotato.json index 4d3ecb519..10d641656 100644 --- a/src/main/generated/data/croptopia/recipe/baked_sweet_potato_from_smoking_sweetpotato.json +++ b/src/main/generated/data/croptopia/recipe/baked_sweet_potato_from_smoking_sweetpotato.json @@ -3,9 +3,7 @@ "category": "food", "cookingtime": 100, "experience": 0.2, - "ingredient": { - "item": "croptopia:sweetpotato" - }, + "ingredient": "croptopia:sweetpotato", "result": { "id": "croptopia:baked_sweet_potato" } diff --git a/src/main/generated/data/croptopia/recipe/baked_sweet_potato_from_sweetpotato.json b/src/main/generated/data/croptopia/recipe/baked_sweet_potato_from_sweetpotato.json index 5cad790d5..5db76e7d4 100644 --- a/src/main/generated/data/croptopia/recipe/baked_sweet_potato_from_sweetpotato.json +++ b/src/main/generated/data/croptopia/recipe/baked_sweet_potato_from_sweetpotato.json @@ -3,9 +3,7 @@ "category": "food", "cookingtime": 200, "experience": 0.2, - "ingredient": { - "item": "croptopia:sweetpotato" - }, + "ingredient": "croptopia:sweetpotato", "result": { "id": "croptopia:baked_sweet_potato" } diff --git a/src/main/generated/data/croptopia/recipe/baked_yam_from_smoking_yam.json b/src/main/generated/data/croptopia/recipe/baked_yam_from_smoking_yam.json index f4ae8b316..41682d250 100644 --- a/src/main/generated/data/croptopia/recipe/baked_yam_from_smoking_yam.json +++ b/src/main/generated/data/croptopia/recipe/baked_yam_from_smoking_yam.json @@ -3,9 +3,7 @@ "category": "food", "cookingtime": 100, "experience": 0.2, - "ingredient": { - "item": "croptopia:yam" - }, + "ingredient": "croptopia:yam", "result": { "id": "croptopia:baked_yam" } diff --git a/src/main/generated/data/croptopia/recipe/baked_yam_from_yam.json b/src/main/generated/data/croptopia/recipe/baked_yam_from_yam.json index 641605a65..ba0e314ce 100644 --- a/src/main/generated/data/croptopia/recipe/baked_yam_from_yam.json +++ b/src/main/generated/data/croptopia/recipe/baked_yam_from_yam.json @@ -3,9 +3,7 @@ "category": "food", "cookingtime": 200, "experience": 0.2, - "ingredient": { - "item": "croptopia:yam" - }, + "ingredient": "croptopia:yam", "result": { "id": "croptopia:baked_yam" } diff --git a/src/main/generated/data/croptopia/recipe/banana_sapling.json b/src/main/generated/data/croptopia/recipe/banana_sapling.json index 5742dd960..c8947227c 100644 --- a/src/main/generated/data/croptopia/recipe/banana_sapling.json +++ b/src/main/generated/data/croptopia/recipe/banana_sapling.json @@ -2,15 +2,9 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:bananas" - }, - { - "tag": "${dependent}:bananas" - }, - { - "tag": "minecraft:saplings" - } + "#${dependent}:bananas", + "#${dependent}:bananas", + "#minecraft:saplings" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/banana_smoothie.json b/src/main/generated/data/croptopia/recipe/banana_smoothie.json index cb1beafde..ea7d7c448 100644 --- a/src/main/generated/data/croptopia/recipe/banana_smoothie.json +++ b/src/main/generated/data/croptopia/recipe/banana_smoothie.json @@ -2,18 +2,10 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:bananas" - }, - { - "item": "minecraft:ice" - }, - { - "tag": "${dependent}:milks" - }, - { - "item": "minecraft:glass_bottle" - } + "#${dependent}:bananas", + "minecraft:ice", + "#${dependent}:milks", + "minecraft:glass_bottle" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/barley_seed.json b/src/main/generated/data/croptopia/recipe/barley_seed.json index 2e85efffc..b0ef9bb68 100644 --- a/src/main/generated/data/croptopia/recipe/barley_seed.json +++ b/src/main/generated/data/croptopia/recipe/barley_seed.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:barley" - } + "#${dependent}:barley" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/basil_seed.json b/src/main/generated/data/croptopia/recipe/basil_seed.json index 334a88976..a2aeb195d 100644 --- a/src/main/generated/data/croptopia/recipe/basil_seed.json +++ b/src/main/generated/data/croptopia/recipe/basil_seed.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:basil" - } + "#${dependent}:basil" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/beef_jerky.json b/src/main/generated/data/croptopia/recipe/beef_jerky.json index 4cc2c9da6..7d6f2e2de 100644 --- a/src/main/generated/data/croptopia/recipe/beef_jerky.json +++ b/src/main/generated/data/croptopia/recipe/beef_jerky.json @@ -2,12 +2,8 @@ "type": "minecraft:crafting_shaped", "category": "misc", "key": { - "1": { - "item": "minecraft:beef" - }, - "2": { - "tag": "${dependent}:salts" - } + "1": "minecraft:beef", + "2": "#${dependent}:salts" }, "pattern": [ "111", diff --git a/src/main/generated/data/croptopia/recipe/beetroot_salad.json b/src/main/generated/data/croptopia/recipe/beetroot_salad.json index c199970ef..3ce20b096 100644 --- a/src/main/generated/data/croptopia/recipe/beetroot_salad.json +++ b/src/main/generated/data/croptopia/recipe/beetroot_salad.json @@ -2,21 +2,11 @@ "type": "minecraft:crafting_shaped", "category": "misc", "key": { - "1": { - "item": "minecraft:beetroot" - }, - "4": { - "tag": "${dependent}:cheeses" - }, - "5": { - "tag": "${dependent}:lemons" - }, - "6": { - "item": "croptopia:cooking_pot" - }, - "7": { - "tag": "${dependent}:lettuce" - } + "1": "minecraft:beetroot", + "4": "#${dependent}:cheeses", + "5": "#${dependent}:lemons", + "6": "croptopia:cooking_pot", + "7": "#${dependent}:lettuce" }, "pattern": [ "111", diff --git a/src/main/generated/data/croptopia/recipe/bellpepper_seed.json b/src/main/generated/data/croptopia/recipe/bellpepper_seed.json index f5d897ec2..bb51e11b6 100644 --- a/src/main/generated/data/croptopia/recipe/bellpepper_seed.json +++ b/src/main/generated/data/croptopia/recipe/bellpepper_seed.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:bellpeppers" - } + "#${dependent}:bellpeppers" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/blackbean_seed.json b/src/main/generated/data/croptopia/recipe/blackbean_seed.json index b2f9b0d68..0f2182154 100644 --- a/src/main/generated/data/croptopia/recipe/blackbean_seed.json +++ b/src/main/generated/data/croptopia/recipe/blackbean_seed.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:blackbeans" - } + "#${dependent}:blackbeans" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/blackberry_jam.json b/src/main/generated/data/croptopia/recipe/blackberry_jam.json index 00e8d0461..ddf0921f4 100644 --- a/src/main/generated/data/croptopia/recipe/blackberry_jam.json +++ b/src/main/generated/data/croptopia/recipe/blackberry_jam.json @@ -2,15 +2,9 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:blackberries" - }, - { - "item": "minecraft:sugar" - }, - { - "item": "croptopia:cooking_pot" - } + "#${dependent}:blackberries", + "minecraft:sugar", + "croptopia:cooking_pot" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/blackberry_seed.json b/src/main/generated/data/croptopia/recipe/blackberry_seed.json index a3e782820..3dc940b6f 100644 --- a/src/main/generated/data/croptopia/recipe/blackberry_seed.json +++ b/src/main/generated/data/croptopia/recipe/blackberry_seed.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:blackberries" - } + "#${dependent}:blackberries" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/blueberry_jam.json b/src/main/generated/data/croptopia/recipe/blueberry_jam.json index a20fa0c7f..295fa8ddd 100644 --- a/src/main/generated/data/croptopia/recipe/blueberry_jam.json +++ b/src/main/generated/data/croptopia/recipe/blueberry_jam.json @@ -2,15 +2,9 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:blueberries" - }, - { - "item": "minecraft:sugar" - }, - { - "item": "croptopia:cooking_pot" - } + "#${dependent}:blueberries", + "minecraft:sugar", + "croptopia:cooking_pot" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/blueberry_seed.json b/src/main/generated/data/croptopia/recipe/blueberry_seed.json index ce5d0e7f0..584daaf1a 100644 --- a/src/main/generated/data/croptopia/recipe/blueberry_seed.json +++ b/src/main/generated/data/croptopia/recipe/blueberry_seed.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:blueberries" - } + "#${dependent}:blueberries" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/borscht.json b/src/main/generated/data/croptopia/recipe/borscht.json index c3f74b998..8fe85e81e 100644 --- a/src/main/generated/data/croptopia/recipe/borscht.json +++ b/src/main/generated/data/croptopia/recipe/borscht.json @@ -2,33 +2,15 @@ "type": "minecraft:crafting_shaped", "category": "misc", "key": { - "1": { - "item": "minecraft:carrot" - }, - "2": { - "item": "minecraft:potato" - }, - "3": { - "item": "minecraft:beetroot" - }, - "4": { - "tag": "${dependent}:onions" - }, - "5": { - "tag": "${dependent}:tomatoes" - }, - "6": { - "tag": "${dependent}:water_bottles" - }, - "7": { - "tag": "${dependent}:cabbage" - }, - "8": { - "item": "croptopia:cooking_pot" - }, - "9": { - "tag": "${dependent}:garlic" - } + "1": "minecraft:carrot", + "2": "minecraft:potato", + "3": "minecraft:beetroot", + "4": "#${dependent}:onions", + "5": "#${dependent}:tomatoes", + "6": "#${dependent}:water_bottles", + "7": "#${dependent}:cabbage", + "8": "croptopia:cooking_pot", + "9": "#${dependent}:garlic" }, "pattern": [ "123", diff --git a/src/main/generated/data/croptopia/recipe/broccoli_seed.json b/src/main/generated/data/croptopia/recipe/broccoli_seed.json index 7867fbc11..2c82943ff 100644 --- a/src/main/generated/data/croptopia/recipe/broccoli_seed.json +++ b/src/main/generated/data/croptopia/recipe/broccoli_seed.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:broccoli" - } + "#${dependent}:broccoli" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/cabbage_roll.json b/src/main/generated/data/croptopia/recipe/cabbage_roll.json index 1679bb549..129643ae1 100644 --- a/src/main/generated/data/croptopia/recipe/cabbage_roll.json +++ b/src/main/generated/data/croptopia/recipe/cabbage_roll.json @@ -2,24 +2,12 @@ "type": "minecraft:crafting_shaped", "category": "misc", "key": { - "1": { - "tag": "croptopia:beef_replacements" - }, - "2": { - "tag": "${dependent}:onions" - }, - "4": { - "tag": "${dependent}:salts" - }, - "5": { - "tag": "${dependent}:cabbage" - }, - "6": { - "tag": "${dependent}:rice" - }, - "8": { - "item": "croptopia:frying_pan" - } + "1": "#croptopia:beef_replacements", + "2": "#${dependent}:onions", + "4": "#${dependent}:salts", + "5": "#${dependent}:cabbage", + "6": "#${dependent}:rice", + "8": "croptopia:frying_pan" }, "pattern": [ "121", diff --git a/src/main/generated/data/croptopia/recipe/cabbage_seed.json b/src/main/generated/data/croptopia/recipe/cabbage_seed.json index ed89fb2d1..3be1cdb85 100644 --- a/src/main/generated/data/croptopia/recipe/cabbage_seed.json +++ b/src/main/generated/data/croptopia/recipe/cabbage_seed.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:cabbage" - } + "#${dependent}:cabbage" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/candied_kumquats.json b/src/main/generated/data/croptopia/recipe/candied_kumquats.json index 109baae9c..49000dddf 100644 --- a/src/main/generated/data/croptopia/recipe/candied_kumquats.json +++ b/src/main/generated/data/croptopia/recipe/candied_kumquats.json @@ -2,33 +2,15 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:kumquats" - }, - { - "tag": "${dependent}:kumquats" - }, - { - "tag": "${dependent}:kumquats" - }, - { - "tag": "${dependent}:kumquats" - }, - { - "tag": "${dependent}:kumquats" - }, - { - "tag": "${dependent}:kumquats" - }, - { - "tag": "${dependent}:kumquats" - }, - { - "tag": "${dependent}:vanilla" - }, - { - "item": "minecraft:honey_bottle" - } + "#${dependent}:kumquats", + "#${dependent}:kumquats", + "#${dependent}:kumquats", + "#${dependent}:kumquats", + "#${dependent}:kumquats", + "#${dependent}:kumquats", + "#${dependent}:kumquats", + "#${dependent}:vanilla", + "minecraft:honey_bottle" ], "result": { "count": 7, diff --git a/src/main/generated/data/croptopia/recipe/cantaloupe_seed.json b/src/main/generated/data/croptopia/recipe/cantaloupe_seed.json index 9182d985e..d73678bfc 100644 --- a/src/main/generated/data/croptopia/recipe/cantaloupe_seed.json +++ b/src/main/generated/data/croptopia/recipe/cantaloupe_seed.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:cantaloupes" - } + "#${dependent}:cantaloupes" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/caramel_from_smoking_sugar.json b/src/main/generated/data/croptopia/recipe/caramel_from_smoking_sugar.json index d2d479f04..297b58ad1 100644 --- a/src/main/generated/data/croptopia/recipe/caramel_from_smoking_sugar.json +++ b/src/main/generated/data/croptopia/recipe/caramel_from_smoking_sugar.json @@ -3,9 +3,7 @@ "category": "food", "cookingtime": 100, "experience": 0.2, - "ingredient": { - "item": "minecraft:sugar" - }, + "ingredient": "minecraft:sugar", "result": { "id": "croptopia:caramel" } diff --git a/src/main/generated/data/croptopia/recipe/caramel_from_sugar.json b/src/main/generated/data/croptopia/recipe/caramel_from_sugar.json index 77b7c78c0..702a2858a 100644 --- a/src/main/generated/data/croptopia/recipe/caramel_from_sugar.json +++ b/src/main/generated/data/croptopia/recipe/caramel_from_sugar.json @@ -3,9 +3,7 @@ "category": "misc", "cookingtime": 200, "experience": 0.2, - "ingredient": { - "item": "minecraft:sugar" - }, + "ingredient": "minecraft:sugar", "result": { "id": "croptopia:caramel" } diff --git a/src/main/generated/data/croptopia/recipe/cashew_sapling.json b/src/main/generated/data/croptopia/recipe/cashew_sapling.json index b4c82ec03..00712e01b 100644 --- a/src/main/generated/data/croptopia/recipe/cashew_sapling.json +++ b/src/main/generated/data/croptopia/recipe/cashew_sapling.json @@ -2,15 +2,9 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:cashews" - }, - { - "tag": "${dependent}:cashews" - }, - { - "tag": "minecraft:saplings" - } + "#${dependent}:cashews", + "#${dependent}:cashews", + "#minecraft:saplings" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/cauliflower_seed.json b/src/main/generated/data/croptopia/recipe/cauliflower_seed.json index ed6ca21aa..12f4850fc 100644 --- a/src/main/generated/data/croptopia/recipe/cauliflower_seed.json +++ b/src/main/generated/data/croptopia/recipe/cauliflower_seed.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:cauliflower" - } + "#${dependent}:cauliflower" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/celery_seed.json b/src/main/generated/data/croptopia/recipe/celery_seed.json index b2f54ee7f..9a237ff3f 100644 --- a/src/main/generated/data/croptopia/recipe/celery_seed.json +++ b/src/main/generated/data/croptopia/recipe/celery_seed.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:celery" - } + "#${dependent}:celery" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/cherry_jam.json b/src/main/generated/data/croptopia/recipe/cherry_jam.json index a02cab723..2e2d0b281 100644 --- a/src/main/generated/data/croptopia/recipe/cherry_jam.json +++ b/src/main/generated/data/croptopia/recipe/cherry_jam.json @@ -2,15 +2,9 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:cherries" - }, - { - "item": "minecraft:sugar" - }, - { - "item": "croptopia:cooking_pot" - } + "#${dependent}:cherries", + "minecraft:sugar", + "croptopia:cooking_pot" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/cherry_pie.json b/src/main/generated/data/croptopia/recipe/cherry_pie.json index 535bef361..e974a7de1 100644 --- a/src/main/generated/data/croptopia/recipe/cherry_pie.json +++ b/src/main/generated/data/croptopia/recipe/cherry_pie.json @@ -2,24 +2,12 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:cherries" - }, - { - "item": "minecraft:sugar" - }, - { - "item": "minecraft:egg" - }, - { - "tag": "${dependent}:flour" - }, - { - "tag": "${dependent}:doughs" - }, - { - "item": "croptopia:frying_pan" - } + "#${dependent}:cherries", + "minecraft:sugar", + "minecraft:egg", + "#${dependent}:flour", + "#${dependent}:doughs", + "croptopia:frying_pan" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/cherry_sapling.json b/src/main/generated/data/croptopia/recipe/cherry_sapling.json index af32c52ea..77dd28a5d 100644 --- a/src/main/generated/data/croptopia/recipe/cherry_sapling.json +++ b/src/main/generated/data/croptopia/recipe/cherry_sapling.json @@ -2,15 +2,9 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:cherries" - }, - { - "tag": "${dependent}:cherries" - }, - { - "tag": "minecraft:saplings" - } + "#${dependent}:cherries", + "#${dependent}:cherries", + "#minecraft:saplings" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/chile_pepper_seed.json b/src/main/generated/data/croptopia/recipe/chile_pepper_seed.json index 650574aa8..3d7437163 100644 --- a/src/main/generated/data/croptopia/recipe/chile_pepper_seed.json +++ b/src/main/generated/data/croptopia/recipe/chile_pepper_seed.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:chile_peppers" - } + "#${dependent}:chile_peppers" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/cinnamon_roll.json b/src/main/generated/data/croptopia/recipe/cinnamon_roll.json index 0ecb2148c..4400b989e 100644 --- a/src/main/generated/data/croptopia/recipe/cinnamon_roll.json +++ b/src/main/generated/data/croptopia/recipe/cinnamon_roll.json @@ -2,33 +2,15 @@ "type": "minecraft:crafting_shaped", "category": "misc", "key": { - "1": { - "tag": "${dependent}:milks" - }, - "2": { - "tag": "${dependent}:doughs" - }, - "3": { - "item": "minecraft:egg" - }, - "4": { - "tag": "${dependent}:butters" - }, - "5": { - "tag": "${dependent}:salts" - }, - "6": { - "item": "minecraft:sugar" - }, - "7": { - "tag": "${dependent}:cinnamon" - }, - "8": { - "item": "croptopia:whipping_cream" - }, - "9": { - "item": "croptopia:frying_pan" - } + "1": "#${dependent}:milks", + "2": "#${dependent}:doughs", + "3": "minecraft:egg", + "4": "#${dependent}:butters", + "5": "#${dependent}:salts", + "6": "minecraft:sugar", + "7": "#${dependent}:cinnamon", + "8": "croptopia:whipping_cream", + "9": "croptopia:frying_pan" }, "pattern": [ "123", diff --git a/src/main/generated/data/croptopia/recipe/cinnamon_wood.json b/src/main/generated/data/croptopia/recipe/cinnamon_wood.json index 5072e6b80..3c57d23ca 100644 --- a/src/main/generated/data/croptopia/recipe/cinnamon_wood.json +++ b/src/main/generated/data/croptopia/recipe/cinnamon_wood.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shaped", "category": "misc", "key": { - "#": { - "item": "croptopia:cinnamon_log" - } + "#": "croptopia:cinnamon_log" }, "pattern": [ "##", diff --git a/src/main/generated/data/croptopia/recipe/coconut_sapling.json b/src/main/generated/data/croptopia/recipe/coconut_sapling.json index fd0a6ec27..549d02670 100644 --- a/src/main/generated/data/croptopia/recipe/coconut_sapling.json +++ b/src/main/generated/data/croptopia/recipe/coconut_sapling.json @@ -2,15 +2,9 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:coconuts" - }, - { - "tag": "${dependent}:coconuts" - }, - { - "tag": "minecraft:saplings" - } + "#${dependent}:coconuts", + "#${dependent}:coconuts", + "#minecraft:saplings" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/coffee_seed.json b/src/main/generated/data/croptopia/recipe/coffee_seed.json index 8fe9ef371..790a9c4e6 100644 --- a/src/main/generated/data/croptopia/recipe/coffee_seed.json +++ b/src/main/generated/data/croptopia/recipe/coffee_seed.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:coffee_beans" - } + "#${dependent}:coffee_beans" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/cooked_anchovy_from_anchovy.json b/src/main/generated/data/croptopia/recipe/cooked_anchovy_from_anchovy.json index 2e7430592..d85e0951e 100644 --- a/src/main/generated/data/croptopia/recipe/cooked_anchovy_from_anchovy.json +++ b/src/main/generated/data/croptopia/recipe/cooked_anchovy_from_anchovy.json @@ -3,9 +3,7 @@ "category": "food", "cookingtime": 200, "experience": 0.2, - "ingredient": { - "item": "croptopia:anchovy" - }, + "ingredient": "croptopia:anchovy", "result": { "id": "croptopia:cooked_anchovy" } diff --git a/src/main/generated/data/croptopia/recipe/cooked_anchovy_from_smoking_anchovy.json b/src/main/generated/data/croptopia/recipe/cooked_anchovy_from_smoking_anchovy.json index da2cd23e7..25f961b79 100644 --- a/src/main/generated/data/croptopia/recipe/cooked_anchovy_from_smoking_anchovy.json +++ b/src/main/generated/data/croptopia/recipe/cooked_anchovy_from_smoking_anchovy.json @@ -3,9 +3,7 @@ "category": "food", "cookingtime": 100, "experience": 0.2, - "ingredient": { - "item": "croptopia:anchovy" - }, + "ingredient": "croptopia:anchovy", "result": { "id": "croptopia:cooked_anchovy" } diff --git a/src/main/generated/data/croptopia/recipe/cooked_bacon_from_bacon.json b/src/main/generated/data/croptopia/recipe/cooked_bacon_from_bacon.json index 9674eca7f..381bc7cf1 100644 --- a/src/main/generated/data/croptopia/recipe/cooked_bacon_from_bacon.json +++ b/src/main/generated/data/croptopia/recipe/cooked_bacon_from_bacon.json @@ -3,9 +3,7 @@ "category": "food", "cookingtime": 200, "experience": 0.2, - "ingredient": { - "item": "croptopia:bacon" - }, + "ingredient": "croptopia:bacon", "result": { "id": "croptopia:cooked_bacon" } diff --git a/src/main/generated/data/croptopia/recipe/cooked_bacon_from_smoking_bacon.json b/src/main/generated/data/croptopia/recipe/cooked_bacon_from_smoking_bacon.json index 11e9e820e..ab4b0d5e1 100644 --- a/src/main/generated/data/croptopia/recipe/cooked_bacon_from_smoking_bacon.json +++ b/src/main/generated/data/croptopia/recipe/cooked_bacon_from_smoking_bacon.json @@ -3,9 +3,7 @@ "category": "food", "cookingtime": 100, "experience": 0.2, - "ingredient": { - "item": "croptopia:bacon" - }, + "ingredient": "croptopia:bacon", "result": { "id": "croptopia:cooked_bacon" } diff --git a/src/main/generated/data/croptopia/recipe/cooked_calamari_from_calamari.json b/src/main/generated/data/croptopia/recipe/cooked_calamari_from_calamari.json index 2119146d5..e9c28303e 100644 --- a/src/main/generated/data/croptopia/recipe/cooked_calamari_from_calamari.json +++ b/src/main/generated/data/croptopia/recipe/cooked_calamari_from_calamari.json @@ -3,9 +3,7 @@ "category": "food", "cookingtime": 200, "experience": 0.2, - "ingredient": { - "item": "croptopia:calamari" - }, + "ingredient": "croptopia:calamari", "result": { "id": "croptopia:cooked_calamari" } diff --git a/src/main/generated/data/croptopia/recipe/cooked_calamari_from_glowing_calamari.json b/src/main/generated/data/croptopia/recipe/cooked_calamari_from_glowing_calamari.json index 3593b82ce..e6a734c1f 100644 --- a/src/main/generated/data/croptopia/recipe/cooked_calamari_from_glowing_calamari.json +++ b/src/main/generated/data/croptopia/recipe/cooked_calamari_from_glowing_calamari.json @@ -3,9 +3,7 @@ "category": "food", "cookingtime": 200, "experience": 0.2, - "ingredient": { - "item": "croptopia:glowing_calamari" - }, + "ingredient": "croptopia:glowing_calamari", "result": { "id": "croptopia:cooked_calamari" } diff --git a/src/main/generated/data/croptopia/recipe/cooked_calamari_from_smoking_calamari.json b/src/main/generated/data/croptopia/recipe/cooked_calamari_from_smoking_calamari.json index 9978a5302..936d025b8 100644 --- a/src/main/generated/data/croptopia/recipe/cooked_calamari_from_smoking_calamari.json +++ b/src/main/generated/data/croptopia/recipe/cooked_calamari_from_smoking_calamari.json @@ -3,9 +3,7 @@ "category": "food", "cookingtime": 100, "experience": 0.2, - "ingredient": { - "item": "croptopia:calamari" - }, + "ingredient": "croptopia:calamari", "result": { "id": "croptopia:cooked_calamari" } diff --git a/src/main/generated/data/croptopia/recipe/cooked_calamari_from_smoking_glowing_calamari.json b/src/main/generated/data/croptopia/recipe/cooked_calamari_from_smoking_glowing_calamari.json index 3baf0483d..b531e2c74 100644 --- a/src/main/generated/data/croptopia/recipe/cooked_calamari_from_smoking_glowing_calamari.json +++ b/src/main/generated/data/croptopia/recipe/cooked_calamari_from_smoking_glowing_calamari.json @@ -3,9 +3,7 @@ "category": "food", "cookingtime": 100, "experience": 0.2, - "ingredient": { - "item": "croptopia:glowing_calamari" - }, + "ingredient": "croptopia:glowing_calamari", "result": { "id": "croptopia:cooked_calamari" } diff --git a/src/main/generated/data/croptopia/recipe/cooked_shrimp_from_shrimp.json b/src/main/generated/data/croptopia/recipe/cooked_shrimp_from_shrimp.json index 1f68bb941..74705c914 100644 --- a/src/main/generated/data/croptopia/recipe/cooked_shrimp_from_shrimp.json +++ b/src/main/generated/data/croptopia/recipe/cooked_shrimp_from_shrimp.json @@ -3,9 +3,7 @@ "category": "food", "cookingtime": 200, "experience": 0.2, - "ingredient": { - "item": "croptopia:shrimp" - }, + "ingredient": "croptopia:shrimp", "result": { "id": "croptopia:cooked_shrimp" } diff --git a/src/main/generated/data/croptopia/recipe/cooked_shrimp_from_smoking_shrimp.json b/src/main/generated/data/croptopia/recipe/cooked_shrimp_from_smoking_shrimp.json index f19b6315a..ec3952e92 100644 --- a/src/main/generated/data/croptopia/recipe/cooked_shrimp_from_smoking_shrimp.json +++ b/src/main/generated/data/croptopia/recipe/cooked_shrimp_from_smoking_shrimp.json @@ -3,9 +3,7 @@ "category": "food", "cookingtime": 100, "experience": 0.2, - "ingredient": { - "item": "croptopia:shrimp" - }, + "ingredient": "croptopia:shrimp", "result": { "id": "croptopia:cooked_shrimp" } diff --git a/src/main/generated/data/croptopia/recipe/cooked_tuna_from_smoking_tuna.json b/src/main/generated/data/croptopia/recipe/cooked_tuna_from_smoking_tuna.json index bca5753f7..7f192ada7 100644 --- a/src/main/generated/data/croptopia/recipe/cooked_tuna_from_smoking_tuna.json +++ b/src/main/generated/data/croptopia/recipe/cooked_tuna_from_smoking_tuna.json @@ -3,9 +3,7 @@ "category": "food", "cookingtime": 100, "experience": 0.2, - "ingredient": { - "item": "croptopia:tuna" - }, + "ingredient": "croptopia:tuna", "result": { "id": "croptopia:cooked_tuna" } diff --git a/src/main/generated/data/croptopia/recipe/cooked_tuna_from_tuna.json b/src/main/generated/data/croptopia/recipe/cooked_tuna_from_tuna.json index bc22c1298..78ee18113 100644 --- a/src/main/generated/data/croptopia/recipe/cooked_tuna_from_tuna.json +++ b/src/main/generated/data/croptopia/recipe/cooked_tuna_from_tuna.json @@ -3,9 +3,7 @@ "category": "food", "cookingtime": 200, "experience": 0.2, - "ingredient": { - "item": "croptopia:tuna" - }, + "ingredient": "croptopia:tuna", "result": { "id": "croptopia:cooked_tuna" } diff --git a/src/main/generated/data/croptopia/recipe/cooking_pot.json b/src/main/generated/data/croptopia/recipe/cooking_pot.json index 41eec4829..66221b90d 100644 --- a/src/main/generated/data/croptopia/recipe/cooking_pot.json +++ b/src/main/generated/data/croptopia/recipe/cooking_pot.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shaped", "category": "misc", "key": { - "#": { - "item": "minecraft:iron_ingot" - } + "#": "minecraft:iron_ingot" }, "pattern": [ "# #", diff --git a/src/main/generated/data/croptopia/recipe/corn_bread.json b/src/main/generated/data/croptopia/recipe/corn_bread.json index 3401ce19e..1185e74d1 100644 --- a/src/main/generated/data/croptopia/recipe/corn_bread.json +++ b/src/main/generated/data/croptopia/recipe/corn_bread.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shaped", "category": "misc", "key": { - "1": { - "tag": "${dependent}:corn" - } + "1": "#${dependent}:corn" }, "pattern": [ "111" diff --git a/src/main/generated/data/croptopia/recipe/corn_seed.json b/src/main/generated/data/croptopia/recipe/corn_seed.json index a7b6373e9..156302d04 100644 --- a/src/main/generated/data/croptopia/recipe/corn_seed.json +++ b/src/main/generated/data/croptopia/recipe/corn_seed.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:corn" - } + "#${dependent}:corn" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/crab_legs.json b/src/main/generated/data/croptopia/recipe/crab_legs.json index 37916ddf4..e06d918ad 100644 --- a/src/main/generated/data/croptopia/recipe/crab_legs.json +++ b/src/main/generated/data/croptopia/recipe/crab_legs.json @@ -2,24 +2,12 @@ "type": "minecraft:crafting_shaped", "category": "misc", "key": { - "1": { - "tag": "${dependent}:butters" - }, - "2": { - "tag": "${dependent}:garlic" - }, - "3": { - "tag": "${dependent}:salts" - }, - "4": { - "item": "croptopia:pepper" - }, - "5": { - "tag": "${dependent}:crabs" - }, - "7": { - "item": "croptopia:frying_pan" - } + "1": "#${dependent}:butters", + "2": "#${dependent}:garlic", + "3": "#${dependent}:salts", + "4": "croptopia:pepper", + "5": "#${dependent}:crabs", + "7": "croptopia:frying_pan" }, "pattern": [ "123", diff --git a/src/main/generated/data/croptopia/recipe/cranberry_juice.json b/src/main/generated/data/croptopia/recipe/cranberry_juice.json index 60d6982d5..f66cacefe 100644 --- a/src/main/generated/data/croptopia/recipe/cranberry_juice.json +++ b/src/main/generated/data/croptopia/recipe/cranberry_juice.json @@ -2,15 +2,9 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:cranberries" - }, - { - "item": "croptopia:food_press" - }, - { - "item": "minecraft:glass_bottle" - } + "#${dependent}:cranberries", + "croptopia:food_press", + "minecraft:glass_bottle" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/cranberry_seed.json b/src/main/generated/data/croptopia/recipe/cranberry_seed.json index 448623fb5..1bbba691b 100644 --- a/src/main/generated/data/croptopia/recipe/cranberry_seed.json +++ b/src/main/generated/data/croptopia/recipe/cranberry_seed.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:cranberries" - } + "#${dependent}:cranberries" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/croque_madame.json b/src/main/generated/data/croptopia/recipe/croque_madame.json index a44bf456d..40b0f082f 100644 --- a/src/main/generated/data/croptopia/recipe/croque_madame.json +++ b/src/main/generated/data/croptopia/recipe/croque_madame.json @@ -2,27 +2,13 @@ "type": "minecraft:crafting_shaped", "category": "misc", "key": { - "1": { - "item": "croptopia:frying_pan" - }, - "2": { - "item": "minecraft:bread" - }, - "3": { - "tag": "${dependent}:cheeses" - }, - "4": { - "tag": "croptopia:pork_replacements" - }, - "5": { - "tag": "${dependent}:butters" - }, - "6": { - "tag": "${dependent}:flour" - }, - "7": { - "item": "minecraft:egg" - } + "1": "croptopia:frying_pan", + "2": "minecraft:bread", + "3": "#${dependent}:cheeses", + "4": "#croptopia:pork_replacements", + "5": "#${dependent}:butters", + "6": "#${dependent}:flour", + "7": "minecraft:egg" }, "pattern": [ " 1 ", diff --git a/src/main/generated/data/croptopia/recipe/croque_monsieur.json b/src/main/generated/data/croptopia/recipe/croque_monsieur.json index d501ebeee..15158d49e 100644 --- a/src/main/generated/data/croptopia/recipe/croque_monsieur.json +++ b/src/main/generated/data/croptopia/recipe/croque_monsieur.json @@ -2,24 +2,12 @@ "type": "minecraft:crafting_shaped", "category": "misc", "key": { - "1": { - "item": "croptopia:frying_pan" - }, - "2": { - "item": "minecraft:bread" - }, - "3": { - "tag": "${dependent}:cheeses" - }, - "4": { - "tag": "croptopia:pork_replacements" - }, - "5": { - "tag": "${dependent}:butters" - }, - "6": { - "tag": "${dependent}:flour" - } + "1": "croptopia:frying_pan", + "2": "minecraft:bread", + "3": "#${dependent}:cheeses", + "4": "#croptopia:pork_replacements", + "5": "#${dependent}:butters", + "6": "#${dependent}:flour" }, "pattern": [ " 1 ", diff --git a/src/main/generated/data/croptopia/recipe/cucumber_seed.json b/src/main/generated/data/croptopia/recipe/cucumber_seed.json index 461d566a1..9efc12baa 100644 --- a/src/main/generated/data/croptopia/recipe/cucumber_seed.json +++ b/src/main/generated/data/croptopia/recipe/cucumber_seed.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:cucumbers" - } + "#${dependent}:cucumbers" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/currant_seed.json b/src/main/generated/data/croptopia/recipe/currant_seed.json index 98f0f6938..bb2f2970c 100644 --- a/src/main/generated/data/croptopia/recipe/currant_seed.json +++ b/src/main/generated/data/croptopia/recipe/currant_seed.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:currants" - } + "#${dependent}:currants" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/date_sapling.json b/src/main/generated/data/croptopia/recipe/date_sapling.json index bed606ce6..3eb646ad7 100644 --- a/src/main/generated/data/croptopia/recipe/date_sapling.json +++ b/src/main/generated/data/croptopia/recipe/date_sapling.json @@ -2,15 +2,9 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:dates" - }, - { - "tag": "${dependent}:dates" - }, - { - "tag": "minecraft:saplings" - } + "#${dependent}:dates", + "#${dependent}:dates", + "#minecraft:saplings" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/dauphine_potatoes.json b/src/main/generated/data/croptopia/recipe/dauphine_potatoes.json index 189d26cbc..819e8ef00 100644 --- a/src/main/generated/data/croptopia/recipe/dauphine_potatoes.json +++ b/src/main/generated/data/croptopia/recipe/dauphine_potatoes.json @@ -2,24 +2,12 @@ "type": "minecraft:crafting_shaped", "category": "misc", "key": { - "1": { - "item": "croptopia:frying_pan" - }, - "2": { - "tag": "${dependent}:water_bottles" - }, - "3": { - "tag": "${dependent}:milks" - }, - "4": { - "tag": "${dependent}:butters" - }, - "5": { - "tag": "${dependent}:flour" - }, - "6": { - "tag": "${dependent}:olive_oils" - } + "1": "croptopia:frying_pan", + "2": "#${dependent}:water_bottles", + "3": "#${dependent}:milks", + "4": "#${dependent}:butters", + "5": "#${dependent}:flour", + "6": "#${dependent}:olive_oils" }, "pattern": [ "213", diff --git a/src/main/generated/data/croptopia/recipe/dead_bush.json b/src/main/generated/data/croptopia/recipe/dead_bush.json index 503ece64d..4a2ebac83 100644 --- a/src/main/generated/data/croptopia/recipe/dead_bush.json +++ b/src/main/generated/data/croptopia/recipe/dead_bush.json @@ -2,12 +2,8 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:salts" - }, - { - "tag": "minecraft:saplings" - } + "#${dependent}:salts", + "#minecraft:saplings" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/deep_fried_shrimp.json b/src/main/generated/data/croptopia/recipe/deep_fried_shrimp.json index b78ae91b2..505082f54 100644 --- a/src/main/generated/data/croptopia/recipe/deep_fried_shrimp.json +++ b/src/main/generated/data/croptopia/recipe/deep_fried_shrimp.json @@ -2,18 +2,10 @@ "type": "minecraft:crafting_shaped", "category": "misc", "key": { - "1": { - "tag": "${dependent}:shrimp" - }, - "4": { - "item": "minecraft:egg" - }, - "5": { - "item": "croptopia:frying_pan" - }, - "6": { - "item": "minecraft:bread" - } + "1": "#${dependent}:shrimp", + "4": "minecraft:egg", + "5": "croptopia:frying_pan", + "6": "minecraft:bread" }, "pattern": [ "111", diff --git a/src/main/generated/data/croptopia/recipe/dragonfruit_sapling.json b/src/main/generated/data/croptopia/recipe/dragonfruit_sapling.json index 6cd5b1b06..0191090d9 100644 --- a/src/main/generated/data/croptopia/recipe/dragonfruit_sapling.json +++ b/src/main/generated/data/croptopia/recipe/dragonfruit_sapling.json @@ -2,15 +2,9 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:dragonfruits" - }, - { - "tag": "${dependent}:dragonfruits" - }, - { - "tag": "minecraft:saplings" - } + "#${dependent}:dragonfruits", + "#${dependent}:dragonfruits", + "#minecraft:saplings" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/eggplant_seed.json b/src/main/generated/data/croptopia/recipe/eggplant_seed.json index 27c6e85ec..323f672b8 100644 --- a/src/main/generated/data/croptopia/recipe/eggplant_seed.json +++ b/src/main/generated/data/croptopia/recipe/eggplant_seed.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:eggplants" - } + "#${dependent}:eggplants" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/elderberry_jam.json b/src/main/generated/data/croptopia/recipe/elderberry_jam.json index 5470647b5..37b5ab84c 100644 --- a/src/main/generated/data/croptopia/recipe/elderberry_jam.json +++ b/src/main/generated/data/croptopia/recipe/elderberry_jam.json @@ -2,15 +2,9 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:elderberries" - }, - { - "item": "minecraft:sugar" - }, - { - "item": "croptopia:cooking_pot" - } + "#${dependent}:elderberries", + "minecraft:sugar", + "croptopia:cooking_pot" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/elderberry_seed.json b/src/main/generated/data/croptopia/recipe/elderberry_seed.json index 861ba4367..1006438d1 100644 --- a/src/main/generated/data/croptopia/recipe/elderberry_seed.json +++ b/src/main/generated/data/croptopia/recipe/elderberry_seed.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:elderberries" - } + "#${dependent}:elderberries" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/fig_sapling.json b/src/main/generated/data/croptopia/recipe/fig_sapling.json index 36db3a03f..b6942ccbb 100644 --- a/src/main/generated/data/croptopia/recipe/fig_sapling.json +++ b/src/main/generated/data/croptopia/recipe/fig_sapling.json @@ -2,15 +2,9 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:figs" - }, - { - "tag": "${dependent}:figs" - }, - { - "tag": "minecraft:saplings" - } + "#${dependent}:figs", + "#${dependent}:figs", + "#minecraft:saplings" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/food_press.json b/src/main/generated/data/croptopia/recipe/food_press.json index ba3968975..5c0e21b83 100644 --- a/src/main/generated/data/croptopia/recipe/food_press.json +++ b/src/main/generated/data/croptopia/recipe/food_press.json @@ -2,12 +2,8 @@ "type": "minecraft:crafting_shaped", "category": "misc", "key": { - "H": { - "item": "minecraft:hopper" - }, - "I": { - "item": "minecraft:piston" - } + "H": "minecraft:hopper", + "I": "minecraft:piston" }, "pattern": [ "I", diff --git a/src/main/generated/data/croptopia/recipe/fried_calamari.json b/src/main/generated/data/croptopia/recipe/fried_calamari.json index 05c1e6489..534f26d5f 100644 --- a/src/main/generated/data/croptopia/recipe/fried_calamari.json +++ b/src/main/generated/data/croptopia/recipe/fried_calamari.json @@ -2,24 +2,12 @@ "type": "minecraft:crafting_shaped", "category": "misc", "key": { - "1": { - "tag": "${dependent}:calamari" - }, - "2": { - "tag": "${dependent}:lemons" - }, - "3": { - "tag": "${dependent}:olive_oils" - }, - "4": { - "tag": "${dependent}:flour" - }, - "5": { - "item": "croptopia:frying_pan" - }, - "6": { - "tag": "${dependent}:sea_lettuce" - } + "1": "#${dependent}:calamari", + "2": "#${dependent}:lemons", + "3": "#${dependent}:olive_oils", + "4": "#${dependent}:flour", + "5": "croptopia:frying_pan", + "6": "#${dependent}:sea_lettuce" }, "pattern": [ "123", diff --git a/src/main/generated/data/croptopia/recipe/frying_pan.json b/src/main/generated/data/croptopia/recipe/frying_pan.json index 2f63cf137..85e72f18d 100644 --- a/src/main/generated/data/croptopia/recipe/frying_pan.json +++ b/src/main/generated/data/croptopia/recipe/frying_pan.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shaped", "category": "misc", "key": { - "#": { - "item": "minecraft:iron_ingot" - } + "#": "minecraft:iron_ingot" }, "pattern": [ "# ", diff --git a/src/main/generated/data/croptopia/recipe/garlic_seed.json b/src/main/generated/data/croptopia/recipe/garlic_seed.json index 3ac37b5ad..c345cf4fd 100644 --- a/src/main/generated/data/croptopia/recipe/garlic_seed.json +++ b/src/main/generated/data/croptopia/recipe/garlic_seed.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:garlic" - } + "#${dependent}:garlic" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/ginger_seed.json b/src/main/generated/data/croptopia/recipe/ginger_seed.json index 03ab990f3..cdcac43a9 100644 --- a/src/main/generated/data/croptopia/recipe/ginger_seed.json +++ b/src/main/generated/data/croptopia/recipe/ginger_seed.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:gingers" - } + "#${dependent}:gingers" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/goulash.json b/src/main/generated/data/croptopia/recipe/goulash.json index 21f3015f3..092f37681 100644 --- a/src/main/generated/data/croptopia/recipe/goulash.json +++ b/src/main/generated/data/croptopia/recipe/goulash.json @@ -2,24 +2,12 @@ "type": "minecraft:crafting_shaped", "category": "misc", "key": { - "1": { - "tag": "croptopia:pork_replacements" - }, - "2": { - "tag": "${dependent}:onions" - }, - "3": { - "tag": "croptopia:beef_replacements" - }, - "4": { - "tag": "${dependent}:cabbage" - }, - "5": { - "tag": "${dependent}:tomatoes" - }, - "8": { - "item": "croptopia:frying_pan" - } + "1": "#croptopia:pork_replacements", + "2": "#${dependent}:onions", + "3": "#croptopia:beef_replacements", + "4": "#${dependent}:cabbage", + "5": "#${dependent}:tomatoes", + "8": "croptopia:frying_pan" }, "pattern": [ "123", diff --git a/src/main/generated/data/croptopia/recipe/grape_jam.json b/src/main/generated/data/croptopia/recipe/grape_jam.json index f8866c9f7..4a6106d94 100644 --- a/src/main/generated/data/croptopia/recipe/grape_jam.json +++ b/src/main/generated/data/croptopia/recipe/grape_jam.json @@ -2,15 +2,9 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:grapes" - }, - { - "item": "minecraft:sugar" - }, - { - "item": "croptopia:cooking_pot" - } + "#${dependent}:grapes", + "minecraft:sugar", + "croptopia:cooking_pot" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/grape_juice.json b/src/main/generated/data/croptopia/recipe/grape_juice.json index 0041a565e..af6ede539 100644 --- a/src/main/generated/data/croptopia/recipe/grape_juice.json +++ b/src/main/generated/data/croptopia/recipe/grape_juice.json @@ -2,15 +2,9 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:grapes" - }, - { - "item": "croptopia:food_press" - }, - { - "item": "minecraft:glass_bottle" - } + "#${dependent}:grapes", + "croptopia:food_press", + "minecraft:glass_bottle" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/grape_seed.json b/src/main/generated/data/croptopia/recipe/grape_seed.json index e812e8004..6a4789f6b 100644 --- a/src/main/generated/data/croptopia/recipe/grape_seed.json +++ b/src/main/generated/data/croptopia/recipe/grape_seed.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:grapes" - } + "#${dependent}:grapes" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/grapefruit_sapling.json b/src/main/generated/data/croptopia/recipe/grapefruit_sapling.json index f963493e4..d1f07e8db 100644 --- a/src/main/generated/data/croptopia/recipe/grapefruit_sapling.json +++ b/src/main/generated/data/croptopia/recipe/grapefruit_sapling.json @@ -2,15 +2,9 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:grapefruits" - }, - { - "tag": "${dependent}:grapefruits" - }, - { - "tag": "minecraft:saplings" - } + "#${dependent}:grapefruits", + "#${dependent}:grapefruits", + "#minecraft:saplings" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/greenbean_seed.json b/src/main/generated/data/croptopia/recipe/greenbean_seed.json index f17c0f15f..4cb826ef4 100644 --- a/src/main/generated/data/croptopia/recipe/greenbean_seed.json +++ b/src/main/generated/data/croptopia/recipe/greenbean_seed.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:greenbeans" - } + "#${dependent}:greenbeans" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/greenonion_seed.json b/src/main/generated/data/croptopia/recipe/greenonion_seed.json index 7e0a96270..644f356b9 100644 --- a/src/main/generated/data/croptopia/recipe/greenonion_seed.json +++ b/src/main/generated/data/croptopia/recipe/greenonion_seed.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:greenonions" - } + "#${dependent}:greenonions" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/grilled_oysters.json b/src/main/generated/data/croptopia/recipe/grilled_oysters.json index 7cf0d7807..d25561bfe 100644 --- a/src/main/generated/data/croptopia/recipe/grilled_oysters.json +++ b/src/main/generated/data/croptopia/recipe/grilled_oysters.json @@ -2,24 +2,12 @@ "type": "minecraft:crafting_shaped", "category": "misc", "key": { - "1": { - "tag": "${dependent}:oysters" - }, - "2": { - "tag": "${dependent}:cheeses" - }, - "4": { - "tag": "${dependent}:lemons" - }, - "5": { - "tag": "${dependent}:garlic" - }, - "6": { - "tag": "${dependent}:salts" - }, - "7": { - "item": "croptopia:frying_pan" - } + "1": "#${dependent}:oysters", + "2": "#${dependent}:cheeses", + "4": "#${dependent}:lemons", + "5": "#${dependent}:garlic", + "6": "#${dependent}:salts", + "7": "croptopia:frying_pan" }, "pattern": [ "121", diff --git a/src/main/generated/data/croptopia/recipe/ground_pork.json b/src/main/generated/data/croptopia/recipe/ground_pork.json index f67fa0be7..87b782d4d 100644 --- a/src/main/generated/data/croptopia/recipe/ground_pork.json +++ b/src/main/generated/data/croptopia/recipe/ground_pork.json @@ -2,12 +2,8 @@ "type": "minecraft:crafting_shaped", "category": "misc", "key": { - "1": { - "tag": "croptopia:pork_replacements" - }, - "2": { - "item": "croptopia:food_press" - } + "1": "#croptopia:pork_replacements", + "2": "croptopia:food_press" }, "pattern": [ "1", diff --git a/src/main/generated/data/croptopia/recipe/hashed_brown.json b/src/main/generated/data/croptopia/recipe/hashed_brown.json index 5ad98e4fe..a69c43d65 100644 --- a/src/main/generated/data/croptopia/recipe/hashed_brown.json +++ b/src/main/generated/data/croptopia/recipe/hashed_brown.json @@ -2,18 +2,10 @@ "type": "minecraft:crafting_shaped", "category": "misc", "key": { - "1": { - "tag": "${dependent}:potatoes" - }, - "2": { - "item": "croptopia:frying_pan" - }, - "3": { - "tag": "${dependent}:olive_oils" - }, - "4": { - "item": "croptopia:knife" - } + "1": "#${dependent}:potatoes", + "2": "croptopia:frying_pan", + "3": "#${dependent}:olive_oils", + "4": "croptopia:knife" }, "pattern": [ "123", diff --git a/src/main/generated/data/croptopia/recipe/honeydew_seed.json b/src/main/generated/data/croptopia/recipe/honeydew_seed.json index 8933ff36f..07ea3a59c 100644 --- a/src/main/generated/data/croptopia/recipe/honeydew_seed.json +++ b/src/main/generated/data/croptopia/recipe/honeydew_seed.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:honeydew" - } + "#${dependent}:honeydew" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/hops_seed.json b/src/main/generated/data/croptopia/recipe/hops_seed.json index b69f1b57b..ba27e701d 100644 --- a/src/main/generated/data/croptopia/recipe/hops_seed.json +++ b/src/main/generated/data/croptopia/recipe/hops_seed.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:hops" - } + "#${dependent}:hops" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/kale_seed.json b/src/main/generated/data/croptopia/recipe/kale_seed.json index 5656fb5f9..d20346c28 100644 --- a/src/main/generated/data/croptopia/recipe/kale_seed.json +++ b/src/main/generated/data/croptopia/recipe/kale_seed.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:kale" - } + "#${dependent}:kale" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/kiwi_seed.json b/src/main/generated/data/croptopia/recipe/kiwi_seed.json index 986df8d65..8eb6a0104 100644 --- a/src/main/generated/data/croptopia/recipe/kiwi_seed.json +++ b/src/main/generated/data/croptopia/recipe/kiwi_seed.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:kiwis" - } + "#${dependent}:kiwis" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/knife.json b/src/main/generated/data/croptopia/recipe/knife.json index 2b12f1d80..fc260f423 100644 --- a/src/main/generated/data/croptopia/recipe/knife.json +++ b/src/main/generated/data/croptopia/recipe/knife.json @@ -2,12 +2,8 @@ "type": "minecraft:crafting_shaped", "category": "misc", "key": { - "#": { - "item": "minecraft:iron_ingot" - }, - "i": { - "item": "minecraft:stick" - } + "#": "minecraft:iron_ingot", + "i": "minecraft:stick" }, "pattern": [ " #", diff --git a/src/main/generated/data/croptopia/recipe/kumquat_sapling.json b/src/main/generated/data/croptopia/recipe/kumquat_sapling.json index 1942a995d..cd4e528ec 100644 --- a/src/main/generated/data/croptopia/recipe/kumquat_sapling.json +++ b/src/main/generated/data/croptopia/recipe/kumquat_sapling.json @@ -2,15 +2,9 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:kumquats" - }, - { - "tag": "${dependent}:kumquats" - }, - { - "tag": "minecraft:saplings" - } + "#${dependent}:kumquats", + "#${dependent}:kumquats", + "#minecraft:saplings" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/leek_seed.json b/src/main/generated/data/croptopia/recipe/leek_seed.json index 46deea50d..81d02460e 100644 --- a/src/main/generated/data/croptopia/recipe/leek_seed.json +++ b/src/main/generated/data/croptopia/recipe/leek_seed.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:leek" - } + "#${dependent}:leek" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/lemon_sapling.json b/src/main/generated/data/croptopia/recipe/lemon_sapling.json index 8ad781eaa..c48d19d74 100644 --- a/src/main/generated/data/croptopia/recipe/lemon_sapling.json +++ b/src/main/generated/data/croptopia/recipe/lemon_sapling.json @@ -2,15 +2,9 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:lemons" - }, - { - "tag": "${dependent}:lemons" - }, - { - "tag": "minecraft:saplings" - } + "#${dependent}:lemons", + "#${dependent}:lemons", + "#minecraft:saplings" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/lettuce_seed.json b/src/main/generated/data/croptopia/recipe/lettuce_seed.json index 454c09f15..032088d9a 100644 --- a/src/main/generated/data/croptopia/recipe/lettuce_seed.json +++ b/src/main/generated/data/croptopia/recipe/lettuce_seed.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:lettuce" - } + "#${dependent}:lettuce" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/lime_sapling.json b/src/main/generated/data/croptopia/recipe/lime_sapling.json index 626fa71b0..6a783240e 100644 --- a/src/main/generated/data/croptopia/recipe/lime_sapling.json +++ b/src/main/generated/data/croptopia/recipe/lime_sapling.json @@ -2,15 +2,9 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:limes" - }, - { - "tag": "${dependent}:limes" - }, - { - "tag": "minecraft:saplings" - } + "#${dependent}:limes", + "#${dependent}:limes", + "#minecraft:saplings" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/macaron.json b/src/main/generated/data/croptopia/recipe/macaron.json index d5adc1444..5a7a2933b 100644 --- a/src/main/generated/data/croptopia/recipe/macaron.json +++ b/src/main/generated/data/croptopia/recipe/macaron.json @@ -2,18 +2,10 @@ "type": "minecraft:crafting_shaped", "category": "misc", "key": { - "1": { - "item": "minecraft:egg" - }, - "2": { - "item": "minecraft:sugar" - }, - "5": { - "tag": "${dependent}:almonds" - }, - "6": { - "item": "croptopia:food_press" - } + "1": "minecraft:egg", + "2": "minecraft:sugar", + "5": "#${dependent}:almonds", + "6": "croptopia:food_press" }, "pattern": [ "122", diff --git a/src/main/generated/data/croptopia/recipe/mango_ice_cream.json b/src/main/generated/data/croptopia/recipe/mango_ice_cream.json index 7606d5725..0af5478a0 100644 --- a/src/main/generated/data/croptopia/recipe/mango_ice_cream.json +++ b/src/main/generated/data/croptopia/recipe/mango_ice_cream.json @@ -2,21 +2,11 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:mangos" - }, - { - "item": "minecraft:sugar" - }, - { - "item": "minecraft:egg" - }, - { - "tag": "${dependent}:milks" - }, - { - "item": "croptopia:cooking_pot" - } + "#${dependent}:mangos", + "minecraft:sugar", + "minecraft:egg", + "#${dependent}:milks", + "croptopia:cooking_pot" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/mango_sapling.json b/src/main/generated/data/croptopia/recipe/mango_sapling.json index 2975f624b..0bb86c2d2 100644 --- a/src/main/generated/data/croptopia/recipe/mango_sapling.json +++ b/src/main/generated/data/croptopia/recipe/mango_sapling.json @@ -2,15 +2,9 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:mangos" - }, - { - "tag": "${dependent}:mangos" - }, - { - "tag": "minecraft:saplings" - } + "#${dependent}:mangos", + "#${dependent}:mangos", + "#minecraft:saplings" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/mashed_potatoes.json b/src/main/generated/data/croptopia/recipe/mashed_potatoes.json index 2ffbbac2b..1ad7a47e9 100644 --- a/src/main/generated/data/croptopia/recipe/mashed_potatoes.json +++ b/src/main/generated/data/croptopia/recipe/mashed_potatoes.json @@ -2,18 +2,10 @@ "type": "minecraft:crafting_shaped", "category": "misc", "key": { - "1": { - "tag": "${dependent}:potatoes" - }, - "2": { - "tag": "${dependent}:salts" - }, - "3": { - "item": "croptopia:mortar_and_pestle" - }, - "4": { - "tag": "${dependent}:milks" - } + "1": "#${dependent}:potatoes", + "2": "#${dependent}:salts", + "3": "croptopia:mortar_and_pestle", + "4": "#${dependent}:milks" }, "pattern": [ "1 ", diff --git a/src/main/generated/data/croptopia/recipe/melon_juice.json b/src/main/generated/data/croptopia/recipe/melon_juice.json index 40ebe2c50..3b32e76d9 100644 --- a/src/main/generated/data/croptopia/recipe/melon_juice.json +++ b/src/main/generated/data/croptopia/recipe/melon_juice.json @@ -2,15 +2,9 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:melons" - }, - { - "item": "croptopia:food_press" - }, - { - "item": "minecraft:glass_bottle" - } + "#${dependent}:melons", + "croptopia:food_press", + "minecraft:glass_bottle" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/meringue.json b/src/main/generated/data/croptopia/recipe/meringue.json index 4d6a59cb3..3f731aef3 100644 --- a/src/main/generated/data/croptopia/recipe/meringue.json +++ b/src/main/generated/data/croptopia/recipe/meringue.json @@ -2,18 +2,10 @@ "type": "minecraft:crafting_shaped", "category": "misc", "key": { - "1": { - "item": "minecraft:egg" - }, - "2": { - "tag": "${dependent}:salts" - }, - "3": { - "item": "minecraft:sugar" - }, - "4": { - "tag": "${dependent}:vanilla" - } + "1": "minecraft:egg", + "2": "#${dependent}:salts", + "3": "minecraft:sugar", + "4": "#${dependent}:vanilla" }, "pattern": [ "243", diff --git a/src/main/generated/data/croptopia/recipe/molasses_from_smoking_sugar_cane.json b/src/main/generated/data/croptopia/recipe/molasses_from_smoking_sugar_cane.json index 57a487e91..7c76d9e59 100644 --- a/src/main/generated/data/croptopia/recipe/molasses_from_smoking_sugar_cane.json +++ b/src/main/generated/data/croptopia/recipe/molasses_from_smoking_sugar_cane.json @@ -3,9 +3,7 @@ "category": "food", "cookingtime": 100, "experience": 0.2, - "ingredient": { - "item": "minecraft:sugar_cane" - }, + "ingredient": "minecraft:sugar_cane", "result": { "id": "croptopia:molasses" } diff --git a/src/main/generated/data/croptopia/recipe/molasses_from_sugar_cane.json b/src/main/generated/data/croptopia/recipe/molasses_from_sugar_cane.json index 519e2d95c..fb3f9d39c 100644 --- a/src/main/generated/data/croptopia/recipe/molasses_from_sugar_cane.json +++ b/src/main/generated/data/croptopia/recipe/molasses_from_sugar_cane.json @@ -3,9 +3,7 @@ "category": "misc", "cookingtime": 200, "experience": 0.2, - "ingredient": { - "item": "minecraft:sugar_cane" - }, + "ingredient": "minecraft:sugar_cane", "result": { "id": "croptopia:molasses" } diff --git a/src/main/generated/data/croptopia/recipe/mortar_and_pestle.json b/src/main/generated/data/croptopia/recipe/mortar_and_pestle.json index a84b7369d..5a4091d2d 100644 --- a/src/main/generated/data/croptopia/recipe/mortar_and_pestle.json +++ b/src/main/generated/data/croptopia/recipe/mortar_and_pestle.json @@ -2,12 +2,8 @@ "type": "minecraft:crafting_shaped", "category": "misc", "key": { - "#": { - "item": "minecraft:bowl" - }, - "i": { - "item": "minecraft:stick" - } + "#": "minecraft:bowl", + "i": "minecraft:stick" }, "pattern": [ "i", diff --git a/src/main/generated/data/croptopia/recipe/mustard_seed.json b/src/main/generated/data/croptopia/recipe/mustard_seed.json index 1e9923458..8d8166d3e 100644 --- a/src/main/generated/data/croptopia/recipe/mustard_seed.json +++ b/src/main/generated/data/croptopia/recipe/mustard_seed.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:mustard" - } + "#${dependent}:mustard" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/nectarine_sapling.json b/src/main/generated/data/croptopia/recipe/nectarine_sapling.json index a94a365c8..5103ccc6d 100644 --- a/src/main/generated/data/croptopia/recipe/nectarine_sapling.json +++ b/src/main/generated/data/croptopia/recipe/nectarine_sapling.json @@ -2,15 +2,9 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:nectarines" - }, - { - "tag": "${dependent}:nectarines" - }, - { - "tag": "minecraft:saplings" - } + "#${dependent}:nectarines", + "#${dependent}:nectarines", + "#minecraft:saplings" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/nutmeg_sapling.json b/src/main/generated/data/croptopia/recipe/nutmeg_sapling.json index d67cd9d9a..8a2584ef2 100644 --- a/src/main/generated/data/croptopia/recipe/nutmeg_sapling.json +++ b/src/main/generated/data/croptopia/recipe/nutmeg_sapling.json @@ -2,15 +2,9 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:nutmegs" - }, - { - "tag": "${dependent}:nutmegs" - }, - { - "tag": "minecraft:saplings" - } + "#${dependent}:nutmegs", + "#${dependent}:nutmegs", + "#minecraft:saplings" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/oat_seed.json b/src/main/generated/data/croptopia/recipe/oat_seed.json index 9f2c9d0c1..64b4fa656 100644 --- a/src/main/generated/data/croptopia/recipe/oat_seed.json +++ b/src/main/generated/data/croptopia/recipe/oat_seed.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:oat" - } + "#${dependent}:oat" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/olive_seed.json b/src/main/generated/data/croptopia/recipe/olive_seed.json index 7947be996..9a4650324 100644 --- a/src/main/generated/data/croptopia/recipe/olive_seed.json +++ b/src/main/generated/data/croptopia/recipe/olive_seed.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:olives" - } + "#${dependent}:olives" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/onion_seed.json b/src/main/generated/data/croptopia/recipe/onion_seed.json index 0511207d8..c5d9bc29c 100644 --- a/src/main/generated/data/croptopia/recipe/onion_seed.json +++ b/src/main/generated/data/croptopia/recipe/onion_seed.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:onions" - } + "#${dependent}:onions" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/orange_dye.json b/src/main/generated/data/croptopia/recipe/orange_dye.json index 6a6369cd2..bff0ca0cb 100644 --- a/src/main/generated/data/croptopia/recipe/orange_dye.json +++ b/src/main/generated/data/croptopia/recipe/orange_dye.json @@ -2,15 +2,9 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:turmeric" - }, - { - "tag": "${dependent}:turmeric" - }, - { - "tag": "${dependent}:turmeric" - } + "#${dependent}:turmeric", + "#${dependent}:turmeric", + "#${dependent}:turmeric" ], "result": { "count": 2, diff --git a/src/main/generated/data/croptopia/recipe/orange_juice.json b/src/main/generated/data/croptopia/recipe/orange_juice.json index 0715f195f..b6b87a77a 100644 --- a/src/main/generated/data/croptopia/recipe/orange_juice.json +++ b/src/main/generated/data/croptopia/recipe/orange_juice.json @@ -2,15 +2,9 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:oranges" - }, - { - "item": "croptopia:food_press" - }, - { - "item": "minecraft:glass_bottle" - } + "#${dependent}:oranges", + "croptopia:food_press", + "minecraft:glass_bottle" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/orange_sapling.json b/src/main/generated/data/croptopia/recipe/orange_sapling.json index a69555b62..61b5ad4af 100644 --- a/src/main/generated/data/croptopia/recipe/orange_sapling.json +++ b/src/main/generated/data/croptopia/recipe/orange_sapling.json @@ -2,15 +2,9 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:oranges" - }, - { - "tag": "${dependent}:oranges" - }, - { - "tag": "minecraft:saplings" - } + "#${dependent}:oranges", + "#${dependent}:oranges", + "#minecraft:saplings" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/peach_jam.json b/src/main/generated/data/croptopia/recipe/peach_jam.json index 43c70f674..f9dd16094 100644 --- a/src/main/generated/data/croptopia/recipe/peach_jam.json +++ b/src/main/generated/data/croptopia/recipe/peach_jam.json @@ -2,15 +2,9 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:peaches" - }, - { - "item": "minecraft:sugar" - }, - { - "item": "croptopia:cooking_pot" - } + "#${dependent}:peaches", + "minecraft:sugar", + "croptopia:cooking_pot" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/peach_sapling.json b/src/main/generated/data/croptopia/recipe/peach_sapling.json index 9735c9648..3248ebd0f 100644 --- a/src/main/generated/data/croptopia/recipe/peach_sapling.json +++ b/src/main/generated/data/croptopia/recipe/peach_sapling.json @@ -2,15 +2,9 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:peaches" - }, - { - "tag": "${dependent}:peaches" - }, - { - "tag": "minecraft:saplings" - } + "#${dependent}:peaches", + "#${dependent}:peaches", + "#minecraft:saplings" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/peanut_seed.json b/src/main/generated/data/croptopia/recipe/peanut_seed.json index 56c073914..b5671ecb0 100644 --- a/src/main/generated/data/croptopia/recipe/peanut_seed.json +++ b/src/main/generated/data/croptopia/recipe/peanut_seed.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:peanuts" - } + "#${dependent}:peanuts" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/pear_sapling.json b/src/main/generated/data/croptopia/recipe/pear_sapling.json index cb11b4c82..bf898680c 100644 --- a/src/main/generated/data/croptopia/recipe/pear_sapling.json +++ b/src/main/generated/data/croptopia/recipe/pear_sapling.json @@ -2,15 +2,9 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:pears" - }, - { - "tag": "${dependent}:pears" - }, - { - "tag": "minecraft:saplings" - } + "#${dependent}:pears", + "#${dependent}:pears", + "#minecraft:saplings" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/pecan_ice_cream.json b/src/main/generated/data/croptopia/recipe/pecan_ice_cream.json index cb0c4ab8e..5b397a836 100644 --- a/src/main/generated/data/croptopia/recipe/pecan_ice_cream.json +++ b/src/main/generated/data/croptopia/recipe/pecan_ice_cream.json @@ -2,21 +2,11 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:pecans" - }, - { - "item": "minecraft:sugar" - }, - { - "item": "minecraft:egg" - }, - { - "tag": "${dependent}:milks" - }, - { - "item": "croptopia:cooking_pot" - } + "#${dependent}:pecans", + "minecraft:sugar", + "minecraft:egg", + "#${dependent}:milks", + "croptopia:cooking_pot" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/pecan_pie.json b/src/main/generated/data/croptopia/recipe/pecan_pie.json index 37a29ab33..d963189b7 100644 --- a/src/main/generated/data/croptopia/recipe/pecan_pie.json +++ b/src/main/generated/data/croptopia/recipe/pecan_pie.json @@ -2,24 +2,12 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:pecans" - }, - { - "item": "minecraft:sugar" - }, - { - "item": "minecraft:egg" - }, - { - "tag": "${dependent}:flour" - }, - { - "tag": "${dependent}:doughs" - }, - { - "item": "croptopia:frying_pan" - } + "#${dependent}:pecans", + "minecraft:sugar", + "minecraft:egg", + "#${dependent}:flour", + "#${dependent}:doughs", + "croptopia:frying_pan" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/pecan_sapling.json b/src/main/generated/data/croptopia/recipe/pecan_sapling.json index ca7fe7757..5bc8210a2 100644 --- a/src/main/generated/data/croptopia/recipe/pecan_sapling.json +++ b/src/main/generated/data/croptopia/recipe/pecan_sapling.json @@ -2,15 +2,9 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:pecans" - }, - { - "tag": "${dependent}:pecans" - }, - { - "tag": "minecraft:saplings" - } + "#${dependent}:pecans", + "#${dependent}:pecans", + "#minecraft:saplings" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/pepper_seed.json b/src/main/generated/data/croptopia/recipe/pepper_seed.json index 3153b530c..af191b2ce 100644 --- a/src/main/generated/data/croptopia/recipe/pepper_seed.json +++ b/src/main/generated/data/croptopia/recipe/pepper_seed.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:pepper" - } + "#${dependent}:pepper" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/persimmon_sapling.json b/src/main/generated/data/croptopia/recipe/persimmon_sapling.json index 649613cca..5694f5a8d 100644 --- a/src/main/generated/data/croptopia/recipe/persimmon_sapling.json +++ b/src/main/generated/data/croptopia/recipe/persimmon_sapling.json @@ -2,15 +2,9 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:persimmons" - }, - { - "tag": "${dependent}:persimmons" - }, - { - "tag": "minecraft:saplings" - } + "#${dependent}:persimmons", + "#${dependent}:persimmons", + "#minecraft:saplings" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/pineapple_juice.json b/src/main/generated/data/croptopia/recipe/pineapple_juice.json index 2396ac187..516e347a2 100644 --- a/src/main/generated/data/croptopia/recipe/pineapple_juice.json +++ b/src/main/generated/data/croptopia/recipe/pineapple_juice.json @@ -2,15 +2,9 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:pineapples" - }, - { - "item": "croptopia:food_press" - }, - { - "item": "minecraft:glass_bottle" - } + "#${dependent}:pineapples", + "croptopia:food_press", + "minecraft:glass_bottle" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/pineapple_seed.json b/src/main/generated/data/croptopia/recipe/pineapple_seed.json index c5d988039..8fe4895da 100644 --- a/src/main/generated/data/croptopia/recipe/pineapple_seed.json +++ b/src/main/generated/data/croptopia/recipe/pineapple_seed.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:pineapples" - } + "#${dependent}:pineapples" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/plum_sapling.json b/src/main/generated/data/croptopia/recipe/plum_sapling.json index 1dbf4093c..d460f4d8f 100644 --- a/src/main/generated/data/croptopia/recipe/plum_sapling.json +++ b/src/main/generated/data/croptopia/recipe/plum_sapling.json @@ -2,15 +2,9 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:plums" - }, - { - "tag": "${dependent}:plums" - }, - { - "tag": "minecraft:saplings" - } + "#${dependent}:plums", + "#${dependent}:plums", + "#minecraft:saplings" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/popcorn_from_corn.json b/src/main/generated/data/croptopia/recipe/popcorn_from_corn.json index 0e7d616c0..e4c627b05 100644 --- a/src/main/generated/data/croptopia/recipe/popcorn_from_corn.json +++ b/src/main/generated/data/croptopia/recipe/popcorn_from_corn.json @@ -3,9 +3,7 @@ "category": "food", "cookingtime": 200, "experience": 0.2, - "ingredient": { - "item": "croptopia:corn" - }, + "ingredient": "croptopia:corn", "result": { "id": "croptopia:popcorn" } diff --git a/src/main/generated/data/croptopia/recipe/popcorn_from_smoking_corn.json b/src/main/generated/data/croptopia/recipe/popcorn_from_smoking_corn.json index 2f5abd79e..5d08a86a5 100644 --- a/src/main/generated/data/croptopia/recipe/popcorn_from_smoking_corn.json +++ b/src/main/generated/data/croptopia/recipe/popcorn_from_smoking_corn.json @@ -3,9 +3,7 @@ "category": "food", "cookingtime": 100, "experience": 0.2, - "ingredient": { - "item": "croptopia:corn" - }, + "ingredient": "croptopia:corn", "result": { "id": "croptopia:popcorn" } diff --git a/src/main/generated/data/croptopia/recipe/pork_jerky.json b/src/main/generated/data/croptopia/recipe/pork_jerky.json index 767bb12f3..5ee3e840f 100644 --- a/src/main/generated/data/croptopia/recipe/pork_jerky.json +++ b/src/main/generated/data/croptopia/recipe/pork_jerky.json @@ -2,12 +2,8 @@ "type": "minecraft:crafting_shaped", "category": "misc", "key": { - "1": { - "item": "minecraft:porkchop" - }, - "2": { - "tag": "${dependent}:salts" - } + "1": "minecraft:porkchop", + "2": "#${dependent}:salts" }, "pattern": [ "111", diff --git a/src/main/generated/data/croptopia/recipe/pumpkin_bars.json b/src/main/generated/data/croptopia/recipe/pumpkin_bars.json index 095d53a81..8dbabc0d9 100644 --- a/src/main/generated/data/croptopia/recipe/pumpkin_bars.json +++ b/src/main/generated/data/croptopia/recipe/pumpkin_bars.json @@ -2,30 +2,14 @@ "type": "minecraft:crafting_shaped", "category": "misc", "key": { - "1": { - "item": "minecraft:egg" - }, - "2": { - "item": "minecraft:sugar" - }, - "3": { - "item": "minecraft:pumpkin" - }, - "4": { - "tag": "${dependent}:flour" - }, - "5": { - "item": "croptopia:cinnamon" - }, - "6": { - "tag": "${dependent}:salts" - }, - "7": { - "tag": "${dependent}:butters" - }, - "8": { - "tag": "${dependent}:vanilla" - } + "1": "minecraft:egg", + "2": "minecraft:sugar", + "3": "minecraft:pumpkin", + "4": "#${dependent}:flour", + "5": "croptopia:cinnamon", + "6": "#${dependent}:salts", + "7": "#${dependent}:butters", + "8": "#${dependent}:vanilla" }, "pattern": [ "586", diff --git a/src/main/generated/data/croptopia/recipe/pumpkin_soup.json b/src/main/generated/data/croptopia/recipe/pumpkin_soup.json index 526223733..ffd05e14a 100644 --- a/src/main/generated/data/croptopia/recipe/pumpkin_soup.json +++ b/src/main/generated/data/croptopia/recipe/pumpkin_soup.json @@ -2,24 +2,12 @@ "type": "minecraft:crafting_shaped", "category": "misc", "key": { - "1": { - "tag": "${dependent}:onions" - }, - "2": { - "tag": "${dependent}:garlic" - }, - "3": { - "item": "croptopia:pepper" - }, - "4": { - "item": "minecraft:pumpkin" - }, - "5": { - "tag": "${dependent}:salts" - }, - "6": { - "item": "croptopia:cooking_pot" - } + "1": "#${dependent}:onions", + "2": "#${dependent}:garlic", + "3": "croptopia:pepper", + "4": "minecraft:pumpkin", + "5": "#${dependent}:salts", + "6": "croptopia:cooking_pot" }, "pattern": [ "123", diff --git a/src/main/generated/data/croptopia/recipe/purple_dye.json b/src/main/generated/data/croptopia/recipe/purple_dye.json index 770d9e556..367396cc5 100644 --- a/src/main/generated/data/croptopia/recipe/purple_dye.json +++ b/src/main/generated/data/croptopia/recipe/purple_dye.json @@ -2,15 +2,9 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:grapes" - }, - { - "tag": "${dependent}:grapes" - }, - { - "tag": "${dependent}:grapes" - } + "#${dependent}:grapes", + "#${dependent}:grapes", + "#${dependent}:grapes" ], "result": { "count": 2, diff --git a/src/main/generated/data/croptopia/recipe/quiche.json b/src/main/generated/data/croptopia/recipe/quiche.json index 10b5210bb..c88e0e5ea 100644 --- a/src/main/generated/data/croptopia/recipe/quiche.json +++ b/src/main/generated/data/croptopia/recipe/quiche.json @@ -2,24 +2,12 @@ "type": "minecraft:crafting_shaped", "category": "misc", "key": { - "1": { - "item": "croptopia:frying_pan" - }, - "2": { - "tag": "${dependent}:milks" - }, - "3": { - "item": "minecraft:egg" - }, - "4": { - "tag": "${dependent}:spinach" - }, - "5": { - "tag": "${dependent}:flour" - }, - "6": { - "tag": "${dependent}:onions" - } + "1": "croptopia:frying_pan", + "2": "#${dependent}:milks", + "3": "minecraft:egg", + "4": "#${dependent}:spinach", + "5": "#${dependent}:flour", + "6": "#${dependent}:onions" }, "pattern": [ " 1 ", diff --git a/src/main/generated/data/croptopia/recipe/radish_seed.json b/src/main/generated/data/croptopia/recipe/radish_seed.json index 91d4002fe..551aacc53 100644 --- a/src/main/generated/data/croptopia/recipe/radish_seed.json +++ b/src/main/generated/data/croptopia/recipe/radish_seed.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:radishes" - } + "#${dependent}:radishes" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/raisins_from_grape.json b/src/main/generated/data/croptopia/recipe/raisins_from_grape.json index a4f92af5c..f1590ca5d 100644 --- a/src/main/generated/data/croptopia/recipe/raisins_from_grape.json +++ b/src/main/generated/data/croptopia/recipe/raisins_from_grape.json @@ -3,9 +3,7 @@ "category": "food", "cookingtime": 200, "experience": 0.2, - "ingredient": { - "item": "croptopia:grape" - }, + "ingredient": "croptopia:grape", "result": { "id": "croptopia:raisins" } diff --git a/src/main/generated/data/croptopia/recipe/raisins_from_smoking_grape.json b/src/main/generated/data/croptopia/recipe/raisins_from_smoking_grape.json index 7552c9a25..e8ce88111 100644 --- a/src/main/generated/data/croptopia/recipe/raisins_from_smoking_grape.json +++ b/src/main/generated/data/croptopia/recipe/raisins_from_smoking_grape.json @@ -3,9 +3,7 @@ "category": "food", "cookingtime": 100, "experience": 0.2, - "ingredient": { - "item": "croptopia:grape" - }, + "ingredient": "croptopia:grape", "result": { "id": "croptopia:raisins" } diff --git a/src/main/generated/data/croptopia/recipe/raspberry_jam.json b/src/main/generated/data/croptopia/recipe/raspberry_jam.json index 57abe4b90..33a793f86 100644 --- a/src/main/generated/data/croptopia/recipe/raspberry_jam.json +++ b/src/main/generated/data/croptopia/recipe/raspberry_jam.json @@ -2,15 +2,9 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:raspberries" - }, - { - "item": "minecraft:sugar" - }, - { - "item": "croptopia:cooking_pot" - } + "#${dependent}:raspberries", + "minecraft:sugar", + "croptopia:cooking_pot" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/raspberry_seed.json b/src/main/generated/data/croptopia/recipe/raspberry_seed.json index fca47f365..44a2fbd3a 100644 --- a/src/main/generated/data/croptopia/recipe/raspberry_seed.json +++ b/src/main/generated/data/croptopia/recipe/raspberry_seed.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:raspberries" - } + "#${dependent}:raspberries" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/rhubarb_pie.json b/src/main/generated/data/croptopia/recipe/rhubarb_pie.json index 8a64eab7a..28ce3e934 100644 --- a/src/main/generated/data/croptopia/recipe/rhubarb_pie.json +++ b/src/main/generated/data/croptopia/recipe/rhubarb_pie.json @@ -2,24 +2,12 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:rhubarb" - }, - { - "item": "minecraft:sugar" - }, - { - "item": "minecraft:egg" - }, - { - "tag": "${dependent}:flour" - }, - { - "tag": "${dependent}:doughs" - }, - { - "item": "croptopia:frying_pan" - } + "#${dependent}:rhubarb", + "minecraft:sugar", + "minecraft:egg", + "#${dependent}:flour", + "#${dependent}:doughs", + "croptopia:frying_pan" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/rhubarb_seed.json b/src/main/generated/data/croptopia/recipe/rhubarb_seed.json index 5b6db23ec..5dd69fa58 100644 --- a/src/main/generated/data/croptopia/recipe/rhubarb_seed.json +++ b/src/main/generated/data/croptopia/recipe/rhubarb_seed.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:rhubarb" - } + "#${dependent}:rhubarb" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/rice_seed.json b/src/main/generated/data/croptopia/recipe/rice_seed.json index add4509c9..da22a2cbf 100644 --- a/src/main/generated/data/croptopia/recipe/rice_seed.json +++ b/src/main/generated/data/croptopia/recipe/rice_seed.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:rice" - } + "#${dependent}:rice" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/roasted_pumpkin_seeds.json b/src/main/generated/data/croptopia/recipe/roasted_pumpkin_seeds.json index e72876008..33e6958b8 100644 --- a/src/main/generated/data/croptopia/recipe/roasted_pumpkin_seeds.json +++ b/src/main/generated/data/croptopia/recipe/roasted_pumpkin_seeds.json @@ -2,18 +2,10 @@ "type": "minecraft:crafting_shaped", "category": "misc", "key": { - "1": { - "item": "minecraft:pumpkin_seeds" - }, - "2": { - "tag": "${dependent}:salts" - }, - "3": { - "item": "croptopia:pepper" - }, - "4": { - "item": "croptopia:frying_pan" - } + "1": "minecraft:pumpkin_seeds", + "2": "#${dependent}:salts", + "3": "croptopia:pepper", + "4": "croptopia:frying_pan" }, "pattern": [ "123", diff --git a/src/main/generated/data/croptopia/recipe/roasted_sunflower_seeds.json b/src/main/generated/data/croptopia/recipe/roasted_sunflower_seeds.json index d154ea1e4..6bfe2a6d3 100644 --- a/src/main/generated/data/croptopia/recipe/roasted_sunflower_seeds.json +++ b/src/main/generated/data/croptopia/recipe/roasted_sunflower_seeds.json @@ -2,18 +2,10 @@ "type": "minecraft:crafting_shaped", "category": "misc", "key": { - "1": { - "item": "minecraft:sunflower" - }, - "2": { - "tag": "${dependent}:salts" - }, - "3": { - "item": "croptopia:pepper" - }, - "4": { - "item": "croptopia:frying_pan" - } + "1": "minecraft:sunflower", + "2": "#${dependent}:salts", + "3": "croptopia:pepper", + "4": "croptopia:frying_pan" }, "pattern": [ "123", diff --git a/src/main/generated/data/croptopia/recipe/rutabaga_seed.json b/src/main/generated/data/croptopia/recipe/rutabaga_seed.json index 4844c1ea4..0ee19afb2 100644 --- a/src/main/generated/data/croptopia/recipe/rutabaga_seed.json +++ b/src/main/generated/data/croptopia/recipe/rutabaga_seed.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:rutabagas" - } + "#${dependent}:rutabagas" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/saguaro_juice.json b/src/main/generated/data/croptopia/recipe/saguaro_juice.json index 61df9af84..ca276f914 100644 --- a/src/main/generated/data/croptopia/recipe/saguaro_juice.json +++ b/src/main/generated/data/croptopia/recipe/saguaro_juice.json @@ -2,15 +2,9 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:saguaros" - }, - { - "item": "croptopia:food_press" - }, - { - "item": "minecraft:glass_bottle" - } + "#${dependent}:saguaros", + "croptopia:food_press", + "minecraft:glass_bottle" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/saguaro_seed.json b/src/main/generated/data/croptopia/recipe/saguaro_seed.json index 53988c740..8ba2f7df2 100644 --- a/src/main/generated/data/croptopia/recipe/saguaro_seed.json +++ b/src/main/generated/data/croptopia/recipe/saguaro_seed.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:saguaros" - } + "#${dependent}:saguaros" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/salt_from_smoking_water_bottle.json b/src/main/generated/data/croptopia/recipe/salt_from_smoking_water_bottle.json index 51220db2a..233a8183e 100644 --- a/src/main/generated/data/croptopia/recipe/salt_from_smoking_water_bottle.json +++ b/src/main/generated/data/croptopia/recipe/salt_from_smoking_water_bottle.json @@ -3,9 +3,7 @@ "category": "food", "cookingtime": 400, "experience": 0.1, - "ingredient": { - "item": "croptopia:water_bottle" - }, + "ingredient": "croptopia:water_bottle", "result": { "id": "croptopia:salt" } diff --git a/src/main/generated/data/croptopia/recipe/salt_from_water_bottle.json b/src/main/generated/data/croptopia/recipe/salt_from_water_bottle.json index deb2af4ed..32cfb5d82 100644 --- a/src/main/generated/data/croptopia/recipe/salt_from_water_bottle.json +++ b/src/main/generated/data/croptopia/recipe/salt_from_water_bottle.json @@ -3,9 +3,7 @@ "category": "misc", "cookingtime": 800, "experience": 0.1, - "ingredient": { - "item": "croptopia:water_bottle" - }, + "ingredient": "croptopia:water_bottle", "result": { "id": "croptopia:salt" } diff --git a/src/main/generated/data/croptopia/recipe/sausage.json b/src/main/generated/data/croptopia/recipe/sausage.json index 03ae6363f..a0822a8b2 100644 --- a/src/main/generated/data/croptopia/recipe/sausage.json +++ b/src/main/generated/data/croptopia/recipe/sausage.json @@ -2,15 +2,9 @@ "type": "minecraft:crafting_shaped", "category": "misc", "key": { - "1": { - "tag": "${dependent}:ground_pork" - }, - "2": { - "tag": "${dependent}:salts" - }, - "3": { - "tag": "${dependent}:paprika" - } + "1": "#${dependent}:ground_pork", + "2": "#${dependent}:salts", + "3": "#${dependent}:paprika" }, "pattern": [ "1", diff --git a/src/main/generated/data/croptopia/recipe/soybean_seed.json b/src/main/generated/data/croptopia/recipe/soybean_seed.json index 23710cfce..67e40fb30 100644 --- a/src/main/generated/data/croptopia/recipe/soybean_seed.json +++ b/src/main/generated/data/croptopia/recipe/soybean_seed.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:soybeans" - } + "#${dependent}:soybeans" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/spinach_seed.json b/src/main/generated/data/croptopia/recipe/spinach_seed.json index 50ad07bd7..f14cbc5a8 100644 --- a/src/main/generated/data/croptopia/recipe/spinach_seed.json +++ b/src/main/generated/data/croptopia/recipe/spinach_seed.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:spinach" - } + "#${dependent}:spinach" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/squash_seed.json b/src/main/generated/data/croptopia/recipe/squash_seed.json index 95ab3c802..bd298f434 100644 --- a/src/main/generated/data/croptopia/recipe/squash_seed.json +++ b/src/main/generated/data/croptopia/recipe/squash_seed.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:squashes" - } + "#${dependent}:squashes" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/starfruit_sapling.json b/src/main/generated/data/croptopia/recipe/starfruit_sapling.json index 30660634e..14f718670 100644 --- a/src/main/generated/data/croptopia/recipe/starfruit_sapling.json +++ b/src/main/generated/data/croptopia/recipe/starfruit_sapling.json @@ -2,15 +2,9 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:starfruits" - }, - { - "tag": "${dependent}:starfruits" - }, - { - "tag": "minecraft:saplings" - } + "#${dependent}:starfruits", + "#${dependent}:starfruits", + "#minecraft:saplings" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/steamed_clams.json b/src/main/generated/data/croptopia/recipe/steamed_clams.json index 31fb77a90..e79f974f7 100644 --- a/src/main/generated/data/croptopia/recipe/steamed_clams.json +++ b/src/main/generated/data/croptopia/recipe/steamed_clams.json @@ -2,24 +2,12 @@ "type": "minecraft:crafting_shaped", "category": "misc", "key": { - "1": { - "tag": "${dependent}:butters" - }, - "2": { - "tag": "${dependent}:garlic" - }, - "3": { - "tag": "${dependent}:salts" - }, - "4": { - "item": "croptopia:pepper" - }, - "5": { - "tag": "${dependent}:clams" - }, - "7": { - "item": "croptopia:frying_pan" - } + "1": "#${dependent}:butters", + "2": "#${dependent}:garlic", + "3": "#${dependent}:salts", + "4": "croptopia:pepper", + "5": "#${dependent}:clams", + "7": "croptopia:frying_pan" }, "pattern": [ "123", diff --git a/src/main/generated/data/croptopia/recipe/steamed_crab.json b/src/main/generated/data/croptopia/recipe/steamed_crab.json index af426deef..f77e44740 100644 --- a/src/main/generated/data/croptopia/recipe/steamed_crab.json +++ b/src/main/generated/data/croptopia/recipe/steamed_crab.json @@ -2,15 +2,9 @@ "type": "minecraft:crafting_shaped", "category": "misc", "key": { - "1": { - "tag": "${dependent}:crabs" - }, - "2": { - "tag": "${dependent}:water_bottles" - }, - "3": { - "item": "croptopia:cooking_pot" - } + "1": "#${dependent}:crabs", + "2": "#${dependent}:water_bottles", + "3": "croptopia:cooking_pot" }, "pattern": [ "1", diff --git a/src/main/generated/data/croptopia/recipe/strawberry_ice_cream.json b/src/main/generated/data/croptopia/recipe/strawberry_ice_cream.json index 9a794a79b..8c1f3b1d4 100644 --- a/src/main/generated/data/croptopia/recipe/strawberry_ice_cream.json +++ b/src/main/generated/data/croptopia/recipe/strawberry_ice_cream.json @@ -2,21 +2,11 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:strawberries" - }, - { - "item": "minecraft:sugar" - }, - { - "item": "minecraft:egg" - }, - { - "tag": "${dependent}:milks" - }, - { - "item": "croptopia:cooking_pot" - } + "#${dependent}:strawberries", + "minecraft:sugar", + "minecraft:egg", + "#${dependent}:milks", + "croptopia:cooking_pot" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/strawberry_jam.json b/src/main/generated/data/croptopia/recipe/strawberry_jam.json index b0e36eaac..d62799309 100644 --- a/src/main/generated/data/croptopia/recipe/strawberry_jam.json +++ b/src/main/generated/data/croptopia/recipe/strawberry_jam.json @@ -2,15 +2,9 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:strawberries" - }, - { - "item": "minecraft:sugar" - }, - { - "item": "croptopia:cooking_pot" - } + "#${dependent}:strawberries", + "minecraft:sugar", + "croptopia:cooking_pot" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/strawberry_seed.json b/src/main/generated/data/croptopia/recipe/strawberry_seed.json index 16caaa50d..442469f4c 100644 --- a/src/main/generated/data/croptopia/recipe/strawberry_seed.json +++ b/src/main/generated/data/croptopia/recipe/strawberry_seed.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:strawberries" - } + "#${dependent}:strawberries" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/strawberry_smoothie.json b/src/main/generated/data/croptopia/recipe/strawberry_smoothie.json index 591cf71f0..1bfe1d10f 100644 --- a/src/main/generated/data/croptopia/recipe/strawberry_smoothie.json +++ b/src/main/generated/data/croptopia/recipe/strawberry_smoothie.json @@ -2,18 +2,10 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:strawberries" - }, - { - "item": "minecraft:ice" - }, - { - "tag": "${dependent}:milks" - }, - { - "item": "minecraft:glass_bottle" - } + "#${dependent}:strawberries", + "minecraft:ice", + "#${dependent}:milks", + "minecraft:glass_bottle" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/stripped_cinnamon_wood.json b/src/main/generated/data/croptopia/recipe/stripped_cinnamon_wood.json index 3ef752a18..ec1dbce22 100644 --- a/src/main/generated/data/croptopia/recipe/stripped_cinnamon_wood.json +++ b/src/main/generated/data/croptopia/recipe/stripped_cinnamon_wood.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shaped", "category": "misc", "key": { - "#": { - "item": "croptopia:stripped_cinnamon_log" - } + "#": "croptopia:stripped_cinnamon_log" }, "pattern": [ "##", diff --git a/src/main/generated/data/croptopia/recipe/sunny_side_eggs.json b/src/main/generated/data/croptopia/recipe/sunny_side_eggs.json index 4be463bb6..67912a5be 100644 --- a/src/main/generated/data/croptopia/recipe/sunny_side_eggs.json +++ b/src/main/generated/data/croptopia/recipe/sunny_side_eggs.json @@ -2,12 +2,8 @@ "type": "minecraft:crafting_shaped", "category": "misc", "key": { - "1": { - "item": "minecraft:egg" - }, - "2": { - "item": "croptopia:frying_pan" - } + "1": "minecraft:egg", + "2": "croptopia:frying_pan" }, "pattern": [ "121" diff --git a/src/main/generated/data/croptopia/recipe/sweet_crepes.json b/src/main/generated/data/croptopia/recipe/sweet_crepes.json index 50f638868..6de5f8907 100644 --- a/src/main/generated/data/croptopia/recipe/sweet_crepes.json +++ b/src/main/generated/data/croptopia/recipe/sweet_crepes.json @@ -2,24 +2,12 @@ "type": "minecraft:crafting_shaped", "category": "misc", "key": { - "1": { - "tag": "${dependent}:flour" - }, - "2": { - "item": "minecraft:egg" - }, - "3": { - "tag": "${dependent}:milks" - }, - "4": { - "tag": "${dependent}:jams" - }, - "5": { - "item": "minecraft:sugar" - }, - "6": { - "item": "croptopia:frying_pan" - } + "1": "#${dependent}:flour", + "2": "minecraft:egg", + "3": "#${dependent}:milks", + "4": "#${dependent}:jams", + "5": "minecraft:sugar", + "6": "croptopia:frying_pan" }, "pattern": [ "123", diff --git a/src/main/generated/data/croptopia/recipe/sweetpotato_seed.json b/src/main/generated/data/croptopia/recipe/sweetpotato_seed.json index aa9227e54..18482ad01 100644 --- a/src/main/generated/data/croptopia/recipe/sweetpotato_seed.json +++ b/src/main/generated/data/croptopia/recipe/sweetpotato_seed.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:sweetpotatos" - } + "#${dependent}:sweetpotatos" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/tea_seed.json b/src/main/generated/data/croptopia/recipe/tea_seed.json index 557c4f893..da16040f3 100644 --- a/src/main/generated/data/croptopia/recipe/tea_seed.json +++ b/src/main/generated/data/croptopia/recipe/tea_seed.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:tea_leaves" - } + "#${dependent}:tea_leaves" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/the_big_breakfast.json b/src/main/generated/data/croptopia/recipe/the_big_breakfast.json index 4305e211b..ab1fb0003 100644 --- a/src/main/generated/data/croptopia/recipe/the_big_breakfast.json +++ b/src/main/generated/data/croptopia/recipe/the_big_breakfast.json @@ -2,27 +2,13 @@ "type": "minecraft:crafting_shaped", "category": "misc", "key": { - "1": { - "item": "minecraft:egg" - }, - "2": { - "item": "croptopia:bacon" - }, - "3": { - "item": "croptopia:hashed_brown" - }, - "4": { - "item": "croptopia:baked_beans" - }, - "5": { - "tag": "${dependent}:sausages" - }, - "6": { - "item": "croptopia:toast" - }, - "7": { - "item": "croptopia:frying_pan" - } + "1": "minecraft:egg", + "2": "croptopia:bacon", + "3": "croptopia:hashed_brown", + "4": "croptopia:baked_beans", + "5": "#${dependent}:sausages", + "6": "croptopia:toast", + "7": "croptopia:frying_pan" }, "pattern": [ "123", diff --git a/src/main/generated/data/croptopia/recipe/toast_from_bread.json b/src/main/generated/data/croptopia/recipe/toast_from_bread.json index eb06d998c..8c223b654 100644 --- a/src/main/generated/data/croptopia/recipe/toast_from_bread.json +++ b/src/main/generated/data/croptopia/recipe/toast_from_bread.json @@ -3,9 +3,7 @@ "category": "food", "cookingtime": 200, "experience": 0.2, - "ingredient": { - "item": "minecraft:bread" - }, + "ingredient": "minecraft:bread", "result": { "id": "croptopia:toast" } diff --git a/src/main/generated/data/croptopia/recipe/toast_from_smoking_bread.json b/src/main/generated/data/croptopia/recipe/toast_from_smoking_bread.json index 214d10178..6b00cc3b4 100644 --- a/src/main/generated/data/croptopia/recipe/toast_from_smoking_bread.json +++ b/src/main/generated/data/croptopia/recipe/toast_from_smoking_bread.json @@ -3,9 +3,7 @@ "category": "food", "cookingtime": 100, "experience": 0.2, - "ingredient": { - "item": "minecraft:bread" - }, + "ingredient": "minecraft:bread", "result": { "id": "croptopia:toast" } diff --git a/src/main/generated/data/croptopia/recipe/tomatillo_seed.json b/src/main/generated/data/croptopia/recipe/tomatillo_seed.json index c9aa7959a..3134e3096 100644 --- a/src/main/generated/data/croptopia/recipe/tomatillo_seed.json +++ b/src/main/generated/data/croptopia/recipe/tomatillo_seed.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:tomatillos" - } + "#${dependent}:tomatillos" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/tomato_juice.json b/src/main/generated/data/croptopia/recipe/tomato_juice.json index a3f8dc800..cf43df639 100644 --- a/src/main/generated/data/croptopia/recipe/tomato_juice.json +++ b/src/main/generated/data/croptopia/recipe/tomato_juice.json @@ -2,15 +2,9 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:tomatoes" - }, - { - "item": "croptopia:food_press" - }, - { - "item": "minecraft:glass_bottle" - } + "#${dependent}:tomatoes", + "croptopia:food_press", + "minecraft:glass_bottle" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/tomato_seed.json b/src/main/generated/data/croptopia/recipe/tomato_seed.json index d9ccb64e1..0d90831f8 100644 --- a/src/main/generated/data/croptopia/recipe/tomato_seed.json +++ b/src/main/generated/data/croptopia/recipe/tomato_seed.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:tomatoes" - } + "#${dependent}:tomatoes" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/tortilla.json b/src/main/generated/data/croptopia/recipe/tortilla.json index c5c658ae7..134abd9bf 100644 --- a/src/main/generated/data/croptopia/recipe/tortilla.json +++ b/src/main/generated/data/croptopia/recipe/tortilla.json @@ -2,15 +2,9 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:flour" - }, - { - "item": "croptopia:frying_pan" - }, - { - "tag": "${dependent}:water_bottles" - } + "#${dependent}:flour", + "croptopia:frying_pan", + "#${dependent}:water_bottles" ], "result": { "count": 2, diff --git a/src/main/generated/data/croptopia/recipe/tuna_roll.json b/src/main/generated/data/croptopia/recipe/tuna_roll.json index 881c1e039..a28db787a 100644 --- a/src/main/generated/data/croptopia/recipe/tuna_roll.json +++ b/src/main/generated/data/croptopia/recipe/tuna_roll.json @@ -2,18 +2,10 @@ "type": "minecraft:crafting_shaped", "category": "misc", "key": { - "1": { - "tag": "${dependent}:tuna" - }, - "2": { - "item": "minecraft:dried_kelp" - }, - "3": { - "tag": "${dependent}:rice" - }, - "4": { - "tag": "${dependent}:onions" - } + "1": "#${dependent}:tuna", + "2": "minecraft:dried_kelp", + "3": "#${dependent}:rice", + "4": "#${dependent}:onions" }, "pattern": [ "234", diff --git a/src/main/generated/data/croptopia/recipe/turmeric_seed.json b/src/main/generated/data/croptopia/recipe/turmeric_seed.json index 9fd88c677..d1b6ee53d 100644 --- a/src/main/generated/data/croptopia/recipe/turmeric_seed.json +++ b/src/main/generated/data/croptopia/recipe/turmeric_seed.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:turmeric" - } + "#${dependent}:turmeric" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/turnip_seed.json b/src/main/generated/data/croptopia/recipe/turnip_seed.json index e6cbdba57..cacae1da1 100644 --- a/src/main/generated/data/croptopia/recipe/turnip_seed.json +++ b/src/main/generated/data/croptopia/recipe/turnip_seed.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:turnips" - } + "#${dependent}:turnips" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/vanilla_ice_cream.json b/src/main/generated/data/croptopia/recipe/vanilla_ice_cream.json index 55b05190a..f823bf790 100644 --- a/src/main/generated/data/croptopia/recipe/vanilla_ice_cream.json +++ b/src/main/generated/data/croptopia/recipe/vanilla_ice_cream.json @@ -2,21 +2,11 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:vanilla" - }, - { - "item": "minecraft:sugar" - }, - { - "item": "minecraft:egg" - }, - { - "tag": "${dependent}:milks" - }, - { - "item": "croptopia:cooking_pot" - } + "#${dependent}:vanilla", + "minecraft:sugar", + "minecraft:egg", + "#${dependent}:milks", + "croptopia:cooking_pot" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/vanilla_seeds.json b/src/main/generated/data/croptopia/recipe/vanilla_seeds.json index c67bfc372..e78d49291 100644 --- a/src/main/generated/data/croptopia/recipe/vanilla_seeds.json +++ b/src/main/generated/data/croptopia/recipe/vanilla_seeds.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:vanilla" - } + "#${dependent}:vanilla" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/walnut_sapling.json b/src/main/generated/data/croptopia/recipe/walnut_sapling.json index 29782ad87..4d8669580 100644 --- a/src/main/generated/data/croptopia/recipe/walnut_sapling.json +++ b/src/main/generated/data/croptopia/recipe/walnut_sapling.json @@ -2,15 +2,9 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:walnuts" - }, - { - "tag": "${dependent}:walnuts" - }, - { - "tag": "minecraft:saplings" - } + "#${dependent}:walnuts", + "#${dependent}:walnuts", + "#minecraft:saplings" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/yam_seed.json b/src/main/generated/data/croptopia/recipe/yam_seed.json index 2c9fd38b7..5145ec0d1 100644 --- a/src/main/generated/data/croptopia/recipe/yam_seed.json +++ b/src/main/generated/data/croptopia/recipe/yam_seed.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:yams" - } + "#${dependent}:yams" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/recipe/zucchini_seed.json b/src/main/generated/data/croptopia/recipe/zucchini_seed.json index 4dbca3d6e..c8a4e01ed 100644 --- a/src/main/generated/data/croptopia/recipe/zucchini_seed.json +++ b/src/main/generated/data/croptopia/recipe/zucchini_seed.json @@ -2,9 +2,7 @@ "type": "minecraft:crafting_shapeless", "category": "misc", "ingredients": [ - { - "tag": "${dependent}:zucchini" - } + "#${dependent}:zucchini" ], "result": { "count": 1, diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/artichoke.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/artichoke.json deleted file mode 100644 index f928fe07f..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/artichoke.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:swamp", - { - "id": "byg:bayou", - "required": false - }, - { - "id": "byg:cypress_swamplands", - "required": false - }, - { - "id": "byg:white_mangrove_marshes", - "required": false - }, - { - "id": "terralith:mirage_isles", - "required": false - }, - { - "id": "terralith:orchid_swamp", - "required": false - }, - { - "id": "biomesoplenty:marsh", - "required": false - }, - { - "id": "biomesoplenty:bayou", - "required": false - }, - { - "id": "biomesoplenty:bog", - "required": false - } - ] -} diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/asparagus.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/asparagus.json deleted file mode 100644 index de007449f..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/asparagus.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:swamp", - { - "id": "terralith:mirage_isles", - "required": false - }, - { - "id": "terralith:orchid_swamp", - "required": false - }, - { - "id": "biomesoplenty:marsh", - "required": false - }, - { - "id": "biomesoplenty:bayou", - "required": false - }, - { - "id": "biomesoplenty:bog", - "required": false - } - ] -} diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/barley.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/barley.json deleted file mode 100644 index 934925321..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/barley.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:plains", - "minecraft:sunflower_plains", - "minecraft:old_growth_pine_taiga", - "minecraft:old_growth_spruce_taiga", - "minecraft:taiga", - "minecraft:snowy_taiga", - { - "id": "terralith:blooming_plateau", - "required": false - }, - { - "id": "terralith:blooming_valley", - "required": false - }, - { - "id": "terralith:highlands", - "required": false - }, - { - "id": "terralith:steppe", - "required": false - }, - { - "id": "terralith:valley_clearing", - "required": false - }, - { - "id": "biomesoplenty:bog", - "required": false - }, - { - "id": "biomesoplenty:coniferous_forest", - "required": false - }, - { - "id": "biomesoplenty:field", - "required": false - }, - { - "id": "biomesoplenty:fir_cleaning", - "required": false - }, - { - "id": "biomesoplenty:maple_woods", - "required": false - }, - { - "id": "biomesoplenty:tundra", - "required": false - } - ] -} diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/basil.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/basil.json deleted file mode 100644 index 42750a1bd..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/basil.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:jungle", - "minecraft:sparse_jungle", - "minecraft:bamboo_jungle", - { - "id": "terralith:jungle_mountains", - "required": false - }, - { - "id": "terralith:rocky_jungle", - "required": false - }, - { - "id": "terralith:tropical_jungle", - "required": false - }, - { - "id": "biomesoplenty:floodplain", - "required": false - }, - { - "id": "biomesoplenty:fungal_jungle", - "required": false - }, - { - "id": "biomesoplenty:rainforest", - "required": false - }, - { - "id": "biomesoplenty:rocky_rainforest", - "required": false - } - ] -} diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/bellpepper.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/bellpepper.json deleted file mode 100644 index edb5fb9b7..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/bellpepper.json +++ /dev/null @@ -1,51 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:plains", - "minecraft:sunflower_plains", - { - "id": "terralith:blooming_plateau", - "required": false - }, - { - "id": "terralith:blooming_valley", - "required": false - }, - { - "id": "terralith:highlands", - "required": false - }, - { - "id": "terralith:steppe", - "required": false - }, - { - "id": "terralith:valley_clearing", - "required": false - }, - { - "id": "biomesoplenty:bog", - "required": false - }, - { - "id": "biomesoplenty:coniferous_forest", - "required": false - }, - { - "id": "biomesoplenty:field", - "required": false - }, - { - "id": "biomesoplenty:fir_cleaning", - "required": false - }, - { - "id": "biomesoplenty:maple_woods", - "required": false - }, - { - "id": "biomesoplenty:tundra", - "required": false - } - ] -} diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/blackbean.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/blackbean.json deleted file mode 100644 index 55c74c58c..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/blackbean.json +++ /dev/null @@ -1,103 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:forest", - "minecraft:flower_forest", - "minecraft:birch_forest", - "minecraft:dark_forest", - "minecraft:old_growth_birch_forest", - "minecraft:grove", - { - "id": "terralith:birch_taiga", - "required": false - }, - { - "id": "terralith:cloud_forest", - "required": false - }, - { - "id": "terralith:lavender_forest", - "required": false - }, - { - "id": "terralith:lavender_valley", - "required": false - }, - { - "id": "terralith:moonlight_grove", - "required": false - }, - { - "id": "terralith:moonlight_valley", - "required": false - }, - { - "id": "terralith:temperate_highlands", - "required": false - }, - { - "id": "biomesoplenty:bog", - "required": false - }, - { - "id": "biomesoplenty:coniferous_forest", - "required": false - }, - { - "id": "biomesoplenty:field", - "required": false - }, - { - "id": "biomesoplenty:fir_cleaning", - "required": false - }, - { - "id": "biomesoplenty:maple_woods", - "required": false - }, - { - "id": "biomesoplenty:tundra", - "required": false - }, - { - "id": "biomesoplenty:bamboo_grove", - "required": false - }, - { - "id": "biomesoplenty:cherry_blossom_grove", - "required": false - }, - { - "id": "biomesoplenty:mediterranean_forest", - "required": false - }, - { - "id": "biomesoplenty:mystic_grove", - "required": false - }, - { - "id": "biomesoplenty:orchard", - "required": false - }, - { - "id": "biomesoplenty:pumpkin_patch", - "required": false - }, - { - "id": "biomesoplenty:redwood_forest", - "required": false - }, - { - "id": "biomesoplenty:seasonal_forest", - "required": false - }, - { - "id": "biomesoplenty:seasonal_orchard", - "required": false - }, - { - "id": "biomesoplenty:woodland", - "required": false - } - ] -} diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/blackberry.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/blackberry.json deleted file mode 100644 index 144f9563e..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/blackberry.json +++ /dev/null @@ -1,223 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:forest", - "minecraft:flower_forest", - "minecraft:birch_forest", - "minecraft:dark_forest", - "minecraft:old_growth_birch_forest", - "minecraft:old_growth_pine_taiga", - "minecraft:old_growth_spruce_taiga", - "minecraft:taiga", - "minecraft:snowy_taiga", - "minecraft:grove", - { - "id": "byg:aspen_forest", - "required": false - }, - { - "id": "byg:black_forest", - "required": false - }, - { - "id": "byg:borealis_grove", - "required": false - }, - { - "id": "byg:cherry_blossom_forest", - "required": false - }, - { - "id": "byg:cika_woods", - "required": false - }, - { - "id": "byg:coniferous_forest", - "required": false - }, - { - "id": "byg:ebony_woods", - "required": false - }, - { - "id": "byg:forgotten_forest", - "required": false - }, - { - "id": "byg:maple_taiga", - "required": false - }, - { - "id": "byg:red_oak_forest", - "required": false - }, - { - "id": "byg:autumnal_forest", - "required": false - }, - { - "id": "byg:autumnal_taiga", - "required": false - }, - { - "id": "byg:redwood_thicket", - "required": false - }, - { - "id": "byg:frosted_taiga", - "required": false - }, - { - "id": "byg:frosted_coniferous_forest", - "required": false - }, - { - "id": "byg:fragment_forest", - "required": false - }, - { - "id": "byg:twilight_meadow", - "required": false - }, - { - "id": "byg:weeping_witch_forest", - "required": false - }, - { - "id": "byg:temperate_rainforest", - "required": false - }, - { - "id": "byg:zelkova_forest", - "required": false - }, - { - "id": "terralith:alpine_grove", - "required": false - }, - { - "id": "terralith:alpine_highlands", - "required": false - }, - { - "id": "terralith:birch_taiga", - "required": false - }, - { - "id": "terralith:cloud_forest", - "required": false - }, - { - "id": "terralith:forested_highlands", - "required": false - }, - { - "id": "terralith:lavender_forest", - "required": false - }, - { - "id": "terralith:lavender_valley", - "required": false - }, - { - "id": "terralith:lush_valley", - "required": false - }, - { - "id": "terralith:moonlight_grove", - "required": false - }, - { - "id": "terralith:moonlight_valley", - "required": false - }, - { - "id": "terralith:siberian_grove", - "required": false - }, - { - "id": "terralith:siberian_taiga", - "required": false - }, - { - "id": "terralith:snowy_maple_forest", - "required": false - }, - { - "id": "terralith:snowy_shield", - "required": false - }, - { - "id": "terralith:temperate_highlands", - "required": false - }, - { - "id": "terralith:yosemite_lowlands", - "required": false - }, - { - "id": "biomesoplenty:bamboo_grove", - "required": false - }, - { - "id": "biomesoplenty:cherry_blossom_grove", - "required": false - }, - { - "id": "biomesoplenty:mediterranean_forest", - "required": false - }, - { - "id": "biomesoplenty:mystic_grove", - "required": false - }, - { - "id": "biomesoplenty:orchard", - "required": false - }, - { - "id": "biomesoplenty:pumpkin_patch", - "required": false - }, - { - "id": "biomesoplenty:redwood_forest", - "required": false - }, - { - "id": "biomesoplenty:seasonal_forest", - "required": false - }, - { - "id": "biomesoplenty:seasonal_orchard", - "required": false - }, - { - "id": "biomesoplenty:woodland", - "required": false - }, - { - "id": "biomesoplenty:bog", - "required": false - }, - { - "id": "biomesoplenty:coniferous_forest", - "required": false - }, - { - "id": "biomesoplenty:field", - "required": false - }, - { - "id": "biomesoplenty:fir_cleaning", - "required": false - }, - { - "id": "biomesoplenty:maple_woods", - "required": false - }, - { - "id": "biomesoplenty:tundra", - "required": false - } - ] -} diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/blueberry.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/blueberry.json deleted file mode 100644 index ddb437466..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/blueberry.json +++ /dev/null @@ -1,111 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:forest", - "minecraft:flower_forest", - "minecraft:birch_forest", - "minecraft:dark_forest", - "minecraft:old_growth_birch_forest", - "minecraft:old_growth_pine_taiga", - "minecraft:old_growth_spruce_taiga", - "minecraft:taiga", - "minecraft:snowy_taiga", - "minecraft:grove", - { - "id": "terralith:alpine_highlands", - "required": false - }, - { - "id": "terralith:birch_taiga", - "required": false - }, - { - "id": "terralith:cloud_forest", - "required": false - }, - { - "id": "terralith:lavender_forest", - "required": false - }, - { - "id": "terralith:lavender_valley", - "required": false - }, - { - "id": "terralith:moonlight_grove", - "required": false - }, - { - "id": "terralith:moonlight_valley", - "required": false - }, - { - "id": "terralith:temperate_highlands", - "required": false - }, - { - "id": "biomesoplenty:bog", - "required": false - }, - { - "id": "biomesoplenty:coniferous_forest", - "required": false - }, - { - "id": "biomesoplenty:field", - "required": false - }, - { - "id": "biomesoplenty:fir_cleaning", - "required": false - }, - { - "id": "biomesoplenty:maple_woods", - "required": false - }, - { - "id": "biomesoplenty:tundra", - "required": false - }, - { - "id": "biomesoplenty:bamboo_grove", - "required": false - }, - { - "id": "biomesoplenty:cherry_blossom_grove", - "required": false - }, - { - "id": "biomesoplenty:mediterranean_forest", - "required": false - }, - { - "id": "biomesoplenty:mystic_grove", - "required": false - }, - { - "id": "biomesoplenty:orchard", - "required": false - }, - { - "id": "biomesoplenty:pumpkin_patch", - "required": false - }, - { - "id": "biomesoplenty:redwood_forest", - "required": false - }, - { - "id": "biomesoplenty:seasonal_forest", - "required": false - }, - { - "id": "biomesoplenty:seasonal_orchard", - "required": false - }, - { - "id": "biomesoplenty:woodland", - "required": false - } - ] -} diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/broccoli.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/broccoli.json deleted file mode 100644 index edb5fb9b7..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/broccoli.json +++ /dev/null @@ -1,51 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:plains", - "minecraft:sunflower_plains", - { - "id": "terralith:blooming_plateau", - "required": false - }, - { - "id": "terralith:blooming_valley", - "required": false - }, - { - "id": "terralith:highlands", - "required": false - }, - { - "id": "terralith:steppe", - "required": false - }, - { - "id": "terralith:valley_clearing", - "required": false - }, - { - "id": "biomesoplenty:bog", - "required": false - }, - { - "id": "biomesoplenty:coniferous_forest", - "required": false - }, - { - "id": "biomesoplenty:field", - "required": false - }, - { - "id": "biomesoplenty:fir_cleaning", - "required": false - }, - { - "id": "biomesoplenty:maple_woods", - "required": false - }, - { - "id": "biomesoplenty:tundra", - "required": false - } - ] -} diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/cabbage.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/cabbage.json deleted file mode 100644 index edb5fb9b7..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/cabbage.json +++ /dev/null @@ -1,51 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:plains", - "minecraft:sunflower_plains", - { - "id": "terralith:blooming_plateau", - "required": false - }, - { - "id": "terralith:blooming_valley", - "required": false - }, - { - "id": "terralith:highlands", - "required": false - }, - { - "id": "terralith:steppe", - "required": false - }, - { - "id": "terralith:valley_clearing", - "required": false - }, - { - "id": "biomesoplenty:bog", - "required": false - }, - { - "id": "biomesoplenty:coniferous_forest", - "required": false - }, - { - "id": "biomesoplenty:field", - "required": false - }, - { - "id": "biomesoplenty:fir_cleaning", - "required": false - }, - { - "id": "biomesoplenty:maple_woods", - "required": false - }, - { - "id": "biomesoplenty:tundra", - "required": false - } - ] -} diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/cantaloupe.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/cantaloupe.json deleted file mode 100644 index 05536c725..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/cantaloupe.json +++ /dev/null @@ -1,131 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:forest", - "minecraft:flower_forest", - "minecraft:birch_forest", - "minecraft:dark_forest", - "minecraft:old_growth_birch_forest", - "minecraft:grove", - { - "id": "byg:aspen_forest", - "required": false - }, - { - "id": "byg:borealis_grove", - "required": false - }, - { - "id": "byg:cherry_blossom_forest", - "required": false - }, - { - "id": "byg:cika_woods", - "required": false - }, - { - "id": "byg:ebony_woods", - "required": false - }, - { - "id": "byg:forgotten_forest", - "required": false - }, - { - "id": "byg:red_oak_forest", - "required": false - }, - { - "id": "byg:autumnal_forest", - "required": false - }, - { - "id": "byg:redwood_thicket", - "required": false - }, - { - "id": "byg:fragment_forest", - "required": false - }, - { - "id": "byg:twilight_meadow", - "required": false - }, - { - "id": "byg:weeping_witch_forest", - "required": false - }, - { - "id": "byg:temperate_rainforest", - "required": false - }, - { - "id": "terralith:birch_taiga", - "required": false - }, - { - "id": "terralith:cloud_forest", - "required": false - }, - { - "id": "terralith:lavender_forest", - "required": false - }, - { - "id": "terralith:lavender_valley", - "required": false - }, - { - "id": "terralith:moonlight_grove", - "required": false - }, - { - "id": "terralith:moonlight_valley", - "required": false - }, - { - "id": "terralith:temperate_highlands", - "required": false - }, - { - "id": "biomesoplenty:bamboo_grove", - "required": false - }, - { - "id": "biomesoplenty:cherry_blossom_grove", - "required": false - }, - { - "id": "biomesoplenty:mediterranean_forest", - "required": false - }, - { - "id": "biomesoplenty:mystic_grove", - "required": false - }, - { - "id": "biomesoplenty:orchard", - "required": false - }, - { - "id": "biomesoplenty:pumpkin_patch", - "required": false - }, - { - "id": "biomesoplenty:redwood_forest", - "required": false - }, - { - "id": "biomesoplenty:seasonal_forest", - "required": false - }, - { - "id": "biomesoplenty:seasonal_orchard", - "required": false - }, - { - "id": "biomesoplenty:woodland", - "required": false - } - ] -} diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/cauliflower.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/cauliflower.json deleted file mode 100644 index 09c84a314..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/cauliflower.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:forest", - "minecraft:flower_forest", - "minecraft:birch_forest", - "minecraft:dark_forest", - "minecraft:old_growth_birch_forest", - "minecraft:grove", - { - "id": "terralith:birch_taiga", - "required": false - }, - { - "id": "terralith:cloud_forest", - "required": false - }, - { - "id": "terralith:lavender_forest", - "required": false - }, - { - "id": "terralith:lavender_valley", - "required": false - }, - { - "id": "terralith:moonlight_grove", - "required": false - }, - { - "id": "terralith:moonlight_valley", - "required": false - }, - { - "id": "terralith:temperate_highlands", - "required": false - }, - { - "id": "biomesoplenty:bamboo_grove", - "required": false - }, - { - "id": "biomesoplenty:cherry_blossom_grove", - "required": false - }, - { - "id": "biomesoplenty:mediterranean_forest", - "required": false - }, - { - "id": "biomesoplenty:mystic_grove", - "required": false - }, - { - "id": "biomesoplenty:orchard", - "required": false - }, - { - "id": "biomesoplenty:pumpkin_patch", - "required": false - }, - { - "id": "biomesoplenty:redwood_forest", - "required": false - }, - { - "id": "biomesoplenty:seasonal_forest", - "required": false - }, - { - "id": "biomesoplenty:seasonal_orchard", - "required": false - }, - { - "id": "biomesoplenty:woodland", - "required": false - } - ] -} diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/celery.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/celery.json deleted file mode 100644 index 05536c725..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/celery.json +++ /dev/null @@ -1,131 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:forest", - "minecraft:flower_forest", - "minecraft:birch_forest", - "minecraft:dark_forest", - "minecraft:old_growth_birch_forest", - "minecraft:grove", - { - "id": "byg:aspen_forest", - "required": false - }, - { - "id": "byg:borealis_grove", - "required": false - }, - { - "id": "byg:cherry_blossom_forest", - "required": false - }, - { - "id": "byg:cika_woods", - "required": false - }, - { - "id": "byg:ebony_woods", - "required": false - }, - { - "id": "byg:forgotten_forest", - "required": false - }, - { - "id": "byg:red_oak_forest", - "required": false - }, - { - "id": "byg:autumnal_forest", - "required": false - }, - { - "id": "byg:redwood_thicket", - "required": false - }, - { - "id": "byg:fragment_forest", - "required": false - }, - { - "id": "byg:twilight_meadow", - "required": false - }, - { - "id": "byg:weeping_witch_forest", - "required": false - }, - { - "id": "byg:temperate_rainforest", - "required": false - }, - { - "id": "terralith:birch_taiga", - "required": false - }, - { - "id": "terralith:cloud_forest", - "required": false - }, - { - "id": "terralith:lavender_forest", - "required": false - }, - { - "id": "terralith:lavender_valley", - "required": false - }, - { - "id": "terralith:moonlight_grove", - "required": false - }, - { - "id": "terralith:moonlight_valley", - "required": false - }, - { - "id": "terralith:temperate_highlands", - "required": false - }, - { - "id": "biomesoplenty:bamboo_grove", - "required": false - }, - { - "id": "biomesoplenty:cherry_blossom_grove", - "required": false - }, - { - "id": "biomesoplenty:mediterranean_forest", - "required": false - }, - { - "id": "biomesoplenty:mystic_grove", - "required": false - }, - { - "id": "biomesoplenty:orchard", - "required": false - }, - { - "id": "biomesoplenty:pumpkin_patch", - "required": false - }, - { - "id": "biomesoplenty:redwood_forest", - "required": false - }, - { - "id": "biomesoplenty:seasonal_forest", - "required": false - }, - { - "id": "biomesoplenty:seasonal_orchard", - "required": false - }, - { - "id": "biomesoplenty:woodland", - "required": false - } - ] -} diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/chile_pepper.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/chile_pepper.json deleted file mode 100644 index 5e8bf0aec..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/chile_pepper.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:plains", - "minecraft:sunflower_plains", - { - "id": "biomesoplenty:bog", - "required": false - }, - { - "id": "biomesoplenty:coniferous_forest", - "required": false - }, - { - "id": "biomesoplenty:field", - "required": false - }, - { - "id": "biomesoplenty:fir_cleaning", - "required": false - }, - { - "id": "biomesoplenty:maple_woods", - "required": false - }, - { - "id": "biomesoplenty:tundra", - "required": false - } - ] -} \ No newline at end of file diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/coffee_beans.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/coffee_beans.json deleted file mode 100644 index 42750a1bd..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/coffee_beans.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:jungle", - "minecraft:sparse_jungle", - "minecraft:bamboo_jungle", - { - "id": "terralith:jungle_mountains", - "required": false - }, - { - "id": "terralith:rocky_jungle", - "required": false - }, - { - "id": "terralith:tropical_jungle", - "required": false - }, - { - "id": "biomesoplenty:floodplain", - "required": false - }, - { - "id": "biomesoplenty:fungal_jungle", - "required": false - }, - { - "id": "biomesoplenty:rainforest", - "required": false - }, - { - "id": "biomesoplenty:rocky_rainforest", - "required": false - } - ] -} diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/corn.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/corn.json deleted file mode 100644 index 712e7a644..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/corn.json +++ /dev/null @@ -1,123 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:plains", - "minecraft:sunflower_plains", - { - "id": "byg:allium_fields", - "required": false - }, - { - "id": "byg:amaranth_fields", - "required": false - }, - { - "id": "byg:autumnal_valley", - "required": false - }, - { - "id": "byg:temperate_grove", - "required": false - }, - { - "id": "byg:coconino_meadow", - "required": false - }, - { - "id": "byg:orchard", - "required": false - }, - { - "id": "byg:prairie", - "required": false - }, - { - "id": "byg:rose_fields", - "required": false - }, - { - "id": "byg:sierra_badlands", - "required": false - }, - { - "id": "terralith:blooming_plateau", - "required": false - }, - { - "id": "terralith:blooming_valley", - "required": false - }, - { - "id": "terralith:cold_shrubland", - "required": false - }, - { - "id": "terralith:highlands", - "required": false - }, - { - "id": "terralith:rocky_mountains", - "required": false - }, - { - "id": "terralith:sakura_grove", - "required": false - }, - { - "id": "terralith:sakura_valley", - "required": false - }, - { - "id": "terralith:scarlet_mountains", - "required": false - }, - { - "id": "terralith:shield", - "required": false - }, - { - "id": "terralith:shrubland", - "required": false - }, - { - "id": "terralith:steppe", - "required": false - }, - { - "id": "terralith:valley_clearing", - "required": false - }, - { - "id": "terralith:wintry_forest", - "required": false - }, - { - "id": "terralith:wintry_lowlands", - "required": false - }, - { - "id": "biomesoplenty:bog", - "required": false - }, - { - "id": "biomesoplenty:coniferous_forest", - "required": false - }, - { - "id": "biomesoplenty:field", - "required": false - }, - { - "id": "biomesoplenty:fir_cleaning", - "required": false - }, - { - "id": "biomesoplenty:maple_woods", - "required": false - }, - { - "id": "biomesoplenty:tundra", - "required": false - } - ] -} diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/cranberry.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/cranberry.json deleted file mode 100644 index de007449f..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/cranberry.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:swamp", - { - "id": "terralith:mirage_isles", - "required": false - }, - { - "id": "terralith:orchid_swamp", - "required": false - }, - { - "id": "biomesoplenty:marsh", - "required": false - }, - { - "id": "biomesoplenty:bayou", - "required": false - }, - { - "id": "biomesoplenty:bog", - "required": false - } - ] -} diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/cucumber.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/cucumber.json deleted file mode 100644 index 588348169..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/cucumber.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:plains", - "minecraft:sunflower_plains", - { - "id": "byg:allium_fields", - "required": false - }, - { - "id": "byg:amaranth_fields", - "required": false - }, - { - "id": "byg:autumnal_valley", - "required": false - }, - { - "id": "byg:temperate_grove", - "required": false - }, - { - "id": "byg:coconino_meadow", - "required": false - }, - { - "id": "byg:orchard", - "required": false - }, - { - "id": "byg:prairie", - "required": false - }, - { - "id": "byg:rose_fields", - "required": false - }, - { - "id": "byg:sierra_badlands", - "required": false - }, - { - "id": "terralith:blooming_plateau", - "required": false - }, - { - "id": "terralith:blooming_valley", - "required": false - }, - { - "id": "terralith:highlands", - "required": false - }, - { - "id": "terralith:steppe", - "required": false - }, - { - "id": "terralith:valley_clearing", - "required": false - }, - { - "id": "biomesoplenty:bog", - "required": false - }, - { - "id": "biomesoplenty:coniferous_forest", - "required": false - }, - { - "id": "biomesoplenty:field", - "required": false - }, - { - "id": "biomesoplenty:fir_cleaning", - "required": false - }, - { - "id": "biomesoplenty:maple_woods", - "required": false - }, - { - "id": "biomesoplenty:tundra", - "required": false - } - ] -} diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/currant.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/currant.json deleted file mode 100644 index de007449f..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/currant.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:swamp", - { - "id": "terralith:mirage_isles", - "required": false - }, - { - "id": "terralith:orchid_swamp", - "required": false - }, - { - "id": "biomesoplenty:marsh", - "required": false - }, - { - "id": "biomesoplenty:bayou", - "required": false - }, - { - "id": "biomesoplenty:bog", - "required": false - } - ] -} diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/eggplant.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/eggplant.json deleted file mode 100644 index 42750a1bd..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/eggplant.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:jungle", - "minecraft:sparse_jungle", - "minecraft:bamboo_jungle", - { - "id": "terralith:jungle_mountains", - "required": false - }, - { - "id": "terralith:rocky_jungle", - "required": false - }, - { - "id": "terralith:tropical_jungle", - "required": false - }, - { - "id": "biomesoplenty:floodplain", - "required": false - }, - { - "id": "biomesoplenty:fungal_jungle", - "required": false - }, - { - "id": "biomesoplenty:rainforest", - "required": false - }, - { - "id": "biomesoplenty:rocky_rainforest", - "required": false - } - ] -} diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/elderberry.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/elderberry.json deleted file mode 100644 index 09c84a314..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/elderberry.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:forest", - "minecraft:flower_forest", - "minecraft:birch_forest", - "minecraft:dark_forest", - "minecraft:old_growth_birch_forest", - "minecraft:grove", - { - "id": "terralith:birch_taiga", - "required": false - }, - { - "id": "terralith:cloud_forest", - "required": false - }, - { - "id": "terralith:lavender_forest", - "required": false - }, - { - "id": "terralith:lavender_valley", - "required": false - }, - { - "id": "terralith:moonlight_grove", - "required": false - }, - { - "id": "terralith:moonlight_valley", - "required": false - }, - { - "id": "terralith:temperate_highlands", - "required": false - }, - { - "id": "biomesoplenty:bamboo_grove", - "required": false - }, - { - "id": "biomesoplenty:cherry_blossom_grove", - "required": false - }, - { - "id": "biomesoplenty:mediterranean_forest", - "required": false - }, - { - "id": "biomesoplenty:mystic_grove", - "required": false - }, - { - "id": "biomesoplenty:orchard", - "required": false - }, - { - "id": "biomesoplenty:pumpkin_patch", - "required": false - }, - { - "id": "biomesoplenty:redwood_forest", - "required": false - }, - { - "id": "biomesoplenty:seasonal_forest", - "required": false - }, - { - "id": "biomesoplenty:seasonal_orchard", - "required": false - }, - { - "id": "biomesoplenty:woodland", - "required": false - } - ] -} diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/garlic.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/garlic.json deleted file mode 100644 index fe90ce0c3..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/garlic.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:jungle", - "minecraft:sparse_jungle", - "minecraft:bamboo_jungle", - { - "id": "byg:crag_gardens", - "required": false - }, - { - "id": "byg:guiana_shield", - "required": false - }, - { - "id": "byg:jacaranda_forest", - "required": false - }, - { - "id": "byg:tropical_rainforest", - "required": false - }, - { - "id": "terralith:jungle_mountains", - "required": false - }, - { - "id": "terralith:rocky_jungle", - "required": false - }, - { - "id": "terralith:tropical_jungle", - "required": false - }, - { - "id": "biomesoplenty:floodplain", - "required": false - }, - { - "id": "biomesoplenty:fungal_jungle", - "required": false - }, - { - "id": "biomesoplenty:rainforest", - "required": false - }, - { - "id": "biomesoplenty:rocky_rainforest", - "required": false - } - ] -} diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/ginger.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/ginger.json deleted file mode 100644 index 23e9ec483..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/ginger.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:savanna", - "minecraft:savanna_plateau", - "minecraft:windswept_savanna", - { - "id": "terralith:arid_highlands", - "required": false - }, - { - "id": "terralith:brushland", - "required": false - }, - { - "id": "terralith:fractured_savanna", - "required": false - }, - { - "id": "terralith:savanna_badlands", - "required": false - }, - { - "id": "terralith:savanna_slopes", - "required": false - }, - { - "id": "biomesoplenty:dryland", - "required": false - }, - { - "id": "biomesoplenty:lush_savanna", - "required": false - }, - { - "id": "biomesoplenty:scrubland", - "required": false - }, - { - "id": "biomesoplenty:wooded_scrubland", - "required": false - } - ] -} diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/grape.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/grape.json deleted file mode 100644 index 09c84a314..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/grape.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:forest", - "minecraft:flower_forest", - "minecraft:birch_forest", - "minecraft:dark_forest", - "minecraft:old_growth_birch_forest", - "minecraft:grove", - { - "id": "terralith:birch_taiga", - "required": false - }, - { - "id": "terralith:cloud_forest", - "required": false - }, - { - "id": "terralith:lavender_forest", - "required": false - }, - { - "id": "terralith:lavender_valley", - "required": false - }, - { - "id": "terralith:moonlight_grove", - "required": false - }, - { - "id": "terralith:moonlight_valley", - "required": false - }, - { - "id": "terralith:temperate_highlands", - "required": false - }, - { - "id": "biomesoplenty:bamboo_grove", - "required": false - }, - { - "id": "biomesoplenty:cherry_blossom_grove", - "required": false - }, - { - "id": "biomesoplenty:mediterranean_forest", - "required": false - }, - { - "id": "biomesoplenty:mystic_grove", - "required": false - }, - { - "id": "biomesoplenty:orchard", - "required": false - }, - { - "id": "biomesoplenty:pumpkin_patch", - "required": false - }, - { - "id": "biomesoplenty:redwood_forest", - "required": false - }, - { - "id": "biomesoplenty:seasonal_forest", - "required": false - }, - { - "id": "biomesoplenty:seasonal_orchard", - "required": false - }, - { - "id": "biomesoplenty:woodland", - "required": false - } - ] -} diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/greenbean.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/greenbean.json deleted file mode 100644 index 588348169..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/greenbean.json +++ /dev/null @@ -1,87 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:plains", - "minecraft:sunflower_plains", - { - "id": "byg:allium_fields", - "required": false - }, - { - "id": "byg:amaranth_fields", - "required": false - }, - { - "id": "byg:autumnal_valley", - "required": false - }, - { - "id": "byg:temperate_grove", - "required": false - }, - { - "id": "byg:coconino_meadow", - "required": false - }, - { - "id": "byg:orchard", - "required": false - }, - { - "id": "byg:prairie", - "required": false - }, - { - "id": "byg:rose_fields", - "required": false - }, - { - "id": "byg:sierra_badlands", - "required": false - }, - { - "id": "terralith:blooming_plateau", - "required": false - }, - { - "id": "terralith:blooming_valley", - "required": false - }, - { - "id": "terralith:highlands", - "required": false - }, - { - "id": "terralith:steppe", - "required": false - }, - { - "id": "terralith:valley_clearing", - "required": false - }, - { - "id": "biomesoplenty:bog", - "required": false - }, - { - "id": "biomesoplenty:coniferous_forest", - "required": false - }, - { - "id": "biomesoplenty:field", - "required": false - }, - { - "id": "biomesoplenty:fir_cleaning", - "required": false - }, - { - "id": "biomesoplenty:maple_woods", - "required": false - }, - { - "id": "biomesoplenty:tundra", - "required": false - } - ] -} diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/greenonion.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/greenonion.json deleted file mode 100644 index ac167af52..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/greenonion.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:jungle", - "minecraft:sparse_jungle", - "minecraft:bamboo_jungle", - { - "id": "terralith:amethyst_canyon", - "required": false - }, - { - "id": "terralith:amethyst_rainforest", - "required": false - }, - { - "id": "terralith:jungle_mountains", - "required": false - }, - { - "id": "terralith:rocky_jungle", - "required": false - }, - { - "id": "terralith:tropical_jungle", - "required": false - }, - { - "id": "biomesoplenty:floodplain", - "required": false - }, - { - "id": "biomesoplenty:fungal_jungle", - "required": false - }, - { - "id": "biomesoplenty:rainforest", - "required": false - }, - { - "id": "biomesoplenty:rocky_rainforest", - "required": false - } - ] -} diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/honeydew.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/honeydew.json deleted file mode 100644 index 42750a1bd..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/honeydew.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:jungle", - "minecraft:sparse_jungle", - "minecraft:bamboo_jungle", - { - "id": "terralith:jungle_mountains", - "required": false - }, - { - "id": "terralith:rocky_jungle", - "required": false - }, - { - "id": "terralith:tropical_jungle", - "required": false - }, - { - "id": "biomesoplenty:floodplain", - "required": false - }, - { - "id": "biomesoplenty:fungal_jungle", - "required": false - }, - { - "id": "biomesoplenty:rainforest", - "required": false - }, - { - "id": "biomesoplenty:rocky_rainforest", - "required": false - } - ] -} diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/hops.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/hops.json deleted file mode 100644 index 23e9ec483..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/hops.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:savanna", - "minecraft:savanna_plateau", - "minecraft:windswept_savanna", - { - "id": "terralith:arid_highlands", - "required": false - }, - { - "id": "terralith:brushland", - "required": false - }, - { - "id": "terralith:fractured_savanna", - "required": false - }, - { - "id": "terralith:savanna_badlands", - "required": false - }, - { - "id": "terralith:savanna_slopes", - "required": false - }, - { - "id": "biomesoplenty:dryland", - "required": false - }, - { - "id": "biomesoplenty:lush_savanna", - "required": false - }, - { - "id": "biomesoplenty:scrubland", - "required": false - }, - { - "id": "biomesoplenty:wooded_scrubland", - "required": false - } - ] -} diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/kale.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/kale.json deleted file mode 100644 index aa45cbaa7..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/kale.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:plains", - "minecraft:sunflower_plains", - { - "id": "byg:allium_fields", - "required": false - }, - { - "id": "byg:amaranth_fields", - "required": false - }, - { - "id": "byg:autumnal_valley", - "required": false - }, - { - "id": "byg:temperate_grove", - "required": false - }, - { - "id": "byg:coconino_meadow", - "required": false - }, - { - "id": "byg:orchard", - "required": false - }, - { - "id": "byg:prairie", - "required": false - }, - { - "id": "byg:rose_fields", - "required": false - }, - { - "id": "byg:sierra_badlands", - "required": false - }, - { - "id": "biomesoplenty:bog", - "required": false - }, - { - "id": "biomesoplenty:coniferous_forest", - "required": false - }, - { - "id": "biomesoplenty:field", - "required": false - }, - { - "id": "biomesoplenty:fir_cleaning", - "required": false - }, - { - "id": "biomesoplenty:maple_woods", - "required": false - }, - { - "id": "biomesoplenty:tundra", - "required": false - } - ] -} \ No newline at end of file diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/kiwi.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/kiwi.json deleted file mode 100644 index 2872486b4..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/kiwi.json +++ /dev/null @@ -1,72 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:savanna", - "minecraft:savanna_plateau", - "minecraft:windswept_savanna", - { - "id": "byg:araucaria_savanna", - "required": false - }, - { - "id": "byg:baobab_savanna", - "required": false - }, - { - "id": "terralith:arid_highlands", - "required": false - }, - { - "id": "terralith:blooming_plateau", - "required": false - }, - { - "id": "terralith:blooming_valley", - "required": false - }, - { - "id": "terralith:brushland", - "required": false - }, - { - "id": "terralith:fractured_savanna", - "required": false - }, - { - "id": "terralith:highlands", - "required": false - }, - { - "id": "terralith:savanna_badlands", - "required": false - }, - { - "id": "terralith:savanna_slopes", - "required": false - }, - { - "id": "terralith:steppe", - "required": false - }, - { - "id": "terralith:valley_clearing", - "required": false - }, - { - "id": "biomesoplenty:dryland", - "required": false - }, - { - "id": "biomesoplenty:lush_savanna", - "required": false - }, - { - "id": "biomesoplenty:scrubland", - "required": false - }, - { - "id": "biomesoplenty:wooded_scrubland", - "required": false - } - ] -} diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/leek.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/leek.json deleted file mode 100644 index 23e9ec483..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/leek.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:savanna", - "minecraft:savanna_plateau", - "minecraft:windswept_savanna", - { - "id": "terralith:arid_highlands", - "required": false - }, - { - "id": "terralith:brushland", - "required": false - }, - { - "id": "terralith:fractured_savanna", - "required": false - }, - { - "id": "terralith:savanna_badlands", - "required": false - }, - { - "id": "terralith:savanna_slopes", - "required": false - }, - { - "id": "biomesoplenty:dryland", - "required": false - }, - { - "id": "biomesoplenty:lush_savanna", - "required": false - }, - { - "id": "biomesoplenty:scrubland", - "required": false - }, - { - "id": "biomesoplenty:wooded_scrubland", - "required": false - } - ] -} diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/lettuce.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/lettuce.json deleted file mode 100644 index edb5fb9b7..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/lettuce.json +++ /dev/null @@ -1,51 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:plains", - "minecraft:sunflower_plains", - { - "id": "terralith:blooming_plateau", - "required": false - }, - { - "id": "terralith:blooming_valley", - "required": false - }, - { - "id": "terralith:highlands", - "required": false - }, - { - "id": "terralith:steppe", - "required": false - }, - { - "id": "terralith:valley_clearing", - "required": false - }, - { - "id": "biomesoplenty:bog", - "required": false - }, - { - "id": "biomesoplenty:coniferous_forest", - "required": false - }, - { - "id": "biomesoplenty:field", - "required": false - }, - { - "id": "biomesoplenty:fir_cleaning", - "required": false - }, - { - "id": "biomesoplenty:maple_woods", - "required": false - }, - { - "id": "biomesoplenty:tundra", - "required": false - } - ] -} diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/mustard.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/mustard.json deleted file mode 100644 index edb5fb9b7..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/mustard.json +++ /dev/null @@ -1,51 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:plains", - "minecraft:sunflower_plains", - { - "id": "terralith:blooming_plateau", - "required": false - }, - { - "id": "terralith:blooming_valley", - "required": false - }, - { - "id": "terralith:highlands", - "required": false - }, - { - "id": "terralith:steppe", - "required": false - }, - { - "id": "terralith:valley_clearing", - "required": false - }, - { - "id": "biomesoplenty:bog", - "required": false - }, - { - "id": "biomesoplenty:coniferous_forest", - "required": false - }, - { - "id": "biomesoplenty:field", - "required": false - }, - { - "id": "biomesoplenty:fir_cleaning", - "required": false - }, - { - "id": "biomesoplenty:maple_woods", - "required": false - }, - { - "id": "biomesoplenty:tundra", - "required": false - } - ] -} diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/oat.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/oat.json deleted file mode 100644 index edb5fb9b7..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/oat.json +++ /dev/null @@ -1,51 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:plains", - "minecraft:sunflower_plains", - { - "id": "terralith:blooming_plateau", - "required": false - }, - { - "id": "terralith:blooming_valley", - "required": false - }, - { - "id": "terralith:highlands", - "required": false - }, - { - "id": "terralith:steppe", - "required": false - }, - { - "id": "terralith:valley_clearing", - "required": false - }, - { - "id": "biomesoplenty:bog", - "required": false - }, - { - "id": "biomesoplenty:coniferous_forest", - "required": false - }, - { - "id": "biomesoplenty:field", - "required": false - }, - { - "id": "biomesoplenty:fir_cleaning", - "required": false - }, - { - "id": "biomesoplenty:maple_woods", - "required": false - }, - { - "id": "biomesoplenty:tundra", - "required": false - } - ] -} diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/olive.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/olive.json deleted file mode 100644 index 23e9ec483..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/olive.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:savanna", - "minecraft:savanna_plateau", - "minecraft:windswept_savanna", - { - "id": "terralith:arid_highlands", - "required": false - }, - { - "id": "terralith:brushland", - "required": false - }, - { - "id": "terralith:fractured_savanna", - "required": false - }, - { - "id": "terralith:savanna_badlands", - "required": false - }, - { - "id": "terralith:savanna_slopes", - "required": false - }, - { - "id": "biomesoplenty:dryland", - "required": false - }, - { - "id": "biomesoplenty:lush_savanna", - "required": false - }, - { - "id": "biomesoplenty:scrubland", - "required": false - }, - { - "id": "biomesoplenty:wooded_scrubland", - "required": false - } - ] -} diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/onion.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/onion.json deleted file mode 100644 index ec3ed3648..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/onion.json +++ /dev/null @@ -1,68 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:jungle", - "minecraft:sparse_jungle", - "minecraft:bamboo_jungle", - { - "id": "terralith:alpine_grove", - "required": false - }, - { - "id": "terralith:forested_highlands", - "required": false - }, - { - "id": "terralith:jungle_mountains", - "required": false - }, - { - "id": "terralith:lush_valley", - "required": false - }, - { - "id": "terralith:rocky_jungle", - "required": false - }, - { - "id": "terralith:siberian_grove", - "required": false - }, - { - "id": "terralith:siberian_taiga", - "required": false - }, - { - "id": "terralith:snowy_maple_forest", - "required": false - }, - { - "id": "terralith:snowy_shield", - "required": false - }, - { - "id": "terralith:tropical_jungle", - "required": false - }, - { - "id": "terralith:yosemite_lowlands", - "required": false - }, - { - "id": "biomesoplenty:floodplain", - "required": false - }, - { - "id": "biomesoplenty:fungal_jungle", - "required": false - }, - { - "id": "biomesoplenty:rainforest", - "required": false - }, - { - "id": "biomesoplenty:rocky_rainforest", - "required": false - } - ] -} diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/peanut.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/peanut.json deleted file mode 100644 index fe90ce0c3..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/peanut.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:jungle", - "minecraft:sparse_jungle", - "minecraft:bamboo_jungle", - { - "id": "byg:crag_gardens", - "required": false - }, - { - "id": "byg:guiana_shield", - "required": false - }, - { - "id": "byg:jacaranda_forest", - "required": false - }, - { - "id": "byg:tropical_rainforest", - "required": false - }, - { - "id": "terralith:jungle_mountains", - "required": false - }, - { - "id": "terralith:rocky_jungle", - "required": false - }, - { - "id": "terralith:tropical_jungle", - "required": false - }, - { - "id": "biomesoplenty:floodplain", - "required": false - }, - { - "id": "biomesoplenty:fungal_jungle", - "required": false - }, - { - "id": "biomesoplenty:rainforest", - "required": false - }, - { - "id": "biomesoplenty:rocky_rainforest", - "required": false - } - ] -} diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/pepper.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/pepper.json deleted file mode 100644 index b87c8408b..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/pepper.json +++ /dev/null @@ -1,75 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:plains", - "minecraft:sunflower_plains", - { - "id": "terralith:ashen_savanna", - "required": false - }, - { - "id": "terralith:blooming_plateau", - "required": false - }, - { - "id": "terralith:blooming_plateau", - "required": false - }, - { - "id": "terralith:blooming_valley", - "required": false - }, - { - "id": "terralith:blooming_valley", - "required": false - }, - { - "id": "terralith:highlands", - "required": false - }, - { - "id": "terralith:highlands", - "required": false - }, - { - "id": "terralith:steppe", - "required": false - }, - { - "id": "terralith:steppe", - "required": false - }, - { - "id": "terralith:valley_clearing", - "required": false - }, - { - "id": "terralith:valley_clearing", - "required": false - }, - { - "id": "biomesoplenty:bog", - "required": false - }, - { - "id": "biomesoplenty:coniferous_forest", - "required": false - }, - { - "id": "biomesoplenty:field", - "required": false - }, - { - "id": "biomesoplenty:fir_cleaning", - "required": false - }, - { - "id": "biomesoplenty:maple_woods", - "required": false - }, - { - "id": "biomesoplenty:tundra", - "required": false - } - ] -} diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/pineapple.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/pineapple.json deleted file mode 100644 index fe90ce0c3..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/pineapple.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:jungle", - "minecraft:sparse_jungle", - "minecraft:bamboo_jungle", - { - "id": "byg:crag_gardens", - "required": false - }, - { - "id": "byg:guiana_shield", - "required": false - }, - { - "id": "byg:jacaranda_forest", - "required": false - }, - { - "id": "byg:tropical_rainforest", - "required": false - }, - { - "id": "terralith:jungle_mountains", - "required": false - }, - { - "id": "terralith:rocky_jungle", - "required": false - }, - { - "id": "terralith:tropical_jungle", - "required": false - }, - { - "id": "biomesoplenty:floodplain", - "required": false - }, - { - "id": "biomesoplenty:fungal_jungle", - "required": false - }, - { - "id": "biomesoplenty:rainforest", - "required": false - }, - { - "id": "biomesoplenty:rocky_rainforest", - "required": false - } - ] -} diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/radish.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/radish.json deleted file mode 100644 index 05536c725..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/radish.json +++ /dev/null @@ -1,131 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:forest", - "minecraft:flower_forest", - "minecraft:birch_forest", - "minecraft:dark_forest", - "minecraft:old_growth_birch_forest", - "minecraft:grove", - { - "id": "byg:aspen_forest", - "required": false - }, - { - "id": "byg:borealis_grove", - "required": false - }, - { - "id": "byg:cherry_blossom_forest", - "required": false - }, - { - "id": "byg:cika_woods", - "required": false - }, - { - "id": "byg:ebony_woods", - "required": false - }, - { - "id": "byg:forgotten_forest", - "required": false - }, - { - "id": "byg:red_oak_forest", - "required": false - }, - { - "id": "byg:autumnal_forest", - "required": false - }, - { - "id": "byg:redwood_thicket", - "required": false - }, - { - "id": "byg:fragment_forest", - "required": false - }, - { - "id": "byg:twilight_meadow", - "required": false - }, - { - "id": "byg:weeping_witch_forest", - "required": false - }, - { - "id": "byg:temperate_rainforest", - "required": false - }, - { - "id": "terralith:birch_taiga", - "required": false - }, - { - "id": "terralith:cloud_forest", - "required": false - }, - { - "id": "terralith:lavender_forest", - "required": false - }, - { - "id": "terralith:lavender_valley", - "required": false - }, - { - "id": "terralith:moonlight_grove", - "required": false - }, - { - "id": "terralith:moonlight_valley", - "required": false - }, - { - "id": "terralith:temperate_highlands", - "required": false - }, - { - "id": "biomesoplenty:bamboo_grove", - "required": false - }, - { - "id": "biomesoplenty:cherry_blossom_grove", - "required": false - }, - { - "id": "biomesoplenty:mediterranean_forest", - "required": false - }, - { - "id": "biomesoplenty:mystic_grove", - "required": false - }, - { - "id": "biomesoplenty:orchard", - "required": false - }, - { - "id": "biomesoplenty:pumpkin_patch", - "required": false - }, - { - "id": "biomesoplenty:redwood_forest", - "required": false - }, - { - "id": "biomesoplenty:seasonal_forest", - "required": false - }, - { - "id": "biomesoplenty:seasonal_orchard", - "required": false - }, - { - "id": "biomesoplenty:woodland", - "required": false - } - ] -} diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/raspberry.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/raspberry.json deleted file mode 100644 index a7789dbb1..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/raspberry.json +++ /dev/null @@ -1,187 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:forest", - "minecraft:flower_forest", - "minecraft:birch_forest", - "minecraft:dark_forest", - "minecraft:old_growth_birch_forest", - "minecraft:old_growth_pine_taiga", - "minecraft:old_growth_spruce_taiga", - "minecraft:taiga", - "minecraft:snowy_taiga", - "minecraft:grove", - { - "id": "byg:aspen_forest", - "required": false - }, - { - "id": "byg:black_forest", - "required": false - }, - { - "id": "byg:borealis_grove", - "required": false - }, - { - "id": "byg:cherry_blossom_forest", - "required": false - }, - { - "id": "byg:cika_woods", - "required": false - }, - { - "id": "byg:coniferous_forest", - "required": false - }, - { - "id": "byg:ebony_woods", - "required": false - }, - { - "id": "byg:forgotten_forest", - "required": false - }, - { - "id": "byg:maple_taiga", - "required": false - }, - { - "id": "byg:red_oak_forest", - "required": false - }, - { - "id": "byg:autumnal_forest", - "required": false - }, - { - "id": "byg:autumnal_taiga", - "required": false - }, - { - "id": "byg:redwood_thicket", - "required": false - }, - { - "id": "byg:frosted_taiga", - "required": false - }, - { - "id": "byg:frosted_coniferous_forest", - "required": false - }, - { - "id": "byg:fragment_forest", - "required": false - }, - { - "id": "byg:twilight_meadow", - "required": false - }, - { - "id": "byg:weeping_witch_forest", - "required": false - }, - { - "id": "byg:temperate_rainforest", - "required": false - }, - { - "id": "byg:zelkova_forest", - "required": false - }, - { - "id": "terralith:birch_taiga", - "required": false - }, - { - "id": "terralith:cloud_forest", - "required": false - }, - { - "id": "terralith:lavender_forest", - "required": false - }, - { - "id": "terralith:lavender_valley", - "required": false - }, - { - "id": "terralith:moonlight_grove", - "required": false - }, - { - "id": "terralith:moonlight_valley", - "required": false - }, - { - "id": "terralith:temperate_highlands", - "required": false - }, - { - "id": "biomesoplenty:bamboo_grove", - "required": false - }, - { - "id": "biomesoplenty:cherry_blossom_grove", - "required": false - }, - { - "id": "biomesoplenty:mediterranean_forest", - "required": false - }, - { - "id": "biomesoplenty:mystic_grove", - "required": false - }, - { - "id": "biomesoplenty:orchard", - "required": false - }, - { - "id": "biomesoplenty:pumpkin_patch", - "required": false - }, - { - "id": "biomesoplenty:redwood_forest", - "required": false - }, - { - "id": "biomesoplenty:seasonal_forest", - "required": false - }, - { - "id": "biomesoplenty:seasonal_orchard", - "required": false - }, - { - "id": "biomesoplenty:woodland", - "required": false - }, - { - "id": "biomesoplenty:bog", - "required": false - }, - { - "id": "biomesoplenty:coniferous_forest", - "required": false - }, - { - "id": "biomesoplenty:field", - "required": false - }, - { - "id": "biomesoplenty:fir_cleaning", - "required": false - }, - { - "id": "biomesoplenty:maple_woods", - "required": false - }, - { - "id": "biomesoplenty:tundra", - "required": false - } - ] -} diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/rhubarb.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/rhubarb.json deleted file mode 100644 index fe90ce0c3..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/rhubarb.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:jungle", - "minecraft:sparse_jungle", - "minecraft:bamboo_jungle", - { - "id": "byg:crag_gardens", - "required": false - }, - { - "id": "byg:guiana_shield", - "required": false - }, - { - "id": "byg:jacaranda_forest", - "required": false - }, - { - "id": "byg:tropical_rainforest", - "required": false - }, - { - "id": "terralith:jungle_mountains", - "required": false - }, - { - "id": "terralith:rocky_jungle", - "required": false - }, - { - "id": "terralith:tropical_jungle", - "required": false - }, - { - "id": "biomesoplenty:floodplain", - "required": false - }, - { - "id": "biomesoplenty:fungal_jungle", - "required": false - }, - { - "id": "biomesoplenty:rainforest", - "required": false - }, - { - "id": "biomesoplenty:rocky_rainforest", - "required": false - } - ] -} diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/rice.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/rice.json deleted file mode 100644 index ac167af52..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/rice.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:jungle", - "minecraft:sparse_jungle", - "minecraft:bamboo_jungle", - { - "id": "terralith:amethyst_canyon", - "required": false - }, - { - "id": "terralith:amethyst_rainforest", - "required": false - }, - { - "id": "terralith:jungle_mountains", - "required": false - }, - { - "id": "terralith:rocky_jungle", - "required": false - }, - { - "id": "terralith:tropical_jungle", - "required": false - }, - { - "id": "biomesoplenty:floodplain", - "required": false - }, - { - "id": "biomesoplenty:fungal_jungle", - "required": false - }, - { - "id": "biomesoplenty:rainforest", - "required": false - }, - { - "id": "biomesoplenty:rocky_rainforest", - "required": false - } - ] -} diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/rutabaga.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/rutabaga.json deleted file mode 100644 index 95edb25f9..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/rutabaga.json +++ /dev/null @@ -1,108 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:old_growth_pine_taiga", - "minecraft:old_growth_spruce_taiga", - "minecraft:taiga", - "minecraft:snowy_taiga", - "minecraft:savanna", - "minecraft:savanna_plateau", - "minecraft:windswept_savanna", - { - "id": "byg:araucaria_savanna", - "required": false - }, - { - "id": "byg:baobab_savanna", - "required": false - }, - { - "id": "byg:black_forest", - "required": false - }, - { - "id": "byg:coniferous_forest", - "required": false - }, - { - "id": "byg:maple_taiga", - "required": false - }, - { - "id": "byg:autumnal_taiga", - "required": false - }, - { - "id": "byg:frosted_taiga", - "required": false - }, - { - "id": "byg:frosted_coniferous_forest", - "required": false - }, - { - "id": "byg:zelkova_forest", - "required": false - }, - { - "id": "terralith:arid_highlands", - "required": false - }, - { - "id": "terralith:brushland", - "required": false - }, - { - "id": "terralith:fractured_savanna", - "required": false - }, - { - "id": "terralith:savanna_badlands", - "required": false - }, - { - "id": "terralith:savanna_slopes", - "required": false - }, - { - "id": "biomesoplenty:bog", - "required": false - }, - { - "id": "biomesoplenty:coniferous_forest", - "required": false - }, - { - "id": "biomesoplenty:field", - "required": false - }, - { - "id": "biomesoplenty:fir_cleaning", - "required": false - }, - { - "id": "biomesoplenty:maple_woods", - "required": false - }, - { - "id": "biomesoplenty:tundra", - "required": false - }, - { - "id": "biomesoplenty:dryland", - "required": false - }, - { - "id": "biomesoplenty:lush_savanna", - "required": false - }, - { - "id": "biomesoplenty:scrubland", - "required": false - }, - { - "id": "biomesoplenty:wooded_scrubland", - "required": false - } - ] -} diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/saguaro.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/saguaro.json deleted file mode 100644 index 78818c876..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/saguaro.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:desert", - { - "id": "byg:atacama_desert", - "required": false - }, - { - "id": "byg:windswept_dunes", - "required": false - }, - { - "id": "byg:windswept_desert", - "required": false - }, - { - "id": "byg:mojave_desert", - "required": false - }, - { - "id": "byg:red_rock_valley", - "required": false - }, - { - "id": "byg:firecracker_shrubland", - "required": false - }, - { - "id": "terralith:ancient_sands", - "required": false - }, - { - "id": "terralith:bryce_canyon", - "required": false - }, - { - "id": "terralith:desert_canyon", - "required": false - }, - { - "id": "terralith:desert_oasis", - "required": false - }, - { - "id": "terralith:desert_spires", - "required": false - }, - { - "id": "terralith:hot_shrubland", - "required": false - }, - { - "id": "terralith:painted_mountains", - "required": false - }, - { - "id": "terralith:red_oasis", - "required": false - }, - { - "id": "terralith:sandstone_valley", - "required": false - }, - { - "id": "terralith:warped_mesa", - "required": false - } - ] -} diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/soybean.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/soybean.json deleted file mode 100644 index edb5fb9b7..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/soybean.json +++ /dev/null @@ -1,51 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:plains", - "minecraft:sunflower_plains", - { - "id": "terralith:blooming_plateau", - "required": false - }, - { - "id": "terralith:blooming_valley", - "required": false - }, - { - "id": "terralith:highlands", - "required": false - }, - { - "id": "terralith:steppe", - "required": false - }, - { - "id": "terralith:valley_clearing", - "required": false - }, - { - "id": "biomesoplenty:bog", - "required": false - }, - { - "id": "biomesoplenty:coniferous_forest", - "required": false - }, - { - "id": "biomesoplenty:field", - "required": false - }, - { - "id": "biomesoplenty:fir_cleaning", - "required": false - }, - { - "id": "biomesoplenty:maple_woods", - "required": false - }, - { - "id": "biomesoplenty:tundra", - "required": false - } - ] -} diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/spinach.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/spinach.json deleted file mode 100644 index 09c84a314..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/spinach.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:forest", - "minecraft:flower_forest", - "minecraft:birch_forest", - "minecraft:dark_forest", - "minecraft:old_growth_birch_forest", - "minecraft:grove", - { - "id": "terralith:birch_taiga", - "required": false - }, - { - "id": "terralith:cloud_forest", - "required": false - }, - { - "id": "terralith:lavender_forest", - "required": false - }, - { - "id": "terralith:lavender_valley", - "required": false - }, - { - "id": "terralith:moonlight_grove", - "required": false - }, - { - "id": "terralith:moonlight_valley", - "required": false - }, - { - "id": "terralith:temperate_highlands", - "required": false - }, - { - "id": "biomesoplenty:bamboo_grove", - "required": false - }, - { - "id": "biomesoplenty:cherry_blossom_grove", - "required": false - }, - { - "id": "biomesoplenty:mediterranean_forest", - "required": false - }, - { - "id": "biomesoplenty:mystic_grove", - "required": false - }, - { - "id": "biomesoplenty:orchard", - "required": false - }, - { - "id": "biomesoplenty:pumpkin_patch", - "required": false - }, - { - "id": "biomesoplenty:redwood_forest", - "required": false - }, - { - "id": "biomesoplenty:seasonal_forest", - "required": false - }, - { - "id": "biomesoplenty:seasonal_orchard", - "required": false - }, - { - "id": "biomesoplenty:woodland", - "required": false - } - ] -} diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/squash.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/squash.json deleted file mode 100644 index a77761d84..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/squash.json +++ /dev/null @@ -1,140 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:old_growth_pine_taiga", - "minecraft:old_growth_spruce_taiga", - "minecraft:taiga", - "minecraft:snowy_taiga", - "minecraft:savanna", - "minecraft:savanna_plateau", - "minecraft:windswept_savanna", - { - "id": "terralith:alpine_grove", - "required": false - }, - { - "id": "terralith:arid_highlands", - "required": false - }, - { - "id": "terralith:brushland", - "required": false - }, - { - "id": "terralith:cold_shrubland", - "required": false - }, - { - "id": "terralith:forested_highlands", - "required": false - }, - { - "id": "terralith:fractured_savanna", - "required": false - }, - { - "id": "terralith:lush_valley", - "required": false - }, - { - "id": "terralith:rocky_mountains", - "required": false - }, - { - "id": "terralith:sakura_grove", - "required": false - }, - { - "id": "terralith:sakura_valley", - "required": false - }, - { - "id": "terralith:savanna_badlands", - "required": false - }, - { - "id": "terralith:savanna_slopes", - "required": false - }, - { - "id": "terralith:scarlet_mountains", - "required": false - }, - { - "id": "terralith:shield", - "required": false - }, - { - "id": "terralith:shrubland", - "required": false - }, - { - "id": "terralith:siberian_grove", - "required": false - }, - { - "id": "terralith:siberian_taiga", - "required": false - }, - { - "id": "terralith:snowy_maple_forest", - "required": false - }, - { - "id": "terralith:snowy_shield", - "required": false - }, - { - "id": "terralith:wintry_forest", - "required": false - }, - { - "id": "terralith:wintry_lowlands", - "required": false - }, - { - "id": "terralith:yosemite_lowlands", - "required": false - }, - { - "id": "biomesoplenty:dryland", - "required": false - }, - { - "id": "biomesoplenty:lush_savanna", - "required": false - }, - { - "id": "biomesoplenty:scrubland", - "required": false - }, - { - "id": "biomesoplenty:wooded_scrubland", - "required": false - }, - { - "id": "biomesoplenty:bog", - "required": false - }, - { - "id": "biomesoplenty:coniferous_forest", - "required": false - }, - { - "id": "biomesoplenty:field", - "required": false - }, - { - "id": "biomesoplenty:fir_cleaning", - "required": false - }, - { - "id": "biomesoplenty:maple_woods", - "required": false - }, - { - "id": "biomesoplenty:tundra", - "required": false - } - ] -} diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/strawberry.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/strawberry.json deleted file mode 100644 index f10a4bb7a..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/strawberry.json +++ /dev/null @@ -1,131 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:forest", - "minecraft:flower_forest", - "minecraft:birch_forest", - "minecraft:dark_forest", - "minecraft:old_growth_birch_forest", - "minecraft:old_growth_pine_taiga", - "minecraft:old_growth_spruce_taiga", - "minecraft:taiga", - "minecraft:snowy_taiga", - "minecraft:grove", - { - "id": "terralith:alpine_highlands", - "required": false - }, - { - "id": "terralith:birch_taiga", - "required": false - }, - { - "id": "terralith:blooming_plateau", - "required": false - }, - { - "id": "terralith:blooming_valley", - "required": false - }, - { - "id": "terralith:cloud_forest", - "required": false - }, - { - "id": "terralith:highlands", - "required": false - }, - { - "id": "terralith:lavender_forest", - "required": false - }, - { - "id": "terralith:lavender_valley", - "required": false - }, - { - "id": "terralith:moonlight_grove", - "required": false - }, - { - "id": "terralith:moonlight_valley", - "required": false - }, - { - "id": "terralith:steppe", - "required": false - }, - { - "id": "terralith:temperate_highlands", - "required": false - }, - { - "id": "terralith:valley_clearing", - "required": false - }, - { - "id": "biomesoplenty:bog", - "required": false - }, - { - "id": "biomesoplenty:coniferous_forest", - "required": false - }, - { - "id": "biomesoplenty:field", - "required": false - }, - { - "id": "biomesoplenty:fir_cleaning", - "required": false - }, - { - "id": "biomesoplenty:maple_woods", - "required": false - }, - { - "id": "biomesoplenty:tundra", - "required": false - }, - { - "id": "biomesoplenty:bamboo_grove", - "required": false - }, - { - "id": "biomesoplenty:cherry_blossom_grove", - "required": false - }, - { - "id": "biomesoplenty:mediterranean_forest", - "required": false - }, - { - "id": "biomesoplenty:mystic_grove", - "required": false - }, - { - "id": "biomesoplenty:orchard", - "required": false - }, - { - "id": "biomesoplenty:pumpkin_patch", - "required": false - }, - { - "id": "biomesoplenty:redwood_forest", - "required": false - }, - { - "id": "biomesoplenty:seasonal_forest", - "required": false - }, - { - "id": "biomesoplenty:seasonal_orchard", - "required": false - }, - { - "id": "biomesoplenty:woodland", - "required": false - } - ] -} diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/sweetpotato.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/sweetpotato.json deleted file mode 100644 index f89994be7..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/sweetpotato.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:plains", - "minecraft:sunflower_plains", - { - "id": "terralith:cold_shrubland", - "required": false - }, - { - "id": "terralith:rocky_mountains", - "required": false - }, - { - "id": "terralith:sakura_grove", - "required": false - }, - { - "id": "terralith:sakura_valley", - "required": false - }, - { - "id": "terralith:scarlet_mountains", - "required": false - }, - { - "id": "terralith:shield", - "required": false - }, - { - "id": "terralith:shrubland", - "required": false - }, - { - "id": "terralith:wintry_forest", - "required": false - }, - { - "id": "terralith:wintry_lowlands", - "required": false - }, - { - "id": "biomesoplenty:bog", - "required": false - }, - { - "id": "biomesoplenty:coniferous_forest", - "required": false - }, - { - "id": "biomesoplenty:field", - "required": false - }, - { - "id": "biomesoplenty:fir_cleaning", - "required": false - }, - { - "id": "biomesoplenty:maple_woods", - "required": false - }, - { - "id": "biomesoplenty:tundra", - "required": false - } - ] -} diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/tea_leaves.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/tea_leaves.json deleted file mode 100644 index 09c84a314..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/tea_leaves.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:forest", - "minecraft:flower_forest", - "minecraft:birch_forest", - "minecraft:dark_forest", - "minecraft:old_growth_birch_forest", - "minecraft:grove", - { - "id": "terralith:birch_taiga", - "required": false - }, - { - "id": "terralith:cloud_forest", - "required": false - }, - { - "id": "terralith:lavender_forest", - "required": false - }, - { - "id": "terralith:lavender_valley", - "required": false - }, - { - "id": "terralith:moonlight_grove", - "required": false - }, - { - "id": "terralith:moonlight_valley", - "required": false - }, - { - "id": "terralith:temperate_highlands", - "required": false - }, - { - "id": "biomesoplenty:bamboo_grove", - "required": false - }, - { - "id": "biomesoplenty:cherry_blossom_grove", - "required": false - }, - { - "id": "biomesoplenty:mediterranean_forest", - "required": false - }, - { - "id": "biomesoplenty:mystic_grove", - "required": false - }, - { - "id": "biomesoplenty:orchard", - "required": false - }, - { - "id": "biomesoplenty:pumpkin_patch", - "required": false - }, - { - "id": "biomesoplenty:redwood_forest", - "required": false - }, - { - "id": "biomesoplenty:seasonal_forest", - "required": false - }, - { - "id": "biomesoplenty:seasonal_orchard", - "required": false - }, - { - "id": "biomesoplenty:woodland", - "required": false - } - ] -} diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/tomatillo.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/tomatillo.json deleted file mode 100644 index 09c84a314..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/tomatillo.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:forest", - "minecraft:flower_forest", - "minecraft:birch_forest", - "minecraft:dark_forest", - "minecraft:old_growth_birch_forest", - "minecraft:grove", - { - "id": "terralith:birch_taiga", - "required": false - }, - { - "id": "terralith:cloud_forest", - "required": false - }, - { - "id": "terralith:lavender_forest", - "required": false - }, - { - "id": "terralith:lavender_valley", - "required": false - }, - { - "id": "terralith:moonlight_grove", - "required": false - }, - { - "id": "terralith:moonlight_valley", - "required": false - }, - { - "id": "terralith:temperate_highlands", - "required": false - }, - { - "id": "biomesoplenty:bamboo_grove", - "required": false - }, - { - "id": "biomesoplenty:cherry_blossom_grove", - "required": false - }, - { - "id": "biomesoplenty:mediterranean_forest", - "required": false - }, - { - "id": "biomesoplenty:mystic_grove", - "required": false - }, - { - "id": "biomesoplenty:orchard", - "required": false - }, - { - "id": "biomesoplenty:pumpkin_patch", - "required": false - }, - { - "id": "biomesoplenty:redwood_forest", - "required": false - }, - { - "id": "biomesoplenty:seasonal_forest", - "required": false - }, - { - "id": "biomesoplenty:seasonal_orchard", - "required": false - }, - { - "id": "biomesoplenty:woodland", - "required": false - } - ] -} diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/tomato.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/tomato.json deleted file mode 100644 index 09c84a314..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/tomato.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:forest", - "minecraft:flower_forest", - "minecraft:birch_forest", - "minecraft:dark_forest", - "minecraft:old_growth_birch_forest", - "minecraft:grove", - { - "id": "terralith:birch_taiga", - "required": false - }, - { - "id": "terralith:cloud_forest", - "required": false - }, - { - "id": "terralith:lavender_forest", - "required": false - }, - { - "id": "terralith:lavender_valley", - "required": false - }, - { - "id": "terralith:moonlight_grove", - "required": false - }, - { - "id": "terralith:moonlight_valley", - "required": false - }, - { - "id": "terralith:temperate_highlands", - "required": false - }, - { - "id": "biomesoplenty:bamboo_grove", - "required": false - }, - { - "id": "biomesoplenty:cherry_blossom_grove", - "required": false - }, - { - "id": "biomesoplenty:mediterranean_forest", - "required": false - }, - { - "id": "biomesoplenty:mystic_grove", - "required": false - }, - { - "id": "biomesoplenty:orchard", - "required": false - }, - { - "id": "biomesoplenty:pumpkin_patch", - "required": false - }, - { - "id": "biomesoplenty:redwood_forest", - "required": false - }, - { - "id": "biomesoplenty:seasonal_forest", - "required": false - }, - { - "id": "biomesoplenty:seasonal_orchard", - "required": false - }, - { - "id": "biomesoplenty:woodland", - "required": false - } - ] -} diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/turmeric.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/turmeric.json deleted file mode 100644 index 064c5c5a5..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/turmeric.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:savanna", - "minecraft:savanna_plateau", - "minecraft:windswept_savanna", - { - "id": "byg:araucaria_savanna", - "required": false - }, - { - "id": "byg:baobab_savanna", - "required": false - }, - { - "id": "terralith:arid_highlands", - "required": false - }, - { - "id": "terralith:brushland", - "required": false - }, - { - "id": "terralith:fractured_savanna", - "required": false - }, - { - "id": "terralith:savanna_badlands", - "required": false - }, - { - "id": "terralith:savanna_slopes", - "required": false - }, - { - "id": "biomesoplenty:dryland", - "required": false - }, - { - "id": "biomesoplenty:lush_savanna", - "required": false - }, - { - "id": "biomesoplenty:scrubland", - "required": false - }, - { - "id": "biomesoplenty:wooded_scrubland", - "required": false - } - ] -} diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/turnip.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/turnip.json deleted file mode 100644 index fe90ce0c3..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/turnip.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:jungle", - "minecraft:sparse_jungle", - "minecraft:bamboo_jungle", - { - "id": "byg:crag_gardens", - "required": false - }, - { - "id": "byg:guiana_shield", - "required": false - }, - { - "id": "byg:jacaranda_forest", - "required": false - }, - { - "id": "byg:tropical_rainforest", - "required": false - }, - { - "id": "terralith:jungle_mountains", - "required": false - }, - { - "id": "terralith:rocky_jungle", - "required": false - }, - { - "id": "terralith:tropical_jungle", - "required": false - }, - { - "id": "biomesoplenty:floodplain", - "required": false - }, - { - "id": "biomesoplenty:fungal_jungle", - "required": false - }, - { - "id": "biomesoplenty:rainforest", - "required": false - }, - { - "id": "biomesoplenty:rocky_rainforest", - "required": false - } - ] -} diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/vanilla.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/vanilla.json deleted file mode 100644 index ac167af52..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/vanilla.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:jungle", - "minecraft:sparse_jungle", - "minecraft:bamboo_jungle", - { - "id": "terralith:amethyst_canyon", - "required": false - }, - { - "id": "terralith:amethyst_rainforest", - "required": false - }, - { - "id": "terralith:jungle_mountains", - "required": false - }, - { - "id": "terralith:rocky_jungle", - "required": false - }, - { - "id": "terralith:tropical_jungle", - "required": false - }, - { - "id": "biomesoplenty:floodplain", - "required": false - }, - { - "id": "biomesoplenty:fungal_jungle", - "required": false - }, - { - "id": "biomesoplenty:rainforest", - "required": false - }, - { - "id": "biomesoplenty:rocky_rainforest", - "required": false - } - ] -} diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/yam.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/yam.json deleted file mode 100644 index 65dd76dff..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/yam.json +++ /dev/null @@ -1,80 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:savanna", - "minecraft:savanna_plateau", - "minecraft:windswept_savanna", - { - "id": "terralith:arid_highlands", - "required": false - }, - { - "id": "terralith:brushland", - "required": false - }, - { - "id": "terralith:cold_shrubland", - "required": false - }, - { - "id": "terralith:fractured_savanna", - "required": false - }, - { - "id": "terralith:rocky_mountains", - "required": false - }, - { - "id": "terralith:sakura_grove", - "required": false - }, - { - "id": "terralith:sakura_valley", - "required": false - }, - { - "id": "terralith:savanna_badlands", - "required": false - }, - { - "id": "terralith:savanna_slopes", - "required": false - }, - { - "id": "terralith:scarlet_mountains", - "required": false - }, - { - "id": "terralith:shield", - "required": false - }, - { - "id": "terralith:shrubland", - "required": false - }, - { - "id": "terralith:wintry_forest", - "required": false - }, - { - "id": "terralith:wintry_lowlands", - "required": false - }, - { - "id": "biomesoplenty:dryland", - "required": false - }, - { - "id": "biomesoplenty:lush_savanna", - "required": false - }, - { - "id": "biomesoplenty:scrubland", - "required": false - }, - { - "id": "biomesoplenty:wooded_scrubland", - "required": false - } - ] -} diff --git a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/zucchini.json b/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/zucchini.json deleted file mode 100644 index 23e9ec483..000000000 --- a/src/main/generated/data/croptopia/tags/worldgen/biome/has_crop/zucchini.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:savanna", - "minecraft:savanna_plateau", - "minecraft:windswept_savanna", - { - "id": "terralith:arid_highlands", - "required": false - }, - { - "id": "terralith:brushland", - "required": false - }, - { - "id": "terralith:fractured_savanna", - "required": false - }, - { - "id": "terralith:savanna_badlands", - "required": false - }, - { - "id": "terralith:savanna_slopes", - "required": false - }, - { - "id": "biomesoplenty:dryland", - "required": false - }, - { - "id": "biomesoplenty:lush_savanna", - "required": false - }, - { - "id": "biomesoplenty:scrubland", - "required": false - }, - { - "id": "biomesoplenty:wooded_scrubland", - "required": false - } - ] -} diff --git a/src/main/java/com/epherical/croptopia/ClientFunctions.java b/src/main/java/com/epherical/croptopia/ClientFunctions.java index 960091897..ae0b174e2 100644 --- a/src/main/java/com/epherical/croptopia/ClientFunctions.java +++ b/src/main/java/com/epherical/croptopia/ClientFunctions.java @@ -13,7 +13,7 @@ public BlockColor registerLeafColors() { return (state, world, pos, tintIndex) -> world != null && pos != null ? BiomeColors.getAverageFoliageColor(world, pos) - : FoliageColor.getDefaultColor(); + : FoliageColor.FOLIAGE_DEFAULT; } public Block[] leaves() { diff --git a/src/main/java/com/epherical/croptopia/CroptopiaMod.java b/src/main/java/com/epherical/croptopia/CroptopiaMod.java index f3981eade..c911a46d6 100644 --- a/src/main/java/com/epherical/croptopia/CroptopiaMod.java +++ b/src/main/java/com/epherical/croptopia/CroptopiaMod.java @@ -6,23 +6,28 @@ import com.epherical.croptopia.config.CroptopiaConfig; import com.epherical.croptopia.config.IdentifierSerializer; import com.epherical.croptopia.config.TreeConfiguration; -import com.epherical.croptopia.items.SeedItem; import com.epherical.croptopia.register.Composter; import net.minecraft.core.BlockPos; +import net.minecraft.core.particles.ParticleTypes; +import net.minecraft.core.registries.Registries; +import net.minecraft.resources.ResourceKey; import net.minecraft.resources.ResourceLocation; import net.minecraft.world.entity.EntityType; import net.minecraft.world.item.Item; +import net.minecraft.world.item.enchantment.effects.SpawnParticlesEffect; import net.minecraft.world.level.BlockGetter; import net.minecraft.world.level.block.Block; -import net.minecraft.world.level.block.ComposterBlock; import net.minecraft.world.level.block.LeavesBlock; import net.minecraft.world.level.block.SoundType; +import net.minecraft.world.level.block.UntintedParticleLeavesBlock; import net.minecraft.world.level.block.state.BlockBehaviour; import net.minecraft.world.level.block.state.BlockState; import net.minecraft.world.level.material.MapColor; import java.util.ArrayList; +import static java.util.Objects.requireNonNull; + public record CroptopiaMod(PlatformAdapter platform, CroptopiaConfig config) { public static ArrayList cropItems = new ArrayList<>(); public static ArrayList cropBlocks = new ArrayList<>(); @@ -50,28 +55,35 @@ public static CroptopiaMod getInstance() { return mod; } - public static Item.Properties createGroup() { - return new Item.Properties(); + public static Item.Properties createGroup(ResourceLocation id) { + return new Item.Properties().setId(ResourceKey.create(Registries.ITEM, requireNonNull(id))); } public static ResourceLocation createIdentifier(String name) { return ResourceLocation.fromNamespaceAndPath(MiscNames.MOD_ID, name); } - public static BlockBehaviour.Properties createCropSettings() { - return BlockBehaviour.Properties.of().mapColor(MapColor.PLANT).noCollission().randomTicks().instabreak().sound(SoundType.CROP); + public static BlockBehaviour.Properties createCropSettings(ResourceLocation id) { + return BlockBehaviour.Properties.of().setId(ResourceKey.create(Registries.BLOCK, requireNonNull(id))). + mapColor(MapColor.PLANT).noCollission().randomTicks().instabreak().sound(SoundType.CROP); } - public static LeafCropBlock createLeavesBlock() { - return new LeafCropBlock(BlockBehaviour.Properties.of().mapColor(MapColor.PLANT).strength(0.2F).ignitedByLava().randomTicks().sound(SoundType.GRASS).noOcclusion().isValidSpawn(CroptopiaMod::canSpawnOnLeaves).isSuffocating((a, b, c) -> false).isViewBlocking((a, b, c) -> false)); + public static LeafCropBlock createLeavesBlock(ResourceLocation id) { + return new LeafCropBlock(BlockBehaviour.Properties.of().setId(ResourceKey.create(Registries.BLOCK, requireNonNull(id))). + mapColor(MapColor.PLANT).strength(0.2F).ignitedByLava().randomTicks().sound(SoundType.GRASS).noOcclusion().isValidSpawn(CroptopiaMod::canSpawnOnLeaves).isSuffocating((a, b, c) -> false).isViewBlocking((a, b, c) -> false)); } - public static LeavesBlock createRegularLeavesBlock() { - return new LeavesBlock(BlockBehaviour.Properties.of().mapColor(MapColor.PLANT).strength(0.2F).ignitedByLava().randomTicks().sound(SoundType.GRASS).noOcclusion().isValidSpawn(CroptopiaMod::canSpawnOnLeaves).isSuffocating(CroptopiaMod::never).isViewBlocking(CroptopiaMod::never)); + public static LeavesBlock createRegularLeavesBlock(ResourceLocation id) { + return new UntintedParticleLeavesBlock( + 0.1f, // REVIEW 1.21.5 + ParticleTypes.PALE_OAK_LEAVES, // REVIEW 1.21.5 + BlockBehaviour.Properties.of().setId(ResourceKey.create(Registries.BLOCK, requireNonNull(id))). + mapColor(MapColor.PLANT).strength(0.2F).ignitedByLava().randomTicks().sound(SoundType.GRASS).noOcclusion().isValidSpawn(CroptopiaMod::canSpawnOnLeaves).isSuffocating(CroptopiaMod::never).isViewBlocking(CroptopiaMod::never)); } - public static BlockBehaviour.Properties createSaplingSettings() { - return BlockBehaviour.Properties.of().mapColor(MapColor.PLANT).noCollission().randomTicks().instabreak().sound(SoundType.GRASS); + public static BlockBehaviour.Properties createSaplingSettings(ResourceLocation id) { + return BlockBehaviour.Properties.of().setId(ResourceKey.create(Registries.BLOCK, requireNonNull(id))). + mapColor(MapColor.PLANT).noCollission().randomTicks().instabreak().sound(SoundType.GRASS); } private static boolean never(BlockState state, BlockGetter world, BlockPos pos) { diff --git a/src/main/java/com/epherical/croptopia/blocks/CroptopiaCropBlock.java b/src/main/java/com/epherical/croptopia/blocks/CroptopiaCropBlock.java index 16e9c25b1..dd4e713d5 100644 --- a/src/main/java/com/epherical/croptopia/blocks/CroptopiaCropBlock.java +++ b/src/main/java/com/epherical/croptopia/blocks/CroptopiaCropBlock.java @@ -6,7 +6,6 @@ import net.minecraft.server.level.ServerPlayer; import net.minecraft.stats.Stats; import net.minecraft.tags.BlockTags; -import net.minecraft.world.InteractionHand; import net.minecraft.world.InteractionResult; import net.minecraft.world.entity.Entity; import net.minecraft.world.entity.player.Player; @@ -87,11 +86,6 @@ protected InteractionResult useWithoutItem(BlockState state, Level world, BlockP return InteractionResult.PASS; } - @Override - public void fallOn(Level world, BlockState state, BlockPos pos, Entity entity, float fallDistance) { - super.fallOn(world, state, pos, entity, fallDistance); - } - @Override protected ItemLike getBaseSeedId() { return seed != null ? seed : Items.AIR; diff --git a/src/main/java/com/epherical/croptopia/blocks/LeafCropBlock.java b/src/main/java/com/epherical/croptopia/blocks/LeafCropBlock.java index 44b51ddd3..f972be647 100644 --- a/src/main/java/com/epherical/croptopia/blocks/LeafCropBlock.java +++ b/src/main/java/com/epherical/croptopia/blocks/LeafCropBlock.java @@ -8,7 +8,6 @@ import net.minecraft.stats.Stats; import net.minecraft.tags.BlockTags; import net.minecraft.util.RandomSource; -import net.minecraft.world.InteractionHand; import net.minecraft.world.InteractionResult; import net.minecraft.world.entity.player.Player; import net.minecraft.world.item.ItemStack; @@ -16,6 +15,7 @@ import net.minecraft.world.level.Level; import net.minecraft.world.level.LevelAccessor; import net.minecraft.world.level.LevelReader; +import net.minecraft.world.level.ScheduledTickAccess; import net.minecraft.world.level.block.Block; import net.minecraft.world.level.block.LeavesBlock; import net.minecraft.world.level.block.state.BlockState; @@ -28,8 +28,6 @@ import net.minecraft.world.phys.shapes.Shapes; import net.minecraft.world.phys.shapes.VoxelShape; -import java.util.Random; - public class LeafCropBlock extends CroptopiaCropBlock { public static final IntegerProperty AGE = BlockStateProperties.AGE_3; public static final IntegerProperty DISTANCE = BlockStateProperties.DISTANCE; @@ -45,7 +43,7 @@ public VoxelShape getShape(BlockState state, BlockGetter world, BlockPos pos, Co @Override - public ItemStack getCloneItemStack(LevelReader $$0, BlockPos $$1, BlockState $$2) { + public ItemStack getCloneItemStack(LevelReader $$0, BlockPos $$1, BlockState $$2, boolean $$3) { return new ItemStack(this); } @@ -60,10 +58,12 @@ public boolean canSurvive(BlockState state, LevelReader world, BlockPos pos) { } @Override - public BlockState updateShape(BlockState state, Direction direction, BlockState neighborState, LevelAccessor world, BlockPos pos, BlockPos neighborPos) { + public BlockState updateShape(BlockState state, LevelReader world, ScheduledTickAccess st, + BlockPos pos, Direction direction,BlockPos neighborPos, BlockState neighborState, RandomSource r) { + int distance = getDistanceFromLog(neighborState) + 1; if (distance != 1 || state.getValue(DISTANCE) != distance) { - world.scheduleTick(pos, this, 1); + st.scheduleTick(pos, this, 1); } return state; @@ -136,7 +136,7 @@ public void tick(BlockState state, ServerLevel world, BlockPos pos, RandomSource } @Override - public int getLightBlock(BlockState state, BlockGetter world, BlockPos pos) { + public int getLightBlock(BlockState state) { return 1; } diff --git a/src/main/java/com/epherical/croptopia/blocks/TallCropBlock.java b/src/main/java/com/epherical/croptopia/blocks/TallCropBlock.java index 35dfa7eec..b08eff98d 100644 --- a/src/main/java/com/epherical/croptopia/blocks/TallCropBlock.java +++ b/src/main/java/com/epherical/croptopia/blocks/TallCropBlock.java @@ -26,7 +26,7 @@ public TallCropBlock(Properties settings) { @Override public VoxelShape getShape(BlockState state, BlockGetter world, BlockPos pos, CollisionContext context) { - Vec3 offset = state.getOffset(world, pos); + Vec3 offset = state.getOffset(pos); return AGE_TO_SHAPE[state.getValue(this.getAgeProperty())].move(offset.x, offset.y, offset.z); } } diff --git a/src/main/java/com/epherical/croptopia/common/Tags.java b/src/main/java/com/epherical/croptopia/common/Tags.java index 5c1978e03..bd00adc66 100644 --- a/src/main/java/com/epherical/croptopia/common/Tags.java +++ b/src/main/java/com/epherical/croptopia/common/Tags.java @@ -2,9 +2,7 @@ import com.epherical.croptopia.CroptopiaMod; import com.google.common.collect.ImmutableList; -import net.minecraft.core.Registry; import net.minecraft.core.registries.Registries; -import net.minecraft.tags.BiomeTags; import net.minecraft.tags.TagKey; import net.minecraft.world.level.biome.Biome; diff --git a/src/main/java/com/epherical/croptopia/common/generator/ConfiguredFeatureKeys.java b/src/main/java/com/epherical/croptopia/common/generator/ConfiguredFeatureKeys.java index 32cdad5e1..9198ed743 100644 --- a/src/main/java/com/epherical/croptopia/common/generator/ConfiguredFeatureKeys.java +++ b/src/main/java/com/epherical/croptopia/common/generator/ConfiguredFeatureKeys.java @@ -4,9 +4,35 @@ import net.minecraft.world.level.levelgen.feature.ConfiguredFeature; import static com.epherical.croptopia.CroptopiaMod.createIdentifier; -import static com.epherical.croptopia.common.ItemNamesV2.*; -import static net.minecraft.core.registries.Registries.*; -import static net.minecraft.resources.ResourceKey.*; +import static com.epherical.croptopia.common.ItemNamesV2.ALMOND; +import static com.epherical.croptopia.common.ItemNamesV2.APPLE; +import static com.epherical.croptopia.common.ItemNamesV2.APRICOT; +import static com.epherical.croptopia.common.ItemNamesV2.AVOCADO; +import static com.epherical.croptopia.common.ItemNamesV2.BANANA; +import static com.epherical.croptopia.common.ItemNamesV2.CASHEW; +import static com.epherical.croptopia.common.ItemNamesV2.CHERRY; +import static com.epherical.croptopia.common.ItemNamesV2.CINNAMON; +import static com.epherical.croptopia.common.ItemNamesV2.COCONUT; +import static com.epherical.croptopia.common.ItemNamesV2.DATE; +import static com.epherical.croptopia.common.ItemNamesV2.DRAGONFRUIT; +import static com.epherical.croptopia.common.ItemNamesV2.FIG; +import static com.epherical.croptopia.common.ItemNamesV2.GRAPEFRUIT; +import static com.epherical.croptopia.common.ItemNamesV2.KUMQUAT; +import static com.epherical.croptopia.common.ItemNamesV2.LEMON; +import static com.epherical.croptopia.common.ItemNamesV2.LIME; +import static com.epherical.croptopia.common.ItemNamesV2.MANGO; +import static com.epherical.croptopia.common.ItemNamesV2.NECTARINE; +import static com.epherical.croptopia.common.ItemNamesV2.NUTMEG; +import static com.epherical.croptopia.common.ItemNamesV2.ORANGE; +import static com.epherical.croptopia.common.ItemNamesV2.PEACH; +import static com.epherical.croptopia.common.ItemNamesV2.PEAR; +import static com.epherical.croptopia.common.ItemNamesV2.PECAN; +import static com.epherical.croptopia.common.ItemNamesV2.PERSIMMON; +import static com.epherical.croptopia.common.ItemNamesV2.PLUM; +import static com.epherical.croptopia.common.ItemNamesV2.STARFRUIT; +import static com.epherical.croptopia.common.ItemNamesV2.WALNUT; +import static net.minecraft.core.registries.Registries.CONFIGURED_FEATURE; +import static net.minecraft.resources.ResourceKey.create; public class ConfiguredFeatureKeys { public static final ResourceKey> ALMOND_TREE_KEY = create(CONFIGURED_FEATURE, (createIdentifier(ALMOND + "_tree"))); diff --git a/src/main/java/com/epherical/croptopia/common/generator/PlacedFeatureKeys.java b/src/main/java/com/epherical/croptopia/common/generator/PlacedFeatureKeys.java index 7c60b1a14..ce88e9bc1 100644 --- a/src/main/java/com/epherical/croptopia/common/generator/PlacedFeatureKeys.java +++ b/src/main/java/com/epherical/croptopia/common/generator/PlacedFeatureKeys.java @@ -4,7 +4,33 @@ import net.minecraft.world.level.levelgen.placement.PlacedFeature; import static com.epherical.croptopia.CroptopiaMod.createIdentifier; -import static com.epherical.croptopia.common.ItemNamesV2.*; +import static com.epherical.croptopia.common.ItemNamesV2.ALMOND; +import static com.epherical.croptopia.common.ItemNamesV2.APPLE; +import static com.epherical.croptopia.common.ItemNamesV2.APRICOT; +import static com.epherical.croptopia.common.ItemNamesV2.AVOCADO; +import static com.epherical.croptopia.common.ItemNamesV2.BANANA; +import static com.epherical.croptopia.common.ItemNamesV2.CASHEW; +import static com.epherical.croptopia.common.ItemNamesV2.CHERRY; +import static com.epherical.croptopia.common.ItemNamesV2.CINNAMON; +import static com.epherical.croptopia.common.ItemNamesV2.COCONUT; +import static com.epherical.croptopia.common.ItemNamesV2.DATE; +import static com.epherical.croptopia.common.ItemNamesV2.DRAGONFRUIT; +import static com.epherical.croptopia.common.ItemNamesV2.FIG; +import static com.epherical.croptopia.common.ItemNamesV2.GRAPEFRUIT; +import static com.epherical.croptopia.common.ItemNamesV2.KUMQUAT; +import static com.epherical.croptopia.common.ItemNamesV2.LEMON; +import static com.epherical.croptopia.common.ItemNamesV2.LIME; +import static com.epherical.croptopia.common.ItemNamesV2.MANGO; +import static com.epherical.croptopia.common.ItemNamesV2.NECTARINE; +import static com.epherical.croptopia.common.ItemNamesV2.NUTMEG; +import static com.epherical.croptopia.common.ItemNamesV2.ORANGE; +import static com.epherical.croptopia.common.ItemNamesV2.PEACH; +import static com.epherical.croptopia.common.ItemNamesV2.PEAR; +import static com.epherical.croptopia.common.ItemNamesV2.PECAN; +import static com.epherical.croptopia.common.ItemNamesV2.PERSIMMON; +import static com.epherical.croptopia.common.ItemNamesV2.PLUM; +import static com.epherical.croptopia.common.ItemNamesV2.STARFRUIT; +import static com.epherical.croptopia.common.ItemNamesV2.WALNUT; import static net.minecraft.core.registries.Registries.PLACED_FEATURE; import static net.minecraft.resources.ResourceKey.create; diff --git a/src/main/java/com/epherical/croptopia/config/CroptopiaConfig.java b/src/main/java/com/epherical/croptopia/config/CroptopiaConfig.java index 4a91c98cd..c663320dd 100644 --- a/src/main/java/com/epherical/croptopia/config/CroptopiaConfig.java +++ b/src/main/java/com/epherical/croptopia/config/CroptopiaConfig.java @@ -6,7 +6,6 @@ import com.epherical.epherolib.libs.org.spongepowered.configurate.loader.AbstractConfigurationLoader; import com.epherical.epherolib.libs.org.spongepowered.configurate.serialize.SerializationException; import com.google.common.collect.HashMultimap; -import com.google.common.collect.Multimap; import com.google.common.collect.TreeMultimap; import net.minecraft.core.registries.Registries; import net.minecraft.resources.ResourceKey; @@ -23,7 +22,33 @@ import java.util.List; import java.util.Map; -import static com.epherical.croptopia.common.generator.PlacedFeatureKeys.*; +import static com.epherical.croptopia.common.generator.PlacedFeatureKeys.ALMOND_TREE_PLACED_KEY; +import static com.epherical.croptopia.common.generator.PlacedFeatureKeys.APPLE_TREE_PLACED_KEY; +import static com.epherical.croptopia.common.generator.PlacedFeatureKeys.APRICOT_TREE_PLACED_KEY; +import static com.epherical.croptopia.common.generator.PlacedFeatureKeys.AVOCADO_TREE_PLACED_KEY; +import static com.epherical.croptopia.common.generator.PlacedFeatureKeys.BANANA_TREE_PLACED_KEY; +import static com.epherical.croptopia.common.generator.PlacedFeatureKeys.CASHEW_TREE_PLACED_KEY; +import static com.epherical.croptopia.common.generator.PlacedFeatureKeys.CHERRY_TREE_PLACED_KEY; +import static com.epherical.croptopia.common.generator.PlacedFeatureKeys.CINNAMON_TREE_PLACED_KEY; +import static com.epherical.croptopia.common.generator.PlacedFeatureKeys.COCONUT_TREE_PLACED_KEY; +import static com.epherical.croptopia.common.generator.PlacedFeatureKeys.DATE_TREE_PLACED_KEY; +import static com.epherical.croptopia.common.generator.PlacedFeatureKeys.DRAGONFRUIT_TREE_PLACED_KEY; +import static com.epherical.croptopia.common.generator.PlacedFeatureKeys.FIG_TREE_PLACED_KEY; +import static com.epherical.croptopia.common.generator.PlacedFeatureKeys.GRAPEFRUIT_TREE_PLACED_KEY; +import static com.epherical.croptopia.common.generator.PlacedFeatureKeys.KUMQUAT_TREE_PLACED_KEY; +import static com.epherical.croptopia.common.generator.PlacedFeatureKeys.LEMON_TREE_PLACED_KEY; +import static com.epherical.croptopia.common.generator.PlacedFeatureKeys.LIME_TREE_PLACED_KEY; +import static com.epherical.croptopia.common.generator.PlacedFeatureKeys.MANGO_TREE_PLACED_KEY; +import static com.epherical.croptopia.common.generator.PlacedFeatureKeys.NECTARINE_TREE_PLACED_KEY; +import static com.epherical.croptopia.common.generator.PlacedFeatureKeys.NUTMEG_TREE_PLACED_KEY; +import static com.epherical.croptopia.common.generator.PlacedFeatureKeys.ORANGE_TREE_PLACED_KEY; +import static com.epherical.croptopia.common.generator.PlacedFeatureKeys.PEACH_TREE_PLACED_KEY; +import static com.epherical.croptopia.common.generator.PlacedFeatureKeys.PEAR_TREE_PLACED_KEY; +import static com.epherical.croptopia.common.generator.PlacedFeatureKeys.PECAN_TREE_PLACED_KEY; +import static com.epherical.croptopia.common.generator.PlacedFeatureKeys.PERSIMMON_TREE_PLACED_KEY; +import static com.epherical.croptopia.common.generator.PlacedFeatureKeys.PLUM_TREE_PLACED_KEY; +import static com.epherical.croptopia.common.generator.PlacedFeatureKeys.STARFRUIT_TREE_PLACED_KEY; +import static com.epherical.croptopia.common.generator.PlacedFeatureKeys.WALNUT_TREE_PLACED_KEY; public class CroptopiaConfig extends CommonConfig { diff --git a/src/main/java/com/epherical/croptopia/config/IdentifierSerializer.java b/src/main/java/com/epherical/croptopia/config/IdentifierSerializer.java index 07f401995..d2983cc4c 100644 --- a/src/main/java/com/epherical/croptopia/config/IdentifierSerializer.java +++ b/src/main/java/com/epherical/croptopia/config/IdentifierSerializer.java @@ -3,13 +3,13 @@ import com.epherical.epherolib.libs.org.spongepowered.configurate.ConfigurationNode; import com.epherical.epherolib.libs.org.spongepowered.configurate.serialize.SerializationException; import com.epherical.epherolib.libs.org.spongepowered.configurate.serialize.TypeSerializer; +import net.minecraft.ResourceLocationException; +import net.minecraft.resources.ResourceLocation; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; import java.lang.reflect.Type; import java.util.List; -import net.minecraft.ResourceLocationException; -import net.minecraft.resources.ResourceLocation; /** * Serializes an {@link ResourceLocation} to a configuration object. diff --git a/src/main/java/com/epherical/croptopia/config/TreeConfiguration.java b/src/main/java/com/epherical/croptopia/config/TreeConfiguration.java index d578650f6..841b2b775 100644 --- a/src/main/java/com/epherical/croptopia/config/TreeConfiguration.java +++ b/src/main/java/com/epherical/croptopia/config/TreeConfiguration.java @@ -5,6 +5,10 @@ import com.epherical.epherolib.libs.org.spongepowered.configurate.serialize.TypeSerializer; import com.google.common.collect.SetMultimap; import net.minecraft.core.registries.Registries; +import net.minecraft.resources.ResourceKey; +import net.minecraft.resources.ResourceLocation; +import net.minecraft.world.level.biome.Biome; +import net.minecraft.world.level.levelgen.placement.PlacedFeature; import java.lang.reflect.Type; import java.util.ArrayList; @@ -12,12 +16,6 @@ import java.util.List; import java.util.Set; -import net.minecraft.core.Registry; -import net.minecraft.resources.ResourceKey; -import net.minecraft.resources.ResourceLocation; -import net.minecraft.world.level.biome.Biome; -import net.minecraft.world.level.levelgen.placement.PlacedFeature; - import static com.epherical.croptopia.CroptopiaMod.createIdentifier; public class TreeConfiguration { diff --git a/src/main/java/com/epherical/croptopia/items/CroptopiaSaplingItem.java b/src/main/java/com/epherical/croptopia/items/CroptopiaSaplingItem.java index 71a9c9055..2c451087d 100644 --- a/src/main/java/com/epherical/croptopia/items/CroptopiaSaplingItem.java +++ b/src/main/java/com/epherical/croptopia/items/CroptopiaSaplingItem.java @@ -1,12 +1,12 @@ package com.epherical.croptopia.items; import net.minecraft.world.InteractionResult; -import net.minecraft.world.item.ItemNameBlockItem; +import net.minecraft.world.item.BlockItem; import net.minecraft.world.item.context.UseOnContext; import net.minecraft.world.level.block.Block; import net.minecraft.world.level.block.state.BlockState; -public class CroptopiaSaplingItem extends ItemNameBlockItem { +public class CroptopiaSaplingItem extends BlockItem { private final Block saplingFruitLeafBlock; private final Block vanillaLeafBlock; diff --git a/src/main/java/com/epherical/croptopia/items/Drink.java b/src/main/java/com/epherical/croptopia/items/Drink.java index 21fb3e66f..a66f64b95 100644 --- a/src/main/java/com/epherical/croptopia/items/Drink.java +++ b/src/main/java/com/epherical/croptopia/items/Drink.java @@ -4,34 +4,22 @@ import net.minecraft.advancements.CriteriaTriggers; import net.minecraft.core.component.DataComponents; import net.minecraft.server.level.ServerPlayer; -import net.minecraft.sounds.SoundEvent; import net.minecraft.stats.Stats; import net.minecraft.world.entity.LivingEntity; import net.minecraft.world.entity.player.Player; import net.minecraft.world.item.Item; import net.minecraft.world.item.ItemStack; -import net.minecraft.world.item.UseAnim; +import net.minecraft.world.item.Items; import net.minecraft.world.level.Level; - public class Drink extends Item { - public Drink(Properties settings) { - super(settings); - } - - @Override - public UseAnim getUseAnimation(ItemStack stack) { - return UseAnim.DRINK; + super(settings.usingConvertsTo(Items.GLASS_BOTTLE)); } - @Override - public SoundEvent getEatingSound() { - return getDrinkingSound(); - } - - + // REVIEW 1.21.3 - with the new Consumable component, I don't think any of this is necessary any more. + /** @Override public ItemStack finishUsingItem(ItemStack stack, Level world, LivingEntity user) { Player playerEntity = user instanceof Player ? (Player)user : null; @@ -42,7 +30,7 @@ public ItemStack finishUsingItem(ItemStack stack, Level world, LivingEntity user if (playerEntity != null) { playerEntity.awardStat(Stats.ITEM_USED.get(this)); if (!playerEntity.getAbilities().instabuild) { - if (stack.has(DataComponents.FOOD)) { + if (isEdible()) { CroptopiaMod.getInstance().platform().invokeDrinkEvent(stack, playerEntity); user.eat(world, stack); } @@ -50,17 +38,16 @@ public ItemStack finishUsingItem(ItemStack stack, Level world, LivingEntity user } if (playerEntity == null || !playerEntity.getAbilities().instabuild) { - if (stack.isEmpty() && getCraftingRemainingItem() != null) { + if (stack.isEmpty()) { return new ItemStack(getCraftingRemainingItem()); } - if (playerEntity != null && getCraftingRemainingItem() != null) { - if (!playerEntity.getInventory().add(new ItemStack(getCraftingRemainingItem()))) { - playerEntity.drop(new ItemStack(getCraftingRemainingItem()), true); - } + if (playerEntity != null) { + playerEntity.getInventory().add(new ItemStack(getCraftingRemainingItem())); } } return stack; } + **/ } diff --git a/src/main/java/com/epherical/croptopia/items/ReferenceItem.java b/src/main/java/com/epherical/croptopia/items/ReferenceItem.java index e8447e3f8..db97a933a 100644 --- a/src/main/java/com/epherical/croptopia/items/ReferenceItem.java +++ b/src/main/java/com/epherical/croptopia/items/ReferenceItem.java @@ -4,9 +4,9 @@ import net.minecraft.world.item.Item; import net.minecraft.world.item.ItemStack; import net.minecraft.world.item.TooltipFlag; -import net.minecraft.world.level.Level; +import net.minecraft.world.item.component.TooltipDisplay; -import java.util.List; +import java.util.function.Consumer; public class ReferenceItem extends Item { @@ -18,8 +18,8 @@ public ReferenceItem(Properties properties, Component component) { } @Override - public void appendHoverText(ItemStack item, TooltipContext level, List tooltip, TooltipFlag flag) { - super.appendHoverText(item, level, tooltip, flag); - tooltip.add(component); + public void appendHoverText(ItemStack item, TooltipContext context, TooltipDisplay display, Consumer list, TooltipFlag flag) { + super.appendHoverText(item, context, display, list, flag); + list.accept(component); } } diff --git a/src/main/java/com/epherical/croptopia/items/SeedItem.java b/src/main/java/com/epherical/croptopia/items/SeedItem.java index 74afcac1f..09fcb748b 100644 --- a/src/main/java/com/epherical/croptopia/items/SeedItem.java +++ b/src/main/java/com/epherical/croptopia/items/SeedItem.java @@ -1,16 +1,15 @@ package com.epherical.croptopia.items; import com.epherical.croptopia.blocks.CroptopiaCropBlock; -import net.minecraft.ChatFormatting; import net.minecraft.core.BlockPos; import net.minecraft.core.Direction; import net.minecraft.network.chat.Component; -import net.minecraft.network.chat.Style; import net.minecraft.tags.TagKey; import net.minecraft.world.InteractionResult; -import net.minecraft.world.item.ItemNameBlockItem; +import net.minecraft.world.item.BlockItem; import net.minecraft.world.item.ItemStack; import net.minecraft.world.item.TooltipFlag; +import net.minecraft.world.item.component.TooltipDisplay; import net.minecraft.world.item.context.UseOnContext; import net.minecraft.world.level.Level; import net.minecraft.world.level.biome.Biome; @@ -18,11 +17,10 @@ import net.minecraft.world.level.block.FarmBlock; import net.minecraft.world.level.block.state.BlockState; -import java.awt.*; import java.util.List; -import java.util.Locale; +import java.util.function.Consumer; -public class SeedItem extends ItemNameBlockItem { +public class SeedItem extends BlockItem { private TagKey category; @@ -46,7 +44,7 @@ public InteractionResult useOn(UseOnContext context) { } @Override - public void appendHoverText(ItemStack stack, TooltipContext context, List tooltip, TooltipFlag flag) { + public void appendHoverText(ItemStack item, TooltipContext context, TooltipDisplay display, Consumer list, TooltipFlag flag) { Component text = Component.translatable("info.croptopia.seed"); String[] translated = text.getString().split("\n"); /*if (translated.length >= 2) { diff --git a/src/main/java/com/epherical/croptopia/items/Soup.java b/src/main/java/com/epherical/croptopia/items/Soup.java index bf1151fbe..152218723 100644 --- a/src/main/java/com/epherical/croptopia/items/Soup.java +++ b/src/main/java/com/epherical/croptopia/items/Soup.java @@ -1,25 +1,21 @@ package com.epherical.croptopia.items; -import net.minecraft.core.component.DataComponents; -import net.minecraft.world.entity.LivingEntity; -import net.minecraft.world.entity.player.Player; import net.minecraft.world.item.Item; -import net.minecraft.world.item.ItemStack; import net.minecraft.world.item.Items; -import net.minecraft.world.level.Level; public class Soup extends Item { - public Soup(Properties settings) { - super(settings); + super(settings.usingConvertsTo(Items.BOWL)); } + // REVIEW 1.21.3 - with the new Consumable component, I don't think any of this is necessary any more. + /** public ItemStack finishUsingItem(ItemStack stack, Level world, LivingEntity user) { Player playerEntity = user instanceof Player ? (Player)user : null; if (playerEntity != null) { if (!playerEntity.getAbilities().instabuild) { - if (stack.has(DataComponents.FOOD)) { + if (isEdible()) { user.eat(world, stack); } } @@ -37,4 +33,5 @@ public ItemStack finishUsingItem(ItemStack stack, Level world, LivingEntity user return stack; } + **/ } diff --git a/src/main/java/com/epherical/croptopia/register/Content.java b/src/main/java/com/epherical/croptopia/register/Content.java index a4fa8d912..dc707bb68 100644 --- a/src/main/java/com/epherical/croptopia/register/Content.java +++ b/src/main/java/com/epherical/croptopia/register/Content.java @@ -26,12 +26,15 @@ import com.epherical.croptopia.util.RegistryDelay; import net.minecraft.ChatFormatting; import net.minecraft.core.Holder; +import net.minecraft.core.registries.Registries; import net.minecraft.network.chat.Component; import net.minecraft.network.chat.Style; +import net.minecraft.resources.ResourceKey; import net.minecraft.resources.ResourceLocation; +import net.minecraft.world.item.BlockItem; import net.minecraft.world.item.Item; -import net.minecraft.world.item.ItemNameBlockItem; import net.minecraft.world.item.Items; +import net.minecraft.world.item.component.Consumables; import net.minecraft.world.level.ItemLike; import net.minecraft.world.level.block.Block; import net.minecraft.world.level.block.Blocks; @@ -48,8 +51,31 @@ import static com.epherical.croptopia.CroptopiaMod.createGroup; import static com.epherical.croptopia.CroptopiaMod.createIdentifier; -import static com.epherical.croptopia.common.ItemNamesV2.*; -import static com.epherical.croptopia.util.FoodConstructor.*; +import static com.epherical.croptopia.util.FoodConstructor.FURNACE_3; +import static com.epherical.croptopia.util.FoodConstructor.FURNACE_4; +import static com.epherical.croptopia.util.FoodConstructor.FURNACE_5; +import static com.epherical.croptopia.util.FoodConstructor.FURNACE_7; +import static com.epherical.croptopia.util.FoodConstructor.RAW_CROP_1; +import static com.epherical.croptopia.util.FoodConstructor.RAW_CROP_2; +import static com.epherical.croptopia.util.FoodConstructor.RAW_MEAT_1; +import static com.epherical.croptopia.util.FoodConstructor.REG_1; +import static com.epherical.croptopia.util.FoodConstructor.REG_10; +import static com.epherical.croptopia.util.FoodConstructor.REG_11; +import static com.epherical.croptopia.util.FoodConstructor.REG_12; +import static com.epherical.croptopia.util.FoodConstructor.REG_13; +import static com.epherical.croptopia.util.FoodConstructor.REG_14; +import static com.epherical.croptopia.util.FoodConstructor.REG_15; +import static com.epherical.croptopia.util.FoodConstructor.REG_16; +import static com.epherical.croptopia.util.FoodConstructor.REG_18; +import static com.epherical.croptopia.util.FoodConstructor.REG_2; +import static com.epherical.croptopia.util.FoodConstructor.REG_20; +import static com.epherical.croptopia.util.FoodConstructor.REG_3; +import static com.epherical.croptopia.util.FoodConstructor.REG_4; +import static com.epherical.croptopia.util.FoodConstructor.REG_5; +import static com.epherical.croptopia.util.FoodConstructor.REG_6; +import static com.epherical.croptopia.util.FoodConstructor.REG_7; +import static com.epherical.croptopia.util.FoodConstructor.REG_8; +import static com.epherical.croptopia.util.FoodConstructor.REG_9; public class Content { @@ -496,7 +522,7 @@ public static void registerBlocks(RegisterFunction register) { entry.accept(register); } - SALT_ORE_BLOCK = register.register(createIdentifier(BlockNames.SALT_ORE), () ->new Block(BlockBehaviour.Properties.of().mapColor(MapColor.SAND).strength(0.5F).sound(SoundType.SAND))); + SALT_ORE_BLOCK = register.register(createIdentifier(BlockNames.SALT_ORE), id ->new Block(BlockBehaviour.Properties.of().setId(ResourceKey.create(Registries.BLOCK, id)).mapColor(MapColor.SAND).strength(0.5F).sound(SoundType.SAND))); } @@ -505,194 +531,195 @@ public static void registerItems(RegisterFunction register) { entry.accept(register); } - PAPRIKA = register.register(createIdentifier(ItemNamesV2.PAPRIKA), () -> new Item(createGroup())); - SALT = register.register(createIdentifier(ItemNamesV2.SALT), () -> new Item(createGroup())); - OLIVE_OIL = register.register(createIdentifier(ItemNamesV2.OLIVE_OIL), () -> new Item(createGroup())); - CHEESE = register.register(createIdentifier(ItemNamesV2.CHEESE), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_3)))); - FLOUR = register.register(createIdentifier(ItemNamesV2.FLOUR), () -> new Item(createGroup())); - BUTTER = register.register(createIdentifier(ItemNamesV2.BUTTER), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_3)))); - NOODLE = register.register(createIdentifier(ItemNamesV2.NOODLE), () -> new Item(createGroup())); - TOFU = register.register(createIdentifier(ItemNamesV2.TOFU), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_5)))); - CHOCOLATE = register.register(createIdentifier(ItemNamesV2.CHOCOLATE), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_5)))); - TORTILLA = register.register(createIdentifier(ItemNamesV2.TORTILLA), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_5)))); - SOY_SAUCE = register.register(createIdentifier(ItemNamesV2.SOY_SAUCE), () -> new Item(createGroup())); - DOUGH = register.register(createIdentifier(ItemNamesV2.DOUGH), () -> new Item(createGroup())); - RAVIOLI = register.register(createIdentifier(ItemNamesV2.RAVIOLI), () -> new Item(createGroup())); - SALSA = register.register(createIdentifier(ItemNamesV2.SALSA), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_5)))); - ARTICHOKE_DIP = register.register(createIdentifier(ItemNamesV2.ARTICHOKE_DIP), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_5)))); - PEPPERONI = register.register(createIdentifier(ItemNamesV2.PEPPERONI), () -> new Item(createGroup().food(FoodConstructor.createBuilder(REG_5).build()))); - COFFEE = register.register(createIdentifier(ItemNamesV2.COFFEE), () -> new Drink(createGroup().food(FoodConstructor.createBuilder(REG_5).alwaysEdible().build()).craftRemainder(Items.GLASS_BOTTLE))); - LEMONADE = register.register(createIdentifier(ItemNamesV2.LEMONADE), () -> new Drink(createGroup().food(FoodConstructor.createBuilder(REG_5).alwaysEdible().build()).craftRemainder(Items.GLASS_BOTTLE))); - LIMEADE = register.register(createIdentifier(ItemNamesV2.LIMEADE), () -> new Drink(createGroup().food(FoodConstructor.createBuilder(REG_5).alwaysEdible().build()).craftRemainder(Items.GLASS_BOTTLE))); - SOY_MILK = register.register(createIdentifier(ItemNamesV2.SOY_MILK), () -> new Drink(createGroup().food(FoodConstructor.createBuilder(REG_5).alwaysEdible().build()).craftRemainder(Items.GLASS_BOTTLE))); - KALE_SMOOTHIE = register.register(createIdentifier(ItemNamesV2.KALE_SMOOTHIE), () -> new Drink(createGroup().food(FoodConstructor.createBuilder(REG_14).alwaysEdible().build()).craftRemainder(Items.GLASS_BOTTLE))); - FRUIT_SMOOTHIE = register.register(createIdentifier(ItemNamesV2.FRUIT_SMOOTHIE), () -> new Drink(createGroup().food(FoodConstructor.createBuilder(REG_7).alwaysEdible().build()).craftRemainder(Items.GLASS_BOTTLE))); - CHOCOLATE_MILKSHAKE = register.register(createIdentifier(ItemNamesV2.CHOCOLATE_MILKSHAKE), () -> new Drink(createGroup().food(FoodConstructor.createBuilder(REG_7).alwaysEdible().build()).craftRemainder(Items.GLASS_BOTTLE))); - BEER = register.register(createIdentifier(ItemNamesV2.BEER), () -> new Drink(createGroup().food(FoodConstructor.createBuilder(REG_7).alwaysEdible().build()).craftRemainder(Items.GLASS_BOTTLE))); - WINE = register.register(createIdentifier(ItemNamesV2.WINE), () -> new Drink(createGroup().food(FoodConstructor.createBuilder(REG_7).alwaysEdible().build()).craftRemainder(Items.GLASS_BOTTLE))); - MEAD = register.register(createIdentifier(ItemNamesV2.MEAD), () -> new Drink(createGroup().food(FoodConstructor.createBuilder(REG_7).alwaysEdible().build()).craftRemainder(Items.GLASS_BOTTLE))); - RUM = register.register(createIdentifier(ItemNamesV2.RUM), () -> new Drink(createGroup().food(FoodConstructor.createBuilder(REG_7).alwaysEdible().build()).craftRemainder(Items.GLASS_BOTTLE))); - PUMPKIN_SPICE_LATTE = register.register(createIdentifier(ItemNamesV2.PUMPKIN_SPICE_LATTE), () -> new Drink(createGroup().food(FoodConstructor.createBuilder(REG_14).alwaysEdible().build()))); - BEEF_JERKY = register.register(createIdentifier(ItemNamesV2.BEEF_JERKY), () -> new Item(createGroup().food(FoodConstructor.createBuilder(REG_5).build()))); - PORK_JERKY = register.register(createIdentifier(ItemNamesV2.PORK_JERKY), () -> new Item(createGroup().food(FoodConstructor.createBuilder(REG_5).build()))); - KALE_CHIPS = register.register(createIdentifier(ItemNamesV2.KALE_CHIPS), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_5)))); - POTATO_CHIPS = register.register(createIdentifier(ItemNamesV2.POTATO_CHIPS), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_5)))); - STEAMED_RICE = register.register(createIdentifier(ItemNamesV2.STEAMED_RICE), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_5)))); - FRENCH_FRIES = register.register(createIdentifier(ItemNamesV2.FRENCH_FRIES), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_5)))); - SWEET_POTATO_FRIES = register.register(createIdentifier(ItemNamesV2.SWEET_POTATO_FRIES), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_5)))); - ONION_RINGS = register.register(createIdentifier(ItemNamesV2.ONION_RINGS), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_5)))); - DOUGHNUT = register.register(createIdentifier(ItemNamesV2.DOUGHNUT), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_5)))); - CUCUMBER_SALAD = register.register(createIdentifier(ItemNamesV2.CUCUMBER_SALAD), () -> new Soup(createGroup().food(FoodConstructor.createFoodBowl(REG_10)))); - CAESAR_SALAD = register.register(createIdentifier(ItemNamesV2.CAESAR_SALAD), () -> new Soup(createGroup().food(FoodConstructor.createFoodBowl(REG_10)))); - LEAFY_SALAD = register.register(createIdentifier(ItemNamesV2.LEAFY_SALAD), () -> new Soup(createGroup().food(FoodConstructor.createFoodBowl(REG_10)))); - FRUIT_SALAD = register.register(createIdentifier(ItemNamesV2.FRUIT_SALAD), () -> new Soup(createGroup().food(FoodConstructor.createFoodBowl(REG_10)))); - VEGGIE_SALAD = register.register(createIdentifier(ItemNamesV2.VEGGIE_SALAD), () -> new Soup(createGroup().food(FoodConstructor.createFoodBowl(REG_10)))); - PORK_AND_BEANS = register.register(createIdentifier(ItemNamesV2.PORK_AND_BEANS), () -> new Soup(createGroup().food(FoodConstructor.createFoodBowl(REG_10)))); - OATMEAL = register.register(createIdentifier(ItemNamesV2.OATMEAL), () -> new Soup(createGroup().food(FoodConstructor.createFoodBowl(REG_7)))); - LEEK_SOUP = register.register(createIdentifier(ItemNamesV2.LEEK_SOUP), () -> new Soup(createGroup().food(FoodConstructor.createFoodBowl(REG_7)))); - YOGHURT = register.register(createIdentifier(ItemNamesV2.YOGHURT), () -> new Soup(createGroup().food(FoodConstructor.createFoodBowl(REG_5)))); - SAUCY_CHIPS = register.register(createIdentifier(ItemNamesV2.SAUCY_CHIPS), () -> new Soup(createGroup().food(FoodConstructor.createFoodBowl(REG_7)))); - ROASTED_NUTS = register.register(createIdentifier(ItemNamesV2.ROASTED_NUTS), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_5)))); - TRAIL_MIX = register.register(createIdentifier(ItemNamesV2.TRAIL_MIX), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_10)))); - PROTEIN_BAR = register.register(createIdentifier(ItemNamesV2.PROTEIN_BAR), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_10)))); - NOUGAT = register.register(createIdentifier(ItemNamesV2.NOUGAT), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_7)))); - SCRAMBLED_EGGS = register.register(createIdentifier(ItemNamesV2.SCRAMBLED_EGGS), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_7)))); - BUTTERED_TOAST = register.register(createIdentifier(ItemNamesV2.BUTTERED_TOAST), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_9)))); - TOAST_WITH_JAM = register.register(createIdentifier(ItemNamesV2.TOAST_WITH_JAM), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_9)))); - HAM_SANDWICH = register.register(createIdentifier(ItemNamesV2.HAM_SANDWICH), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_10)))); - PEANUT_BUTTER_AND_JAM = register.register(createIdentifier(ItemNamesV2.PEANUT_BUTTER_AND_JAM), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_10)))); - BLT = register.register(createIdentifier(ItemNamesV2.BLT), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_10)))); - GRILLED_CHEESE = register.register(createIdentifier(ItemNamesV2.GRILLED_CHEESE), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_7)))); - TUNA_SANDWICH = register.register(createIdentifier(ItemNamesV2.TUNA_SANDWICH), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_10)))); - CHEESEBURGER = register.register(createIdentifier(ItemNamesV2.CHEESEBURGER), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_10)))); - HAMBURGER = register.register(createIdentifier(ItemNamesV2.HAMBURGER), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_10)))); - TOFUBURGER = register.register(createIdentifier(ItemNamesV2.TOFUBURGER), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_10)))); - PIZZA = register.register(createIdentifier(ItemNamesV2.PIZZA), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_10)))); - SUPREME_PIZZA = register.register(createIdentifier(ItemNamesV2.SUPREME_PIZZA), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_18)))); - CHEESE_PIZZA = register.register(createIdentifier(ItemNamesV2.CHEESE_PIZZA), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_14)))); - PINEAPPLE_PEPPERONI_PIZZA = register.register(createIdentifier(ItemNamesV2.PINEAPPLE_PEPPERONI_PIZZA), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_18)))); - LEMON_CHICKEN = register.register(createIdentifier(ItemNamesV2.LEMON_CHICKEN), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_10)))); - FRIED_CHICKEN = register.register(createIdentifier(ItemNamesV2.FRIED_CHICKEN), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_10)))); - CHICKEN_AND_NOODLES = register.register(createIdentifier(ItemNamesV2.CHICKEN_AND_NOODLES), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_10)))); - CHICKEN_AND_DUMPLINGS = register.register(createIdentifier(ItemNamesV2.CHICKEN_AND_DUMPLINGS), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_10)))); - TOFU_AND_DUMPLINGS = register.register(createIdentifier(ItemNamesV2.TOFU_AND_DUMPLINGS), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_14)))); - SPAGHETTI_SQUASH = register.register(createIdentifier(ItemNamesV2.SPAGHETTI_SQUASH), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_10)))); - CHICKEN_AND_RICE = register.register(createIdentifier(ItemNamesV2.CHICKEN_AND_RICE), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_10)))); - TACO = register.register(createIdentifier(ItemNamesV2.TACO), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_10)))); - SUSHI = register.register(createIdentifier(ItemNamesV2.SUSHI), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_10)))); - EGG_ROLL = register.register(createIdentifier(ItemNamesV2.EGG_ROLL), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_10)))); - CASHEW_CHICKEN = register.register(createIdentifier(ItemNamesV2.CASHEW_CHICKEN), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_14)))); - YAM_JAM = register.register(createIdentifier(ItemNamesV2.YAM_JAM), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_14)))); - BANANA_CREAM_PIE = register.register(createIdentifier(ItemNamesV2.BANANA_CREAM_PIE), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_14)))); - CANDY_CORN = register.register(createIdentifier(ItemNamesV2.CANDY_CORN), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_5)))); - RUM_RAISIN_ICE_CREAM = register.register(createIdentifier(ItemNamesV2.RUM_RAISIN_ICE_CREAM), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_14)))); - CHEESE_CAKE = register.register(createIdentifier(ItemNamesV2.CHEESE_CAKE), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_14)))); - BROWNIES = register.register(createIdentifier(ItemNamesV2.BROWNIES), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_10)))); - SNICKER_DOODLE = register.register(createIdentifier(ItemNamesV2.SNICKER_DOODLE), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_7)))); - BANANA_NUT_BREAD = register.register(createIdentifier(ItemNamesV2.BANANA_NUT_BREAD), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_10)))); - CANDIED_NUTS = register.register(createIdentifier(ItemNamesV2.CANDIED_NUTS), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_5)))); - ALMOND_BRITTLE = register.register(createIdentifier(ItemNamesV2.ALMOND_BRITTLE), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_7)))); - OATMEAL_COOKIE = register.register(createIdentifier(ItemNamesV2.RAISIN_OATMEAL_COOKIE), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_5)))); - NUTTY_COOKIE = register.register(createIdentifier(ItemNamesV2.NUTTY_COOKIE), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_5)))); - BURRITO = register.register(createIdentifier(ItemNamesV2.BURRITO), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_10)))); - TOSTADA = register.register(createIdentifier(ItemNamesV2.TOSTADA), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_10)))); - HORCHATA = register.register(createIdentifier(ItemNamesV2.HORCHATA), () -> new Drink(createGroup().food(FoodConstructor.createFood(REG_10)))); - CARNITAS = register.register(createIdentifier(ItemNamesV2.CARNITAS), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_10)))); - FAJITAS = register.register(createIdentifier(ItemNamesV2.FAJITAS), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_10)))); - ENCHILADA = register.register(createIdentifier(ItemNamesV2.ENCHILADA), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_10)))); - CHURROS = register.register(createIdentifier(ItemNamesV2.CHURROS), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_5)))); - TAMALES = register.register(createIdentifier(ItemNamesV2.TAMALES), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_14)))); - TRES_LECHE_CAKE = register.register(createIdentifier(ItemNamesV2.TRES_LECHE_CAKE), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_18)))); - STUFFED_POBLANOS = register.register(createIdentifier(ItemNamesV2.STUFFED_POBLANOS), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_14)))); - CHILI_RELLENO = register.register(createIdentifier(ItemNamesV2.CHILI_RELLENO), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_14)))); - CREMA = register.register(createIdentifier(ItemNamesV2.CREMA), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_3)))); - REFRIED_BEANS = register.register(createIdentifier(ItemNamesV2.REFRIED_BEANS), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_7)))); - CHIMICHANGA = register.register(createIdentifier(ItemNamesV2.CHIMICHANGA), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_14)))); - QUESADILLA = register.register(createIdentifier(ItemNamesV2.QUESADILLA), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_10)))); - CORN_HUSK = register.register(createIdentifier(ItemNamesV2.CORN_HUSK), () -> new Item(createGroup())); - WHIPPING_CREAM = register.register(createIdentifier(ItemNamesV2.WHIPPING_CREAM), () -> new Item(createGroup())); - SHEPHERDS_PIE = register.register(createIdentifier(ItemNamesV2.SHEPHERDS_PIE), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_18)))); - BEEF_WELLINGTON = register.register(createIdentifier(ItemNamesV2.BEEF_WELLINGTON), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_18)))); - FISH_AND_CHIPS = register.register(createIdentifier(ItemNamesV2.FISH_AND_CHIPS), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_10)))); - ETON_MESS = register.register(createIdentifier(ItemNamesV2.ETON_MESS), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_10)))); - TEA = register.register(createIdentifier(ItemNamesV2.TEA), () -> new Drink(createGroup().food(FoodConstructor.createBuilder(REG_5).alwaysEdible().build()))); - CORNISH_PASTY = register.register(createIdentifier(ItemNamesV2.CORNISH_PASTY), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_10)))); - SCONES = register.register(createIdentifier(ItemNamesV2.SCONES), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_10)))); - FIGGY_PUDDING = register.register(createIdentifier(ItemNamesV2.FIGGY_PUDDING), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_10)))); - TREACLE_TART = register.register(createIdentifier(ItemNamesV2.TREACLE_TART), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_10)))); - STICKY_TOFFEE_PUDDING = register.register(createIdentifier(ItemNamesV2.STICKY_TOFFEE_PUDDING), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_14)))); - TRIFLE = register.register(createIdentifier(ItemNamesV2.TRIFLE), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_14)))); - WATER_BOTTLE = register.register(createIdentifier(ItemNamesV2.WATER_BOTTLE), () -> new Item(createGroup())); - MILK_BOTTLE = register.register(createIdentifier(ItemNamesV2.MILK_BOTTLE), () -> new Item(createGroup())); - AJVAR = register.register(createIdentifier(ItemNamesV2.AJVAR), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_7)))); - AJVAR_TOAST = register.register(createIdentifier(ItemNamesV2.AJVAR_TOAST), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_14)))); - AVOCADO_TOAST = register.register(createIdentifier(ItemNamesV2.AVOCADO_TOAST), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_10)))); - BEEF_STEW = register.register(createIdentifier(ItemNamesV2.BEEF_STEW), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_14)))); - BEEF_STIR_FRY = register.register(createIdentifier(ItemNamesV2.BEEF_STIR_FRY), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_14)))); - BUTTERED_GREEN_BEANS = register.register(createIdentifier(ItemNamesV2.BUTTERED_GREEN_BEANS), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_10)))); - CHEESY_ASPARAGUS = register.register(createIdentifier(ItemNamesV2.CHEESY_ASPARAGUS), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_10)))); - CHOCOLATE_ICE_CREAM = register.register(createIdentifier(ItemNamesV2.CHOCOLATE_ICE_CREAM), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_14)))); - EGGPLANT_PARMESAN = register.register(createIdentifier(ItemNamesV2.EGGPLANT_PARMESAN), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_18)))); - FRUIT_CAKE = register.register(createIdentifier(ItemNamesV2.FRUIT_CAKE), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_10)))); - GRILLED_EGGPLANT = register.register(createIdentifier(ItemNamesV2.GRILLED_EGGPLANT), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_10)))); - KIWI_SORBET = register.register(createIdentifier(ItemNamesV2.KIWI_SORBET), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_7)))); - LEMON_COCONUT_BAR = register.register(createIdentifier(ItemNamesV2.LEMON_COCONUT_BAR), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_7)))); - NETHER_WART_STEW = register.register(createIdentifier(ItemNamesV2.NETHER_WART_STEW), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_7)))); - PEANUT_BUTTER = register.register(createIdentifier(ItemNamesV2.PEANUT_BUTTER), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_5)))); - PEANUT_BUTTER_W_CELERY = register.register(createIdentifier(ItemNamesV2.PEANUT_BUTTER_W_CELERY), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_7)))); - POTATO_SOUP = register.register(createIdentifier(ItemNamesV2.POTATO_SOUP), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_10)))); - RATATOUILLE = register.register(createIdentifier(ItemNamesV2.RATATOUILLE), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_18)))); - RAW_BACON = register.register(createIdentifier(ItemNamesV2.RAW_BACON), () -> new Item(createGroup().food(FoodConstructor.createBuilder(REG_1).build()))); - RHUBARB_CRISP = register.register(createIdentifier(ItemNamesV2.RHUBARB_CRISP), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_10)))); - ROASTED_ASPARAGUS = register.register(createIdentifier(ItemNamesV2.ROASTED_ASPARAGUS), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_7)))); - ROASTED_RADISHES = register.register(createIdentifier(ItemNamesV2.ROASTED_RADISHES), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_7)))); - ROASTED_SQUASH = register.register(createIdentifier(ItemNamesV2.ROASTED_SQUASH), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_7)))); - ROASTED_TURNIPS = register.register(createIdentifier(ItemNamesV2.ROASTED_TURNIPS), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_7)))); - STEAMED_BROCCOLI = register.register(createIdentifier(ItemNamesV2.STEAMED_BROCCOLI), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_7)))); - STEAMED_GREEN_BEANS = register.register(createIdentifier(ItemNamesV2.STEAMED_GREEN_BEANS), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_7)))); - STIR_FRY = register.register(createIdentifier(ItemNamesV2.STIR_FRY), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_12)))); - STUFFED_ARTICHOKE = register.register(createIdentifier(ItemNamesV2.STUFFED_ARTICHOKE), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_18)))); - TOAST_SANDWICH = register.register(createIdentifier(ItemNamesV2.TOAST_SANDWICH), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_10)))); - ROASTED_PUMPKIN_SEEDS = register.register(createIdentifier(ItemNamesV2.ROASTED_PUMPKIN_SEEDS), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_4)))); - ROASTED_SUNFLOWER_SEEDS = register.register(createIdentifier(ItemNamesV2.ROASTED_SUNFLOWER_SEEDS), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_4)))); - PUMPKIN_BARS = register.register(createIdentifier(ItemNamesV2.PUMPKIN_BARS), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_6)))); - CORN_BREAD = register.register(createIdentifier(ItemNamesV2.CORN_BREAD), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_5)))); - PUMPKIN_SOUP = register.register(createIdentifier(ItemNamesV2.PUMPKIN_SOUP), () -> new Soup(createGroup().food(FoodConstructor.createFood(REG_10)))); - MERINGUE = register.register(createIdentifier(ItemNamesV2.MERINGUE), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_6)))); - CABBAGE_ROLL = register.register(createIdentifier(ItemNamesV2.CABBAGE_ROLL), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_14)))); - BORSCHT = register.register(createIdentifier(ItemNamesV2.BORSCHT), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_12)))); - GOULASH = register.register(createIdentifier(ItemNamesV2.GOULASH), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_16)))); - BEETROOT_SALAD = register.register(createIdentifier(ItemNamesV2.BEETROOT_SALAD), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_10)))); - CANDIED_KUMQUATS = register.register(createIdentifier(ItemNamesV2.CANDIED_KUMQUATS), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_6)))); - STEAMED_CRAB = register.register(createIdentifier(ItemNamesV2.STEAMED_CRAB), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_6)))); - SEA_LETTUCE = register.register(createIdentifier(ItemNamesV2.SEA_LETTUCE), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_1)))); - DEEP_FRIED_SHRIMP = register.register(createIdentifier(ItemNamesV2.DEEP_FRIED_SHRIMP), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_10)))); - TUNA_ROLL = register.register(createIdentifier(ItemNamesV2.TUNA_ROLL), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_10)))); - FRIED_CALAMARI = register.register(createIdentifier(ItemNamesV2.FRIED_CALAMARI), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_10)))); - CRAB_LEGS = register.register(createIdentifier(ItemNamesV2.CRAB_LEGS), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_11)))); - STEAMED_CLAMS = register.register(createIdentifier(ItemNamesV2.STEAMED_CLAMS), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_11)))); - GRILLED_OYSTERS = register.register(createIdentifier(ItemNamesV2.GRILLED_OYSTERS), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_11)))); - ANCHOVY_PIZZA = register.register(createIdentifier(ItemNamesV2.ANCHOVY_PIZZA), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_15)))); - MASHED_POTATOES = register.register(createIdentifier(ItemNamesV2.MASHED_POTATOES), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_9)))); - - BAKED_CREPES = register.register(createIdentifier(ItemNamesV2.BAKED_CREPES), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_12)))); - CINNAMON_ROLL = register.register(createIdentifier(ItemNamesV2.CINNAMON_ROLL), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_8)))); - CROQUE_MADAME = register.register(createIdentifier(ItemNamesV2.CROQUE_MADAME), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_14)))); - CROQUE_MONSIEUR = register.register(createIdentifier(ItemNamesV2.CROQUE_MONSIEUR), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_13)))); - DAUPHINE_POTATOES = register.register(createIdentifier(ItemNamesV2.DAUPHINE_POTATOES), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_12)))); - FRIED_FROG_LEGS = register.register(createIdentifier(ItemNamesV2.FRIED_FROG_LEGS), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_6)))); - FROG_LEGS = register.register(createIdentifier(ItemNamesV2.FROG_LEGS), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_3)))); - GROUND_PORK = register.register(createIdentifier(ItemNamesV2.GROUND_PORK), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_1)))); - HASHED_BROWN = register.register(createIdentifier(ItemNamesV2.HASHED_BROWN), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_2)))); - MACARON = register.register(createIdentifier(ItemNamesV2.MACARON), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_5)))); - QUICHE = register.register(createIdentifier(ItemNamesV2.QUICHE), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_12)))); - SAUSAGE = register.register(createIdentifier(ItemNamesV2.SAUSAGE), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_3)))); - SUNNY_SIDE_EGGS = register.register(createIdentifier(ItemNamesV2.SUNNY_SIDE_EGGS), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_5)))); - SWEET_CREPES = register.register(createIdentifier(ItemNamesV2.SWEET_CREPES), () -> new Item(createGroup().food(FoodConstructor.createFood(REG_8)))); - THE_BIG_BREAKFAST = register.register(createIdentifier(ItemNamesV2.THE_BIG_BREAKFAST), () -> new ReferenceItem(createGroup().food(FoodConstructor.createFood(REG_20)), + PAPRIKA = register.register(createIdentifier(ItemNamesV2.PAPRIKA), id -> new Item(createGroup(id))); + SALT = register.register(createIdentifier(ItemNamesV2.SALT), id -> new Item(createGroup(id))); + OLIVE_OIL = register.register(createIdentifier(ItemNamesV2.OLIVE_OIL), id -> new Item(createGroup(id))); + CHEESE = register.register(createIdentifier(ItemNamesV2.CHEESE), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_3)))); + FLOUR = register.register(createIdentifier(ItemNamesV2.FLOUR), id -> new Item(createGroup(id))); + BUTTER = register.register(createIdentifier(ItemNamesV2.BUTTER), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_3)))); + NOODLE = register.register(createIdentifier(ItemNamesV2.NOODLE), id -> new Item(createGroup(id))); + TOFU = register.register(createIdentifier(ItemNamesV2.TOFU), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_5)))); + CHOCOLATE = register.register(createIdentifier(ItemNamesV2.CHOCOLATE), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_5)))); + TORTILLA = register.register(createIdentifier(ItemNamesV2.TORTILLA), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_5)))); + SOY_SAUCE = register.register(createIdentifier(ItemNamesV2.SOY_SAUCE), id -> new Item(createGroup(id))); + DOUGH = register.register(createIdentifier(ItemNamesV2.DOUGH), id -> new Item(createGroup(id))); + RAVIOLI = register.register(createIdentifier(ItemNamesV2.RAVIOLI), id -> new Item(createGroup(id))); + SALSA = register.register(createIdentifier(ItemNamesV2.SALSA), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_5)))); + ARTICHOKE_DIP = register.register(createIdentifier(ItemNamesV2.ARTICHOKE_DIP), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_5)))); + PEPPERONI = register.register(createIdentifier(ItemNamesV2.PEPPERONI), id -> new Item(createGroup(id).food(FoodConstructor.createBuilder(REG_5).build()))); + COFFEE = register.register(createIdentifier(ItemNamesV2.COFFEE), id -> new Drink(createGroup(id).food(FoodConstructor.createBuilder(REG_5).alwaysEdible().build(), Consumables.DEFAULT_DRINK))); + LEMONADE = register.register(createIdentifier(ItemNamesV2.LEMONADE), id -> new Drink(createGroup(id).food(FoodConstructor.createBuilder(REG_5).alwaysEdible().build(), Consumables.DEFAULT_DRINK))); + LIMEADE = register.register(createIdentifier(ItemNamesV2.LIMEADE), id -> new Drink(createGroup(id).food(FoodConstructor.createBuilder(REG_5).alwaysEdible().build(), Consumables.DEFAULT_DRINK))); + SOY_MILK = register.register(createIdentifier(ItemNamesV2.SOY_MILK), id -> new Drink(createGroup(id).food(FoodConstructor.createBuilder(REG_5).alwaysEdible().build(), Consumables.DEFAULT_DRINK))); + KALE_SMOOTHIE = register.register(createIdentifier(ItemNamesV2.KALE_SMOOTHIE), id -> new Drink(createGroup(id).food(FoodConstructor.createBuilder(REG_14).alwaysEdible().build(), Consumables.DEFAULT_DRINK))); + FRUIT_SMOOTHIE = register.register(createIdentifier(ItemNamesV2.FRUIT_SMOOTHIE), id -> new Drink(createGroup(id).food(FoodConstructor.createBuilder(REG_7).alwaysEdible().build(), Consumables.DEFAULT_DRINK))); + CHOCOLATE_MILKSHAKE = register.register(createIdentifier(ItemNamesV2.CHOCOLATE_MILKSHAKE), id -> new Drink(createGroup(id).food(FoodConstructor.createBuilder(REG_7).alwaysEdible().build(), Consumables.DEFAULT_DRINK))); + BEER = register.register(createIdentifier(ItemNamesV2.BEER), id -> new Drink(createGroup(id).food(FoodConstructor.createBuilder(REG_7).alwaysEdible().build(), Consumables.DEFAULT_DRINK))); + WINE = register.register(createIdentifier(ItemNamesV2.WINE), id -> new Drink(createGroup(id).food(FoodConstructor.createBuilder(REG_7).alwaysEdible().build(), Consumables.DEFAULT_DRINK))); + MEAD = register.register(createIdentifier(ItemNamesV2.MEAD), id -> new Drink(createGroup(id).food(FoodConstructor.createBuilder(REG_7).alwaysEdible().build(), Consumables.DEFAULT_DRINK))); + RUM = register.register(createIdentifier(ItemNamesV2.RUM), id -> new Drink(createGroup(id).food(FoodConstructor.createBuilder(REG_7).alwaysEdible().build(), Consumables.DEFAULT_DRINK))); + PUMPKIN_SPICE_LATTE = register.register(createIdentifier(ItemNamesV2.PUMPKIN_SPICE_LATTE), id -> new Drink(createGroup(id).food(FoodConstructor.createBuilder(REG_14).alwaysEdible().build()))); + BEEF_JERKY = register.register(createIdentifier(ItemNamesV2.BEEF_JERKY), id -> new Item(createGroup(id).food(FoodConstructor.createBuilder(REG_5).build()))); + PORK_JERKY = register.register(createIdentifier(ItemNamesV2.PORK_JERKY), id -> new Item(createGroup(id).food(FoodConstructor.createBuilder(REG_5).build()))); + KALE_CHIPS = register.register(createIdentifier(ItemNamesV2.KALE_CHIPS), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_5)))); + POTATO_CHIPS = register.register(createIdentifier(ItemNamesV2.POTATO_CHIPS), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_5)))); + STEAMED_RICE = register.register(createIdentifier(ItemNamesV2.STEAMED_RICE), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_5)))); + FRENCH_FRIES = register.register(createIdentifier(ItemNamesV2.FRENCH_FRIES), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_5)))); + SWEET_POTATO_FRIES = register.register(createIdentifier(ItemNamesV2.SWEET_POTATO_FRIES), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_5)))); + ONION_RINGS = register.register(createIdentifier(ItemNamesV2.ONION_RINGS), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_5)))); + DOUGHNUT = register.register(createIdentifier(ItemNamesV2.DOUGHNUT), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_5)))); + CUCUMBER_SALAD = register.register(createIdentifier(ItemNamesV2.CUCUMBER_SALAD), id -> new Soup(createGroup(id).food(FoodConstructor.createFood(REG_10)))); + CAESAR_SALAD = register.register(createIdentifier(ItemNamesV2.CAESAR_SALAD), id -> new Soup(createGroup(id).food(FoodConstructor.createFood(REG_10)))); + LEAFY_SALAD = register.register(createIdentifier(ItemNamesV2.LEAFY_SALAD), id -> new Soup(createGroup(id).food(FoodConstructor.createFood(REG_10)))); + FRUIT_SALAD = register.register(createIdentifier(ItemNamesV2.FRUIT_SALAD), id -> new Soup(createGroup(id).food(FoodConstructor.createFood(REG_10)))); + VEGGIE_SALAD = register.register(createIdentifier(ItemNamesV2.VEGGIE_SALAD), id -> new Soup(createGroup(id).food(FoodConstructor.createFood(REG_10)))); + PORK_AND_BEANS = register.register(createIdentifier(ItemNamesV2.PORK_AND_BEANS), id -> new Soup(createGroup(id).food(FoodConstructor.createFood(REG_10)))); + OATMEAL = register.register(createIdentifier(ItemNamesV2.OATMEAL), id -> new Soup(createGroup(id).food(FoodConstructor.createFood(REG_7)))); + LEEK_SOUP = register.register(createIdentifier(ItemNamesV2.LEEK_SOUP), id -> new Soup(createGroup(id).food(FoodConstructor.createFood(REG_7)))); + YOGHURT = register.register(createIdentifier(ItemNamesV2.YOGHURT), id -> new Soup(createGroup(id).food(FoodConstructor.createFood(REG_5)))); + SAUCY_CHIPS = register.register(createIdentifier(ItemNamesV2.SAUCY_CHIPS), id -> new Soup(createGroup(id).food(FoodConstructor.createFood(REG_7)))); + ROASTED_NUTS = register.register(createIdentifier(ItemNamesV2.ROASTED_NUTS), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_5)))); + TRAIL_MIX = register.register(createIdentifier(ItemNamesV2.TRAIL_MIX), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_10)))); + PROTEIN_BAR = register.register(createIdentifier(ItemNamesV2.PROTEIN_BAR), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_10)))); + NOUGAT = register.register(createIdentifier(ItemNamesV2.NOUGAT), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_7)))); + SCRAMBLED_EGGS = register.register(createIdentifier(ItemNamesV2.SCRAMBLED_EGGS), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_7)))); + BUTTERED_TOAST = register.register(createIdentifier(ItemNamesV2.BUTTERED_TOAST), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_9)))); + TOAST_WITH_JAM = register.register(createIdentifier(ItemNamesV2.TOAST_WITH_JAM), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_9)))); + HAM_SANDWICH = register.register(createIdentifier(ItemNamesV2.HAM_SANDWICH), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_10)))); + PEANUT_BUTTER_AND_JAM = register.register(createIdentifier(ItemNamesV2.PEANUT_BUTTER_AND_JAM), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_10)))); + BLT = register.register(createIdentifier(ItemNamesV2.BLT), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_10)))); + GRILLED_CHEESE = register.register(createIdentifier(ItemNamesV2.GRILLED_CHEESE), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_7)))); + TUNA_SANDWICH = register.register(createIdentifier(ItemNamesV2.TUNA_SANDWICH), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_10)))); + CHEESEBURGER = register.register(createIdentifier(ItemNamesV2.CHEESEBURGER), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_10)))); + HAMBURGER = register.register(createIdentifier(ItemNamesV2.HAMBURGER), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_10)))); + TOFUBURGER = register.register(createIdentifier(ItemNamesV2.TOFUBURGER), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_10)))); + PIZZA = register.register(createIdentifier(ItemNamesV2.PIZZA), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_10)))); + SUPREME_PIZZA = register.register(createIdentifier(ItemNamesV2.SUPREME_PIZZA), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_18)))); + CHEESE_PIZZA = register.register(createIdentifier(ItemNamesV2.CHEESE_PIZZA), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_14)))); + PINEAPPLE_PEPPERONI_PIZZA = register.register(createIdentifier(ItemNamesV2.PINEAPPLE_PEPPERONI_PIZZA), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_18)))); + LEMON_CHICKEN = register.register(createIdentifier(ItemNamesV2.LEMON_CHICKEN), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_10)))); + FRIED_CHICKEN = register.register(createIdentifier(ItemNamesV2.FRIED_CHICKEN), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_10)))); + CHICKEN_AND_NOODLES = register.register(createIdentifier(ItemNamesV2.CHICKEN_AND_NOODLES), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_10)))); + CHICKEN_AND_DUMPLINGS = register.register(createIdentifier(ItemNamesV2.CHICKEN_AND_DUMPLINGS), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_10)))); + TOFU_AND_DUMPLINGS = register.register(createIdentifier(ItemNamesV2.TOFU_AND_DUMPLINGS), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_14)))); + SPAGHETTI_SQUASH = register.register(createIdentifier(ItemNamesV2.SPAGHETTI_SQUASH), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_10)))); + CHICKEN_AND_RICE = register.register(createIdentifier(ItemNamesV2.CHICKEN_AND_RICE), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_10)))); + TACO = register.register(createIdentifier(ItemNamesV2.TACO), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_10)))); + SUSHI = register.register(createIdentifier(ItemNamesV2.SUSHI), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_10)))); + EGG_ROLL = register.register(createIdentifier(ItemNamesV2.EGG_ROLL), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_10)))); + CASHEW_CHICKEN = register.register(createIdentifier(ItemNamesV2.CASHEW_CHICKEN), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_14)))); + YAM_JAM = register.register(createIdentifier(ItemNamesV2.YAM_JAM), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_14)))); + BANANA_CREAM_PIE = register.register(createIdentifier(ItemNamesV2.BANANA_CREAM_PIE), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_14)))); + CANDY_CORN = register.register(createIdentifier(ItemNamesV2.CANDY_CORN), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_5)))); + RUM_RAISIN_ICE_CREAM = register.register(createIdentifier(ItemNamesV2.RUM_RAISIN_ICE_CREAM), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_14)))); + CHEESE_CAKE = register.register(createIdentifier(ItemNamesV2.CHEESE_CAKE), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_14)))); + BROWNIES = register.register(createIdentifier(ItemNamesV2.BROWNIES), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_10)))); + SNICKER_DOODLE = register.register(createIdentifier(ItemNamesV2.SNICKER_DOODLE), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_7)))); + BANANA_NUT_BREAD = register.register(createIdentifier(ItemNamesV2.BANANA_NUT_BREAD), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_10)))); + CANDIED_NUTS = register.register(createIdentifier(ItemNamesV2.CANDIED_NUTS), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_5)))); + ALMOND_BRITTLE = register.register(createIdentifier(ItemNamesV2.ALMOND_BRITTLE), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_7)))); + OATMEAL_COOKIE = register.register(createIdentifier(ItemNamesV2.RAISIN_OATMEAL_COOKIE), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_5)))); + NUTTY_COOKIE = register.register(createIdentifier(ItemNamesV2.NUTTY_COOKIE), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_5)))); + BURRITO = register.register(createIdentifier(ItemNamesV2.BURRITO), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_10)))); + TOSTADA = register.register(createIdentifier(ItemNamesV2.TOSTADA), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_10)))); + HORCHATA = register.register(createIdentifier(ItemNamesV2.HORCHATA), id -> new Drink(createGroup(id).food(FoodConstructor.createFood(REG_10), Consumables.DEFAULT_DRINK))); + CARNITAS = register.register(createIdentifier(ItemNamesV2.CARNITAS), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_10)))); + FAJITAS = register.register(createIdentifier(ItemNamesV2.FAJITAS), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_10)))); + ENCHILADA = register.register(createIdentifier(ItemNamesV2.ENCHILADA), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_10)))); + CHURROS = register.register(createIdentifier(ItemNamesV2.CHURROS), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_5)))); + TAMALES = register.register(createIdentifier(ItemNamesV2.TAMALES), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_14)))); + TRES_LECHE_CAKE = register.register(createIdentifier(ItemNamesV2.TRES_LECHE_CAKE), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_18)))); + STUFFED_POBLANOS = register.register(createIdentifier(ItemNamesV2.STUFFED_POBLANOS), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_14)))); + CHILI_RELLENO = register.register(createIdentifier(ItemNamesV2.CHILI_RELLENO), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_14)))); + CREMA = register.register(createIdentifier(ItemNamesV2.CREMA), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_3)))); + REFRIED_BEANS = register.register(createIdentifier(ItemNamesV2.REFRIED_BEANS), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_7)))); + CHIMICHANGA = register.register(createIdentifier(ItemNamesV2.CHIMICHANGA), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_14)))); + QUESADILLA = register.register(createIdentifier(ItemNamesV2.QUESADILLA), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_10)))); + CORN_HUSK = register.register(createIdentifier(ItemNamesV2.CORN_HUSK), id -> new Item(createGroup(id))); + WHIPPING_CREAM = register.register(createIdentifier(ItemNamesV2.WHIPPING_CREAM), id -> new Item(createGroup(id))); + SHEPHERDS_PIE = register.register(createIdentifier(ItemNamesV2.SHEPHERDS_PIE), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_18)))); + BEEF_WELLINGTON = register.register(createIdentifier(ItemNamesV2.BEEF_WELLINGTON), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_18)))); + FISH_AND_CHIPS = register.register(createIdentifier(ItemNamesV2.FISH_AND_CHIPS), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_10)))); + ETON_MESS = register.register(createIdentifier(ItemNamesV2.ETON_MESS), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_10)))); + TEA = register.register(createIdentifier(ItemNamesV2.TEA), id -> new Drink(createGroup(id).food(FoodConstructor.createBuilder(REG_5).alwaysEdible().build(), Consumables.DEFAULT_DRINK))); + CORNISH_PASTY = register.register(createIdentifier(ItemNamesV2.CORNISH_PASTY), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_10)))); + SCONES = register.register(createIdentifier(ItemNamesV2.SCONES), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_10)))); + FIGGY_PUDDING = register.register(createIdentifier(ItemNamesV2.FIGGY_PUDDING), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_10)))); + TREACLE_TART = register.register(createIdentifier(ItemNamesV2.TREACLE_TART), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_10)))); + STICKY_TOFFEE_PUDDING = register.register(createIdentifier(ItemNamesV2.STICKY_TOFFEE_PUDDING), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_14)))); + TRIFLE = register.register(createIdentifier(ItemNamesV2.TRIFLE), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_14)))); + WATER_BOTTLE = register.register(createIdentifier(ItemNamesV2.WATER_BOTTLE), id -> new Item(createGroup(id))); + + MILK_BOTTLE = register.register(createIdentifier(ItemNamesV2.MILK_BOTTLE), id -> new Item(createGroup(id))); + AJVAR = register.register(createIdentifier(ItemNamesV2.AJVAR), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_7)))); + AJVAR_TOAST = register.register(createIdentifier(ItemNamesV2.AJVAR_TOAST), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_14)))); + AVOCADO_TOAST = register.register(createIdentifier(ItemNamesV2.AVOCADO_TOAST), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_10)))); + BEEF_STEW = register.register(createIdentifier(ItemNamesV2.BEEF_STEW), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_14)))); + BEEF_STIR_FRY = register.register(createIdentifier(ItemNamesV2.BEEF_STIR_FRY), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_14)))); + BUTTERED_GREEN_BEANS = register.register(createIdentifier(ItemNamesV2.BUTTERED_GREEN_BEANS), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_10)))); + CHEESY_ASPARAGUS = register.register(createIdentifier(ItemNamesV2.CHEESY_ASPARAGUS), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_10)))); + CHOCOLATE_ICE_CREAM = register.register(createIdentifier(ItemNamesV2.CHOCOLATE_ICE_CREAM), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_14)))); + EGGPLANT_PARMESAN = register.register(createIdentifier(ItemNamesV2.EGGPLANT_PARMESAN), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_18)))); + FRUIT_CAKE = register.register(createIdentifier(ItemNamesV2.FRUIT_CAKE), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_10)))); + GRILLED_EGGPLANT = register.register(createIdentifier(ItemNamesV2.GRILLED_EGGPLANT), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_10)))); + KIWI_SORBET = register.register(createIdentifier(ItemNamesV2.KIWI_SORBET), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_7)))); + LEMON_COCONUT_BAR = register.register(createIdentifier(ItemNamesV2.LEMON_COCONUT_BAR), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_7)))); + NETHER_WART_STEW = register.register(createIdentifier(ItemNamesV2.NETHER_WART_STEW), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_7)))); + PEANUT_BUTTER = register.register(createIdentifier(ItemNamesV2.PEANUT_BUTTER), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_5)))); + PEANUT_BUTTER_W_CELERY = register.register(createIdentifier(ItemNamesV2.PEANUT_BUTTER_W_CELERY), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_7)))); + POTATO_SOUP = register.register(createIdentifier(ItemNamesV2.POTATO_SOUP), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_10)))); + RATATOUILLE = register.register(createIdentifier(ItemNamesV2.RATATOUILLE), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_18)))); + RAW_BACON = register.register(createIdentifier(ItemNamesV2.RAW_BACON), id -> new Item(createGroup(id).food(FoodConstructor.createBuilder(REG_1).build()))); + RHUBARB_CRISP = register.register(createIdentifier(ItemNamesV2.RHUBARB_CRISP), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_10)))); + ROASTED_ASPARAGUS = register.register(createIdentifier(ItemNamesV2.ROASTED_ASPARAGUS), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_7)))); + ROASTED_RADISHES = register.register(createIdentifier(ItemNamesV2.ROASTED_RADISHES), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_7)))); + ROASTED_SQUASH = register.register(createIdentifier(ItemNamesV2.ROASTED_SQUASH), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_7)))); + ROASTED_TURNIPS = register.register(createIdentifier(ItemNamesV2.ROASTED_TURNIPS), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_7)))); + STEAMED_BROCCOLI = register.register(createIdentifier(ItemNamesV2.STEAMED_BROCCOLI), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_7)))); + STEAMED_GREEN_BEANS = register.register(createIdentifier(ItemNamesV2.STEAMED_GREEN_BEANS), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_7)))); + STIR_FRY = register.register(createIdentifier(ItemNamesV2.STIR_FRY), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_12)))); + STUFFED_ARTICHOKE = register.register(createIdentifier(ItemNamesV2.STUFFED_ARTICHOKE), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_18)))); + TOAST_SANDWICH = register.register(createIdentifier(ItemNamesV2.TOAST_SANDWICH), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_10)))); + ROASTED_PUMPKIN_SEEDS = register.register(createIdentifier(ItemNamesV2.ROASTED_PUMPKIN_SEEDS), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_4)))); + ROASTED_SUNFLOWER_SEEDS = register.register(createIdentifier(ItemNamesV2.ROASTED_SUNFLOWER_SEEDS), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_4)))); + PUMPKIN_BARS = register.register(createIdentifier(ItemNamesV2.PUMPKIN_BARS), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_6)))); + CORN_BREAD = register.register(createIdentifier(ItemNamesV2.CORN_BREAD), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_5)))); + PUMPKIN_SOUP = register.register(createIdentifier(ItemNamesV2.PUMPKIN_SOUP), id -> new Soup(createGroup(id).food(FoodConstructor.createFood(REG_10)))); + MERINGUE = register.register(createIdentifier(ItemNamesV2.MERINGUE), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_6)))); + CABBAGE_ROLL = register.register(createIdentifier(ItemNamesV2.CABBAGE_ROLL), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_14)))); + BORSCHT = register.register(createIdentifier(ItemNamesV2.BORSCHT), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_12)))); + GOULASH = register.register(createIdentifier(ItemNamesV2.GOULASH), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_16)))); + BEETROOT_SALAD = register.register(createIdentifier(ItemNamesV2.BEETROOT_SALAD), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_10)))); + CANDIED_KUMQUATS = register.register(createIdentifier(ItemNamesV2.CANDIED_KUMQUATS), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_6)))); + STEAMED_CRAB = register.register(createIdentifier(ItemNamesV2.STEAMED_CRAB), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_6)))); + SEA_LETTUCE = register.register(createIdentifier(ItemNamesV2.SEA_LETTUCE), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_1)))); + DEEP_FRIED_SHRIMP = register.register(createIdentifier(ItemNamesV2.DEEP_FRIED_SHRIMP), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_10)))); + TUNA_ROLL = register.register(createIdentifier(ItemNamesV2.TUNA_ROLL), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_10)))); + FRIED_CALAMARI = register.register(createIdentifier(ItemNamesV2.FRIED_CALAMARI), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_10)))); + CRAB_LEGS = register.register(createIdentifier(ItemNamesV2.CRAB_LEGS), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_11)))); + STEAMED_CLAMS = register.register(createIdentifier(ItemNamesV2.STEAMED_CLAMS), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_11)))); + GRILLED_OYSTERS = register.register(createIdentifier(ItemNamesV2.GRILLED_OYSTERS), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_11)))); + ANCHOVY_PIZZA = register.register(createIdentifier(ItemNamesV2.ANCHOVY_PIZZA), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_15)))); + MASHED_POTATOES = register.register(createIdentifier(ItemNamesV2.MASHED_POTATOES), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_9)))); + + BAKED_CREPES = register.register(createIdentifier(ItemNamesV2.BAKED_CREPES), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_12)))); + CINNAMON_ROLL = register.register(createIdentifier(ItemNamesV2.CINNAMON_ROLL), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_8)))); + CROQUE_MADAME = register.register(createIdentifier(ItemNamesV2.CROQUE_MADAME), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_14)))); + CROQUE_MONSIEUR = register.register(createIdentifier(ItemNamesV2.CROQUE_MONSIEUR), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_13)))); + DAUPHINE_POTATOES = register.register(createIdentifier(ItemNamesV2.DAUPHINE_POTATOES), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_12)))); + FRIED_FROG_LEGS = register.register(createIdentifier(ItemNamesV2.FRIED_FROG_LEGS), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_6)))); + FROG_LEGS = register.register(createIdentifier(ItemNamesV2.FROG_LEGS), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_3)))); + GROUND_PORK = register.register(createIdentifier(ItemNamesV2.GROUND_PORK), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_1)))); + HASHED_BROWN = register.register(createIdentifier(ItemNamesV2.HASHED_BROWN), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_2)))); + MACARON = register.register(createIdentifier(ItemNamesV2.MACARON), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_5)))); + QUICHE = register.register(createIdentifier(ItemNamesV2.QUICHE), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_12)))); + SAUSAGE = register.register(createIdentifier(ItemNamesV2.SAUSAGE), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_3)))); + SUNNY_SIDE_EGGS = register.register(createIdentifier(ItemNamesV2.SUNNY_SIDE_EGGS), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_5)))); + SWEET_CREPES = register.register(createIdentifier(ItemNamesV2.SWEET_CREPES), id -> new Item(createGroup(id).food(FoodConstructor.createFood(REG_8)))); + THE_BIG_BREAKFAST = register.register(createIdentifier(ItemNamesV2.THE_BIG_BREAKFAST), id -> new ReferenceItem(createGroup(id).food(FoodConstructor.createFood(REG_20)), Component.literal("Patricia! Daddy want the Big Breakfast").setStyle(Style.EMPTY.withColor(ChatFormatting.GRAY)))); - SALT_ORE = register.register(createIdentifier(ItemNamesV2.SALT_ORE), () -> new ItemNameBlockItem(SALT_ORE_BLOCK, createGroup())); + SALT_ORE = register.register(createIdentifier(ItemNamesV2.SALT_ORE), id -> new BlockItem(SALT_ORE_BLOCK, createGroup(id))); } public static Stream createCropStream() { diff --git a/src/main/java/com/epherical/croptopia/register/helpers/FarmlandCrop.java b/src/main/java/com/epherical/croptopia/register/helpers/FarmlandCrop.java index 5d4348caa..6f43033fe 100644 --- a/src/main/java/com/epherical/croptopia/register/helpers/FarmlandCrop.java +++ b/src/main/java/com/epherical/croptopia/register/helpers/FarmlandCrop.java @@ -20,7 +20,11 @@ import java.util.List; import java.util.Objects; -import static com.epherical.croptopia.CroptopiaMod.*; +import static com.epherical.croptopia.CroptopiaMod.createCropSettings; +import static com.epherical.croptopia.CroptopiaMod.createGroup; +import static com.epherical.croptopia.CroptopiaMod.createIdentifier; +import static com.epherical.croptopia.CroptopiaMod.cropItems; +import static com.epherical.croptopia.CroptopiaMod.seeds; import static com.epherical.croptopia.util.FoodConstructor.createFood; /** @@ -101,7 +105,7 @@ public static List copy() { }*/ public void registerBlock(RegisterFunction register) { - this.cropBlock = register.register(createIdentifier(this.name + "_crop"), () -> new CroptopiaCropBlock(createCropSettings())); + this.cropBlock = register.register(createIdentifier(this.name + "_crop"), id -> new CroptopiaCropBlock(createCropSettings(id))); CroptopiaMod.cropBlocks.add(this.asBlock()); } @@ -119,17 +123,17 @@ public void registerBlock(RegisterFunction register) { }*/ public void registerItem(RegisterFunction register) { - this.cropItem = register.register(createIdentifier(this.dropName), () -> { + this.cropItem = register.register(createIdentifier(this.dropName), id -> { if (registry == null) { - return new CropItem(createGroup()); + return new CropItem(createGroup(id)); } else { - return new CropItem(createGroup().food(createFood(registry))); + return new CropItem(createGroup(id).food(createFood(registry))); } }); if (this.name().equals(ItemNamesV2.VANILLA)) { - this.seedItem = register.register(createIdentifier(this.name + "_seeds"), () -> new SeedItem(cropBlock, createGroup(), biomes)); + this.seedItem = register.register(createIdentifier(this.name + "_seeds"), id -> new SeedItem(cropBlock, createGroup(id), biomes)); } else { - this.seedItem = register.register(createIdentifier(this.name + "_seed"), () -> new SeedItem(cropBlock, createGroup(), biomes)); + this.seedItem = register.register(createIdentifier(this.name + "_seed"), id -> new SeedItem(cropBlock, createGroup(id), biomes)); } cropItems.add(this.asItem()); seeds.add(this.seedItem); diff --git a/src/main/java/com/epherical/croptopia/register/helpers/Furnace.java b/src/main/java/com/epherical/croptopia/register/helpers/Furnace.java index 69d1108c1..03173376a 100644 --- a/src/main/java/com/epherical/croptopia/register/helpers/Furnace.java +++ b/src/main/java/com/epherical/croptopia/register/helpers/Furnace.java @@ -6,7 +6,6 @@ import com.epherical.croptopia.util.ItemConvertibleWithPlural; import com.epherical.croptopia.util.RegisterFunction; import net.minecraft.world.item.Item; -import net.minecraft.world.level.block.Block; import java.util.ArrayList; import java.util.List; @@ -49,11 +48,11 @@ public static List copy() { } public void registerItem(RegisterFunction register, FoodConstructor foodConstructor) { - this.item = register.register(CroptopiaMod.createIdentifier(name), () -> { + this.item = register.register(CroptopiaMod.createIdentifier(name), id -> { if (foodConstructor == null) { - return new Item(createGroup()); + return new Item(createGroup(id)); } else { - return new Item(createGroup().food(FoodConstructor.createFood(foodConstructor))); + return new Item(createGroup(id).food(FoodConstructor.createFood(foodConstructor))); } }); } diff --git a/src/main/java/com/epherical/croptopia/register/helpers/IceCream.java b/src/main/java/com/epherical/croptopia/register/helpers/IceCream.java index 8e2fef276..7456014a2 100644 --- a/src/main/java/com/epherical/croptopia/register/helpers/IceCream.java +++ b/src/main/java/com/epherical/croptopia/register/helpers/IceCream.java @@ -11,7 +11,8 @@ import java.util.List; import static com.epherical.croptopia.CroptopiaMod.createGroup; -import static com.epherical.croptopia.util.FoodConstructor.*; +import static com.epherical.croptopia.util.FoodConstructor.ICE_CREAM_7; +import static com.epherical.croptopia.util.FoodConstructor.createFood; public class IceCream implements ItemLike { private static final List INSTANCES = new ArrayList<>(); @@ -41,7 +42,7 @@ public String name() { } public void registerItem(RegisterFunction register) { - this.item = register.register(CroptopiaMod.createIdentifier(name), () -> new Item(createGroup().food(createFood(ICE_CREAM_7)))); + this.item = register.register(CroptopiaMod.createIdentifier(name), id -> new Item(createGroup(id).food(createFood(ICE_CREAM_7)))); } public static List copy() { diff --git a/src/main/java/com/epherical/croptopia/register/helpers/Jam.java b/src/main/java/com/epherical/croptopia/register/helpers/Jam.java index 86b145d56..41af98d04 100644 --- a/src/main/java/com/epherical/croptopia/register/helpers/Jam.java +++ b/src/main/java/com/epherical/croptopia/register/helpers/Jam.java @@ -7,13 +7,15 @@ import com.epherical.croptopia.util.RegisterFunction; import net.minecraft.world.item.Item; import net.minecraft.world.item.Items; +import net.minecraft.world.item.component.Consumables; import net.minecraft.world.level.ItemLike; import java.util.ArrayList; import java.util.List; import static com.epherical.croptopia.CroptopiaMod.createGroup; -import static com.epherical.croptopia.util.FoodConstructor.*; +import static com.epherical.croptopia.util.FoodConstructor.JAM_3; +import static com.epherical.croptopia.util.FoodConstructor.createBuilder; public class Jam implements ItemLike { private static final List INSTANCES = new ArrayList<>(); @@ -43,8 +45,8 @@ public String name() { } public void registerItem(RegisterFunction register) { - item = register.register(CroptopiaMod.createIdentifier(name), () -> - new Drink(createGroup().craftRemainder(Items.GLASS_BOTTLE).food(createBuilder(JAM_3).alwaysEdible().build()))); + item = register.register(CroptopiaMod.createIdentifier(name), id -> + new Drink(createGroup(id).craftRemainder(Items.GLASS_BOTTLE).food(createBuilder(JAM_3).alwaysEdible().build(), Consumables.DEFAULT_DRINK))); } public static List copy() { diff --git a/src/main/java/com/epherical/croptopia/register/helpers/Juice.java b/src/main/java/com/epherical/croptopia/register/helpers/Juice.java index 61c6de6a2..b13bb35cf 100644 --- a/src/main/java/com/epherical/croptopia/register/helpers/Juice.java +++ b/src/main/java/com/epherical/croptopia/register/helpers/Juice.java @@ -7,13 +7,15 @@ import com.epherical.croptopia.util.RegisterFunction; import net.minecraft.world.item.Item; import net.minecraft.world.item.Items; +import net.minecraft.world.item.component.Consumables; import net.minecraft.world.level.ItemLike; import java.util.ArrayList; import java.util.List; import static com.epherical.croptopia.CroptopiaMod.createGroup; -import static com.epherical.croptopia.util.FoodConstructor.*; +import static com.epherical.croptopia.util.FoodConstructor.JUICE_5; +import static com.epherical.croptopia.util.FoodConstructor.createBuilder; public class Juice implements ItemLike { private static final List INSTANCES = new ArrayList<>(); @@ -49,8 +51,8 @@ public Item asItem() { } public void registerItem(RegisterFunction register) { - this.item = register.register(CroptopiaMod.createIdentifier(name), () -> - new Drink(createGroup().food(createBuilder(JUICE_5).alwaysEdible().build()).craftRemainder(Items.GLASS_BOTTLE))); + this.item = register.register(CroptopiaMod.createIdentifier(name), id -> + new Drink(createGroup(id).food(createBuilder(JUICE_5).alwaysEdible().build(), Consumables.DEFAULT_DRINK).craftRemainder(Items.GLASS_BOTTLE))); } public static List copy() { diff --git a/src/main/java/com/epherical/croptopia/register/helpers/Pie.java b/src/main/java/com/epherical/croptopia/register/helpers/Pie.java index 2b26cb3e6..48ff2cbae 100644 --- a/src/main/java/com/epherical/croptopia/register/helpers/Pie.java +++ b/src/main/java/com/epherical/croptopia/register/helpers/Pie.java @@ -11,7 +11,8 @@ import java.util.List; import static com.epherical.croptopia.CroptopiaMod.createGroup; -import static com.epherical.croptopia.util.FoodConstructor.*; +import static com.epherical.croptopia.util.FoodConstructor.PIE_10; +import static com.epherical.croptopia.util.FoodConstructor.createFood; public class Pie implements ItemLike { private static final List INSTANCES = new ArrayList<>(); @@ -41,7 +42,7 @@ public String name() { } public void registerItem(RegisterFunction register) { - this.item = register.register(CroptopiaMod.createIdentifier(name), () -> new Item(createGroup().food(createFood(PIE_10)))); + this.item = register.register(CroptopiaMod.createIdentifier(name), id -> new Item(createGroup(id).food(createFood(PIE_10)))); } public static List copy() { diff --git a/src/main/java/com/epherical/croptopia/register/helpers/Seafood.java b/src/main/java/com/epherical/croptopia/register/helpers/Seafood.java index 68ebfbcc9..0e7b70ef5 100644 --- a/src/main/java/com/epherical/croptopia/register/helpers/Seafood.java +++ b/src/main/java/com/epherical/croptopia/register/helpers/Seafood.java @@ -8,6 +8,9 @@ import net.minecraft.world.effect.MobEffectInstance; import net.minecraft.world.effect.MobEffects; import net.minecraft.world.item.Item; +import net.minecraft.world.item.component.Consumable; +import net.minecraft.world.item.component.Consumables; +import net.minecraft.world.item.consume_effects.ApplyStatusEffectsConsumeEffect; import java.util.ArrayList; import java.util.List; @@ -47,13 +50,15 @@ public static List copy() { return INSTANCES; } + private static final Consumable GLOWING = Consumables.defaultFood() + .onConsume(new ApplyStatusEffectsConsumeEffect(new MobEffectInstance(MobEffects.GLOWING, 4000, 1))).build(); + public void registerItem(RegisterFunction register, FoodConstructor foodConstructor) { - item = register.register(CroptopiaMod.createIdentifier(name), () -> { - if (name.contains("GLOWING")) { - return new Item(createGroup().food(FoodConstructor.createBuilder(foodConstructor) - .effect(new MobEffectInstance(MobEffects.GLOWING, 4000, 1), 1.0F).build())); + item = register.register(CroptopiaMod.createIdentifier(name), id -> { + if (name.contains("glowing")) { // REVIEW 1.21.3 - this was 'GLOWING' before but I think that's wrong + return new Item(createGroup(id).food(FoodConstructor.createBuilder(foodConstructor).build(), GLOWING)); } else { - return new Item(createGroup().food(FoodConstructor.createFood(foodConstructor))); + return new Item(createGroup(id).food(FoodConstructor.createFood(foodConstructor))); } }); } diff --git a/src/main/java/com/epherical/croptopia/register/helpers/Smoothie.java b/src/main/java/com/epherical/croptopia/register/helpers/Smoothie.java index b22785dfa..31a5f8d97 100644 --- a/src/main/java/com/epherical/croptopia/register/helpers/Smoothie.java +++ b/src/main/java/com/epherical/croptopia/register/helpers/Smoothie.java @@ -5,19 +5,17 @@ import com.epherical.croptopia.register.Content; import com.epherical.croptopia.util.ItemConvertibleWithPlural; import com.epherical.croptopia.util.RegisterFunction; -import com.google.common.collect.ImmutableList; -import com.google.common.collect.ImmutableSet; import net.minecraft.world.item.Item; import net.minecraft.world.item.Items; +import net.minecraft.world.item.component.Consumables; import net.minecraft.world.level.ItemLike; import java.util.ArrayList; -import java.util.HashSet; import java.util.List; -import java.util.Set; import static com.epherical.croptopia.CroptopiaMod.createGroup; -import static com.epherical.croptopia.util.FoodConstructor.*; +import static com.epherical.croptopia.util.FoodConstructor.JUICE_5; +import static com.epherical.croptopia.util.FoodConstructor.createBuilder; public class Smoothie implements ItemLike { private static final List INSTANCES = new ArrayList<>(); @@ -54,7 +52,7 @@ public Item asItem() { } public void registerItems(RegisterFunction register) { - item = register.register(CroptopiaMod.createIdentifier(name), () -> new Drink(createGroup().food(createBuilder(JUICE_5).alwaysEdible().build()).craftRemainder(Items.GLASS_BOTTLE))); + item = register.register(CroptopiaMod.createIdentifier(name), id -> new Drink(createGroup(id).food(createBuilder(JUICE_5).alwaysEdible().build(), Consumables.DEFAULT_DRINK).craftRemainder(Items.GLASS_BOTTLE))); } public static List copy() { diff --git a/src/main/java/com/epherical/croptopia/register/helpers/Tree.java b/src/main/java/com/epherical/croptopia/register/helpers/Tree.java index ffb37ab20..31578c813 100644 --- a/src/main/java/com/epherical/croptopia/register/helpers/Tree.java +++ b/src/main/java/com/epherical/croptopia/register/helpers/Tree.java @@ -13,10 +13,10 @@ import net.minecraft.resources.ResourceKey; import net.minecraft.resources.ResourceLocation; import net.minecraft.tags.TagKey; -import net.minecraft.util.random.SimpleWeightedRandomList; +import net.minecraft.util.random.WeightedList; import net.minecraft.util.valueproviders.ConstantInt; +import net.minecraft.world.item.BlockItem; import net.minecraft.world.item.Item; -import net.minecraft.world.item.ItemNameBlockItem; import net.minecraft.world.item.ItemStack; import net.minecraft.world.item.context.UseOnContext; import net.minecraft.world.level.block.Block; @@ -41,7 +41,11 @@ import java.util.Objects; import java.util.Optional; -import static com.epherical.croptopia.CroptopiaMod.*; +import static com.epherical.croptopia.CroptopiaMod.createGroup; +import static com.epherical.croptopia.CroptopiaMod.createIdentifier; +import static com.epherical.croptopia.CroptopiaMod.createSaplingSettings; +import static com.epherical.croptopia.CroptopiaMod.cropBlocks; +import static com.epherical.croptopia.CroptopiaMod.leafBlocks; public class Tree implements ItemConvertibleWithPlural, BlockConvertible { private static final List TREES = new ArrayList<>(); @@ -196,21 +200,21 @@ public static List copy() { }*/ public void registerItem(RegisterFunction register) { - item = register.register(createIdentifier(name), () -> new Item(createGroup())); - register.register(createIdentifier(name + "_log"), () -> new ItemNameBlockItem(log, createGroup())); - register.register(createIdentifier("stripped_" + name + "_log"), () -> new ItemNameBlockItem(strippedLog, createGroup())); - register.register(createIdentifier(name + "_wood"), () -> new ItemNameBlockItem(wood, createGroup())); - register.register(createIdentifier("stripped_" + name + "_wood"), () -> new ItemNameBlockItem(strippedWood, createGroup())); - sapling = register.register(createIdentifier(name + "_sapling"), () -> new ItemNameBlockItem(saplingBlock, createGroup())); + item = register.register(createIdentifier(name), id -> new Item(createGroup(id))); + register.register(createIdentifier(name + "_log"), id -> new BlockItem(log, createGroup(id))); + register.register(createIdentifier("stripped_" + name + "_log"), id -> new BlockItem(strippedLog, createGroup(id))); + register.register(createIdentifier(name + "_wood"), id -> new BlockItem(wood, createGroup(id))); + register.register(createIdentifier("stripped_" + name + "_wood"), id -> new BlockItem(strippedWood, createGroup(id))); + sapling = register.register(createIdentifier(name + "_sapling"), id -> new BlockItem(saplingBlock, createGroup(id))); } public void registerBlock(RegisterFunction register) { - log = register.register(createIdentifier(name + "_log"), () -> new RotatedPillarBlock(BlockBehaviour.Properties.of().mapColor(MapColor.COLOR_BROWN).ignitedByLava().sound(SoundType.WOOD).strength(2.0F))); - strippedLog = register.register(createIdentifier("stripped_" + name + "_log"), () -> new RotatedPillarBlock(BlockBehaviour.Properties.of().mapColor(MapColor.COLOR_BROWN).ignitedByLava().sound(SoundType.WOOD).strength(2.0F))); - wood = register.register(createIdentifier(name + "_wood"), () -> new RotatedPillarBlock(BlockBehaviour.Properties.of().mapColor(MapColor.COLOR_BROWN).ignitedByLava().sound(SoundType.WOOD).strength(2.0F))); - strippedWood = register.register(createIdentifier("stripped_" + name + "_wood"), () -> new RotatedPillarBlock(BlockBehaviour.Properties.of().mapColor(MapColor.COLOR_BROWN).ignitedByLava().sound(SoundType.WOOD).strength(2.0F))); + log = register.register(createIdentifier(name + "_log"), id -> new RotatedPillarBlock(BlockBehaviour.Properties.of().setId(ResourceKey.create(Registries.BLOCK, id)).mapColor(MapColor.COLOR_BROWN).ignitedByLava().sound(SoundType.WOOD).strength(2.0F))); + strippedLog = register.register(createIdentifier("stripped_" + name + "_log"), id -> new RotatedPillarBlock(BlockBehaviour.Properties.of().setId(ResourceKey.create(Registries.BLOCK, id)).mapColor(MapColor.COLOR_BROWN).ignitedByLava().sound(SoundType.WOOD).strength(2.0F))); + wood = register.register(createIdentifier(name + "_wood"), id -> new RotatedPillarBlock(BlockBehaviour.Properties.of().setId(ResourceKey.create(Registries.BLOCK, id)).mapColor(MapColor.COLOR_BROWN).ignitedByLava().sound(SoundType.WOOD).strength(2.0F))); + strippedWood = register.register(createIdentifier("stripped_" + name + "_wood"), id -> new RotatedPillarBlock(BlockBehaviour.Properties.of().setId(ResourceKey.create(Registries.BLOCK, id)).mapColor(MapColor.COLOR_BROWN).ignitedByLava().sound(SoundType.WOOD).strength(2.0F))); leaves = register.register(createIdentifier(name + "_leaves"), CroptopiaMod::createRegularLeavesBlock); - saplingBlock = register.register(createIdentifier(name + "_sapling"), () -> new CroptopiaSaplingBlock(createTree(configuredFeatureKey), createSaplingSettings().ignitedByLava())); + saplingBlock = register.register(createIdentifier(name + "_sapling"), id -> new CroptopiaSaplingBlock(createTree(configuredFeatureKey), createSaplingSettings(id).ignitedByLava())); leafBlocks.add(leaves); cropBlocks.add(saplingBlock); } @@ -223,11 +227,16 @@ private static TreeGrower createTree(ResourceKey> key) { return new ConfiguredFeature<>(Feature.TREE, new TreeConfiguration.TreeConfigurationBuilder( SimpleStateProvider.simple(log.defaultBlockState()), new StraightTrunkPlacer(i, j, k), - new WeightedStateProvider(SimpleWeightedRandomList.builder().add(leaves.defaultBlockState(), 90).build()), + new WeightedStateProvider( + WeightedList.builder() + .add(leaves.defaultBlockState(), 90) + .build() + ), new BlobFoliagePlacer(ConstantInt.of(2), ConstantInt.of(0), 3), new TwoLayersFeatureSize(1, 0, 2)).ignoreVines().build()); } + public static void attemptPop(BlockState state, UseOnContext context, BlockPos pos) { for (Tree crop : TREES) { if (state.getBlock().equals(crop.getLog()) || state.getBlock().equals(crop.getWood())) { diff --git a/src/main/java/com/epherical/croptopia/register/helpers/TreeCrop.java b/src/main/java/com/epherical/croptopia/register/helpers/TreeCrop.java index 3c2afbb31..9093787c7 100644 --- a/src/main/java/com/epherical/croptopia/register/helpers/TreeCrop.java +++ b/src/main/java/com/epherical/croptopia/register/helpers/TreeCrop.java @@ -13,7 +13,7 @@ import com.epherical.croptopia.util.ItemConvertibleWithPlural; import com.epherical.croptopia.util.RegisterFunction; import net.minecraft.resources.ResourceKey; -import net.minecraft.util.random.SimpleWeightedRandomList; +import net.minecraft.util.random.WeightedList; import net.minecraft.util.valueproviders.ConstantInt; import net.minecraft.world.item.Item; import net.minecraft.world.item.Items; @@ -35,7 +35,11 @@ import java.util.Objects; import java.util.Optional; -import static com.epherical.croptopia.CroptopiaMod.*; +import static com.epherical.croptopia.CroptopiaMod.createGroup; +import static com.epherical.croptopia.CroptopiaMod.createIdentifier; +import static com.epherical.croptopia.CroptopiaMod.createSaplingSettings; +import static com.epherical.croptopia.CroptopiaMod.cropBlocks; +import static com.epherical.croptopia.CroptopiaMod.leafBlocks; import static com.epherical.croptopia.util.FoodConstructor.createFood; public class TreeCrop implements ItemConvertibleWithPlural, BlockConvertible { @@ -45,10 +49,12 @@ public class TreeCrop implements ItemConvertibleWithPlural, BlockConvertible { private final String name; private final boolean isPlural; private final TagCategory category; + private Item item; - private Block leaves; + private Block leaves; // REVIEW what is the difference between leaves and leafType? private Block leafType; + private final Block logType; private ConfiguredFeature treeConfig; private Item saplingItem; @@ -78,6 +84,7 @@ public TreeCrop(String name, boolean plural, Block logType, Block leafType, TagC this.category = category; this.constructor = constructor; this.leafType = leafType; + this.logType = logType; TREE_CROPS.add(this); } @@ -123,6 +130,10 @@ public Block getLeaves() { return leaves; } + public Block getLogType() { + return logType; + } + public TagCategory getTagCategory() { return category; } @@ -157,16 +168,16 @@ public static void registerItems(RegisterFunction register) { public void registerItem(RegisterFunction register) { if (!Objects.equals(name(), ItemNamesV2.APPLE)) { - item = register.register(createIdentifier(name()), () -> new CropItem(createGroup().food(createFood(constructor)))); + item = register.register(createIdentifier(name()), id -> new CropItem(createGroup(id).food(createFood(constructor)))); CroptopiaMod.cropItems.add(asItem()); } else { item = Items.APPLE; } - saplingItem = register.register(createIdentifier(name() + "_sapling"), () -> new CroptopiaSaplingItem(saplingBlock, leaves, leafType, createGroup())); + saplingItem = register.register(createIdentifier(name() + "_sapling"), id -> new CroptopiaSaplingItem(saplingBlock, leaves, leafType, createGroup(id))); } public void registerBlock(RegisterFunction register) { - saplingBlock = register.register(createIdentifier(name() + "_sapling"), () -> new CroptopiaSaplingBlock(createTree(configuredFeatureKey), createSaplingSettings())); + saplingBlock = register.register(createIdentifier(name() + "_sapling"), id -> new CroptopiaSaplingBlock(createTree(configuredFeatureKey), createSaplingSettings(id))); leaves = register.register(createIdentifier(name() + "_crop"), CroptopiaMod::createLeavesBlock); cropBlocks.add(asBlock()); @@ -186,7 +197,12 @@ public static List copy() { return new ConfiguredFeature<>(Feature.TREE, new TreeConfiguration.TreeConfigurationBuilder( SimpleStateProvider.simple(logType.defaultBlockState()), new StraightTrunkPlacer(i, j, k), - new WeightedStateProvider(SimpleWeightedRandomList.builder().add(leafType.defaultBlockState(), 90).add(leafCrop.defaultBlockState().setValue(LeafCropBlock.AGE, 3), 20).build()), + new WeightedStateProvider( + WeightedList.builder() + .add(leafType.defaultBlockState(), 90) + .add(leafCrop.defaultBlockState().setValue(LeafCropBlock.AGE, 3), 20) + .build() + ), new BlobFoliagePlacer(ConstantInt.of(2), ConstantInt.of(0), 3), new TwoLayersFeatureSize(1, 0, 2)).ignoreVines().build()); } diff --git a/src/main/java/com/epherical/croptopia/register/helpers/Utensil.java b/src/main/java/com/epherical/croptopia/register/helpers/Utensil.java index d72637ef8..f692e60b2 100644 --- a/src/main/java/com/epherical/croptopia/register/helpers/Utensil.java +++ b/src/main/java/com/epherical/croptopia/register/helpers/Utensil.java @@ -48,6 +48,6 @@ public static List copy() { } public void registerItems(RegisterFunction register) { - this.utensil = register.register(CroptopiaMod.createIdentifier(name), () -> new CookingUtensil(createGroup().stacksTo(1))); + this.utensil = register.register(CroptopiaMod.createIdentifier(name), id -> new CookingUtensil(createGroup(id).stacksTo(1))); } } diff --git a/src/main/java/com/epherical/croptopia/util/FoodConstructor.java b/src/main/java/com/epherical/croptopia/util/FoodConstructor.java index 9fed88abf..86c82970d 100644 --- a/src/main/java/com/epherical/croptopia/util/FoodConstructor.java +++ b/src/main/java/com/epherical/croptopia/util/FoodConstructor.java @@ -1,7 +1,6 @@ package com.epherical.croptopia.util; import net.minecraft.world.food.FoodProperties; -import net.minecraft.world.item.Items; public record FoodConstructor(int hunger, float satMod) { public static final FoodConstructor RAW_CROP_1 = new FoodConstructor(1, 0.1F); @@ -50,8 +49,4 @@ public static FoodProperties.Builder createBuilder(FoodConstructor reg) { public static FoodProperties createFood(FoodConstructor reg) { return createBuilder(reg).build(); } - - public static FoodProperties createFoodBowl(FoodConstructor reg) { - return createBuilder(reg).usingConvertsTo(Items.BOWL).build(); - } } diff --git a/src/main/java/com/epherical/croptopia/util/RegisterFunction.java b/src/main/java/com/epherical/croptopia/util/RegisterFunction.java index 462b19cdf..9c3bd361c 100644 --- a/src/main/java/com/epherical/croptopia/util/RegisterFunction.java +++ b/src/main/java/com/epherical/croptopia/util/RegisterFunction.java @@ -1,10 +1,11 @@ package com.epherical.croptopia.util; +import net.minecraft.resources.ResourceKey; import net.minecraft.resources.ResourceLocation; -import java.util.function.Supplier; +import java.util.function.Function; public interface RegisterFunction { - T register(ResourceLocation id, Supplier object); + T register(ResourceLocation id, Function object); } diff --git a/src/main/resources/assets/croptopia/items/cinnamon.json b/src/main/resources/assets/croptopia/items/cinnamon.json new file mode 100644 index 000000000..73a080136 --- /dev/null +++ b/src/main/resources/assets/croptopia/items/cinnamon.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/cinnamon" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/croptopia/items/cinnamon_log.json b/src/main/resources/assets/croptopia/items/cinnamon_log.json new file mode 100644 index 000000000..31bd62253 --- /dev/null +++ b/src/main/resources/assets/croptopia/items/cinnamon_log.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:block/cinnamon_log" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/croptopia/items/cinnamon_sapling.json b/src/main/resources/assets/croptopia/items/cinnamon_sapling.json new file mode 100644 index 000000000..92208ec44 --- /dev/null +++ b/src/main/resources/assets/croptopia/items/cinnamon_sapling.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:block/cinnamon_sapling" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/croptopia/items/cinnamon_wood.json b/src/main/resources/assets/croptopia/items/cinnamon_wood.json new file mode 100644 index 000000000..2fbf9596e --- /dev/null +++ b/src/main/resources/assets/croptopia/items/cinnamon_wood.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:block/cinnamon_wood" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/croptopia/items/guide.json b/src/main/resources/assets/croptopia/items/guide.json new file mode 100644 index 000000000..05a692b2a --- /dev/null +++ b/src/main/resources/assets/croptopia/items/guide.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:item/guide" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/croptopia/items/salt_ore.json b/src/main/resources/assets/croptopia/items/salt_ore.json new file mode 100644 index 000000000..d5f0bd08d --- /dev/null +++ b/src/main/resources/assets/croptopia/items/salt_ore.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:block/salt_ore" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/croptopia/items/stripped_cinnamon_log.json b/src/main/resources/assets/croptopia/items/stripped_cinnamon_log.json new file mode 100644 index 000000000..824c85d68 --- /dev/null +++ b/src/main/resources/assets/croptopia/items/stripped_cinnamon_log.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:block/stripped_cinnamon_log" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/croptopia/items/stripped_cinnamon_wood.json b/src/main/resources/assets/croptopia/items/stripped_cinnamon_wood.json new file mode 100644 index 000000000..c3cc28799 --- /dev/null +++ b/src/main/resources/assets/croptopia/items/stripped_cinnamon_wood.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "croptopia:block/stripped_cinnamon_wood" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/croptopia/lang/en_us.json b/src/main/resources/assets/croptopia/lang/en_us.json index 6ee71effa..9268721da 100644 --- a/src/main/resources/assets/croptopia/lang/en_us.json +++ b/src/main/resources/assets/croptopia/lang/en_us.json @@ -616,6 +616,7 @@ "tag.c.seeds" : "Seeds", "tag.c.jams" : "Jams", "tag.c.juices" : "Juices", + "tag.c.salts" : "Salts", "tag.c.tools.knives" : "Knives", "tag.croptopia.beef_mutton" : "Beef Mutton", "tag.croptopia.meat_replacements" : "Meat Replacements", diff --git a/src/main/resources/assets/croptopia/models/item/cinnamon_log.json b/src/main/resources/assets/croptopia/models/item/cinnamon_log.json deleted file mode 100644 index 0c89b7446..000000000 --- a/src/main/resources/assets/croptopia/models/item/cinnamon_log.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "croptopia:block/cinnamon_log" -} \ No newline at end of file diff --git a/src/main/resources/assets/croptopia/models/item/cinnamon_sapling.json b/src/main/resources/assets/croptopia/models/item/cinnamon_sapling.json deleted file mode 100644 index 1f1dc095f..000000000 --- a/src/main/resources/assets/croptopia/models/item/cinnamon_sapling.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/generated", - "textures": { - "layer0": "croptopia:block/cinnamon_sapling" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/croptopia/models/item/cinnamon_wood.json b/src/main/resources/assets/croptopia/models/item/cinnamon_wood.json deleted file mode 100644 index a5f9d3030..000000000 --- a/src/main/resources/assets/croptopia/models/item/cinnamon_wood.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "croptopia:block/cinnamon_wood" -} \ No newline at end of file diff --git a/src/main/resources/assets/croptopia/models/item/guide.json b/src/main/resources/assets/croptopia/models/item/guide.json index c0de34051..e66f2b363 100644 --- a/src/main/resources/assets/croptopia/models/item/guide.json +++ b/src/main/resources/assets/croptopia/models/item/guide.json @@ -1,6 +1,6 @@ { "parent": "minecraft:item/generated", "textures": { - "layer0": "croptopia:item/croptopia_guidebook" + "layer0": "croptopia:item/croptopia_guidebook.png" } -} +} \ No newline at end of file diff --git a/src/main/resources/assets/croptopia/models/item/salt_ore.json b/src/main/resources/assets/croptopia/models/item/salt_ore.json deleted file mode 100644 index 06f8b9bd1..000000000 --- a/src/main/resources/assets/croptopia/models/item/salt_ore.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "parent": "croptopia:block/salt_ore" -} - diff --git a/src/main/resources/assets/croptopia/models/item/stripped_cinnamon_log.json b/src/main/resources/assets/croptopia/models/item/stripped_cinnamon_log.json deleted file mode 100644 index bdfe64820..000000000 --- a/src/main/resources/assets/croptopia/models/item/stripped_cinnamon_log.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "croptopia:block/stripped_cinnamon_log" -} \ No newline at end of file diff --git a/src/main/resources/assets/croptopia/models/item/stripped_cinnamon_wood.json b/src/main/resources/assets/croptopia/models/item/stripped_cinnamon_wood.json deleted file mode 100644 index ae547e8fe..000000000 --- a/src/main/resources/assets/croptopia/models/item/stripped_cinnamon_wood.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "croptopia:block/stripped_cinnamon_wood" -} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/advancement/recipes/fruit_smoothie.json b/src/main/resources/data/croptopia/advancement/recipes/fruit_smoothie.json index 9b64207d7..a510acf7d 100644 --- a/src/main/resources/data/croptopia/advancement/recipes/fruit_smoothie.json +++ b/src/main/resources/data/croptopia/advancement/recipes/fruit_smoothie.json @@ -11,7 +11,7 @@ "conditions": { "items": [ { - "tag": "${dependent}:fruits" + "tag": "${dependent}:foods/fruits" } ] } diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/almond_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/almond_crop.json new file mode 100644 index 000000000..29dd961c5 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/almond_crop.json @@ -0,0 +1,29 @@ + +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "name": "croptopia:almond" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:almond_crop", + "properties": { + "age": "3" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/almond_sapling.json b/src/main/resources/data/croptopia/loot_tables/blocks/almond_sapling.json new file mode 100644 index 000000000..b398cdb38 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/almond_sapling.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "croptopia:almond_sapling" + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/apple_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/apple_crop.json new file mode 100644 index 000000000..47d7dbc2d --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/apple_crop.json @@ -0,0 +1,29 @@ + +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:apple" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:apple_crop", + "properties": { + "age": "3" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/apple_sapling.json b/src/main/resources/data/croptopia/loot_tables/blocks/apple_sapling.json new file mode 100644 index 000000000..e3bcebc2d --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/apple_sapling.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "croptopia:apple_sapling" + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/apricot_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/apricot_crop.json new file mode 100644 index 000000000..be0b63d90 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/apricot_crop.json @@ -0,0 +1,29 @@ + +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "name": "croptopia:apricot" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:apricot_crop", + "properties": { + "age": "3" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/apricot_sapling.json b/src/main/resources/data/croptopia/loot_tables/blocks/apricot_sapling.json new file mode 100644 index 000000000..1363e8825 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/apricot_sapling.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "croptopia:apricot_sapling" + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/artichoke_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/artichoke_crop.json new file mode 100644 index 000000000..197ee11e4 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/artichoke_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:artichoke_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:artichoke" + }, + { + "type": "minecraft:item", + "name": "croptopia:artichoke_seed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.5714286 + } + } + ], + "name": "croptopia:artichoke_seed" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:artichoke_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/asparagus_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/asparagus_crop.json new file mode 100644 index 000000000..0b21c6921 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/asparagus_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:asparagus_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:asparagus" + }, + { + "type": "minecraft:item", + "name": "croptopia:asparagus_seed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.5714286 + } + } + ], + "name": "croptopia:asparagus_seed" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:asparagus_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/avocado_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/avocado_crop.json new file mode 100644 index 000000000..fa3b4b336 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/avocado_crop.json @@ -0,0 +1,29 @@ + +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "name": "croptopia:avocado" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:avocado_crop", + "properties": { + "age": "3" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/avocado_sapling.json b/src/main/resources/data/croptopia/loot_tables/blocks/avocado_sapling.json new file mode 100644 index 000000000..677c47725 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/avocado_sapling.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "croptopia:avocado_sapling" + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/banana_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/banana_crop.json new file mode 100644 index 000000000..6557caa43 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/banana_crop.json @@ -0,0 +1,29 @@ + +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "name": "croptopia:banana" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:banana_crop", + "properties": { + "age": "3" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/banana_sapling.json b/src/main/resources/data/croptopia/loot_tables/blocks/banana_sapling.json new file mode 100644 index 000000000..bc9c7f734 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/banana_sapling.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "croptopia:banana_sapling" + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/barley_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/barley_crop.json new file mode 100644 index 000000000..0574113c6 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/barley_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:barley_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:barley_seed" + }, + { + "type": "minecraft:item", + "name": "croptopia:barley_seed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.2714286 + } + } + ], + "name": "croptopia:barley" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:barley_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/basil_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/basil_crop.json new file mode 100644 index 000000000..7f9807a74 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/basil_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:basil_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:basil" + }, + { + "type": "minecraft:item", + "name": "croptopia:basil_seed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.5714286 + } + } + ], + "name": "croptopia:basil_seed" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:basil_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/bellpepper_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/bellpepper_crop.json new file mode 100644 index 000000000..02ed00cdf --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/bellpepper_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:bellpepper_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:bellpepper" + }, + { + "type": "minecraft:item", + "name": "croptopia:bellpepper_seed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.5714286 + } + } + ], + "name": "croptopia:bellpepper_seed" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:bellpepper_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/blackbean_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/blackbean_crop.json new file mode 100644 index 000000000..b356652c0 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/blackbean_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:blackbean_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:blackbean" + }, + { + "type": "minecraft:item", + "name": "croptopia:blackbean_seed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.5714286 + } + } + ], + "name": "croptopia:blackbean_seed" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:blackbean_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/blackberry_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/blackberry_crop.json new file mode 100644 index 000000000..27789f61f --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/blackberry_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:blackberry_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:blackberry" + }, + { + "type": "minecraft:item", + "name": "croptopia:blackberry_seed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.5714286 + } + } + ], + "name": "croptopia:blackberry_seed" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:blackberry_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/blueberry_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/blueberry_crop.json new file mode 100644 index 000000000..9be5a148a --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/blueberry_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:blueberry_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:blueberry" + }, + { + "type": "minecraft:item", + "name": "croptopia:blueberry_seed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.5714286 + } + } + ], + "name": "croptopia:blueberry_seed" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:blueberry_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/broccoli_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/broccoli_crop.json new file mode 100644 index 000000000..1c888a4dd --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/broccoli_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:broccoli_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:broccoli" + }, + { + "type": "minecraft:item", + "name": "croptopia:broccoli_seed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.2714286 + } + } + ], + "name": "croptopia:broccoli_seed" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:broccoli_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/cabbage_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/cabbage_crop.json new file mode 100644 index 000000000..84f538315 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/cabbage_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:cabbage_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:cabbage" + }, + { + "type": "minecraft:item", + "name": "croptopia:cabbage_seed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.5714286 + } + } + ], + "name": "croptopia:cabbage_seed" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:cabbage_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/cantaloupe_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/cantaloupe_crop.json new file mode 100644 index 000000000..8c675a9d2 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/cantaloupe_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:cantaloupe_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:cantaloupe" + }, + { + "type": "minecraft:item", + "name": "croptopia:cantaloupe_seed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.5714286 + } + } + ], + "name": "croptopia:cantaloupe_seed" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:cantaloupe_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/cashew_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/cashew_crop.json new file mode 100644 index 000000000..271e9525f --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/cashew_crop.json @@ -0,0 +1,29 @@ + +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "name": "croptopia:cashew" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:cashew_crop", + "properties": { + "age": "3" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/cashew_sapling.json b/src/main/resources/data/croptopia/loot_tables/blocks/cashew_sapling.json new file mode 100644 index 000000000..767365a84 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/cashew_sapling.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "croptopia:cashew_sapling" + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/cauliflower_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/cauliflower_crop.json new file mode 100644 index 000000000..5e6a42afe --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/cauliflower_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:cauliflower_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:cauliflower" + }, + { + "type": "minecraft:item", + "name": "croptopia:cauliflower_seed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.5714286 + } + } + ], + "name": "croptopia:cauliflower_seed" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:cauliflower_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/celery_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/celery_crop.json new file mode 100644 index 000000000..b25c3357b --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/celery_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:celery_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:celery" + }, + { + "type": "minecraft:item", + "name": "croptopia:celery_seed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.5714286 + } + } + ], + "name": "croptopia:celery_seed" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:celery_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/cherry_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/cherry_crop.json new file mode 100644 index 000000000..815254e42 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/cherry_crop.json @@ -0,0 +1,29 @@ + +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "name": "croptopia:cherry" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:cherry_crop", + "properties": { + "age": "3" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/cherry_sapling.json b/src/main/resources/data/croptopia/loot_tables/blocks/cherry_sapling.json new file mode 100644 index 000000000..a48aabfb6 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/cherry_sapling.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "croptopia:cherry_sapling" + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/chile_pepper_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/chile_pepper_crop.json new file mode 100644 index 000000000..b27e70f88 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/chile_pepper_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:chile_pepper_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:chile_pepper" + }, + { + "type": "minecraft:item", + "name": "croptopia:chile_pepper_seed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.5714286 + } + } + ], + "name": "croptopia:chile_pepper_seed" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:chile_pepper_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/cinnamon_leaves.json b/src/main/resources/data/croptopia/loot_tables/blocks/cinnamon_leaves.json new file mode 100644 index 000000000..75feb4c59 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/cinnamon_leaves.json @@ -0,0 +1,128 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": ["minecraft:shears"] + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + ] + } + ], + "name": "minecraft:jungle_leaves" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + }, + { + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune", + "chances": [ + 0.05, + 0.0625, + 0.083333336, + 0.1 + ] + } + ], + "name": "croptopia:cinnamon_sapling" + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune", + "chances": [ + 0.02, + 0.022222223, + 0.025, + 0.033333335, + 0.1 + ] + } + ], + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1.0, + "max": 2.0, + "type": "minecraft:uniform" + } + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:stick" + } + ], + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": ["minecraft:shears"] + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + ] + } + } + ] + } + ] +} diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/cinnamon_log.json b/src/main/resources/data/croptopia/loot_tables/blocks/cinnamon_log.json new file mode 100644 index 000000000..3a5004e09 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/cinnamon_log.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "croptopia:cinnamon_log" + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/cinnamon_sapling.json b/src/main/resources/data/croptopia/loot_tables/blocks/cinnamon_sapling.json new file mode 100644 index 000000000..94dc5982e --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/cinnamon_sapling.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "croptopia:cinnamon_sapling" + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/cinnamon_wood.json b/src/main/resources/data/croptopia/loot_tables/blocks/cinnamon_wood.json new file mode 100644 index 000000000..6c356b1e9 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/cinnamon_wood.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "croptopia:cinnamon_wood" + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/coconut_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/coconut_crop.json new file mode 100644 index 000000000..09402dcac --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/coconut_crop.json @@ -0,0 +1,29 @@ + +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "name": "croptopia:coconut" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:coconut_crop", + "properties": { + "age": "3" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/coconut_sapling.json b/src/main/resources/data/croptopia/loot_tables/blocks/coconut_sapling.json new file mode 100644 index 000000000..dbeac61f8 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/coconut_sapling.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "croptopia:coconut_sapling" + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/coffee_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/coffee_crop.json new file mode 100644 index 000000000..68c45c507 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/coffee_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:coffee_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:coffee_beans" + }, + { + "type": "minecraft:item", + "name": "croptopia:coffee_seed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.5714286 + } + } + ], + "name": "croptopia:coffee_seed" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:coffee_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/corn_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/corn_crop.json new file mode 100644 index 000000000..7fbf5ef9c --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/corn_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:corn_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:corn" + }, + { + "type": "minecraft:item", + "name": "croptopia:corn_seed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.5714286 + } + } + ], + "name": "croptopia:corn_seed" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:corn_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/cranberry_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/cranberry_crop.json new file mode 100644 index 000000000..261f286cb --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/cranberry_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:cranberry_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:cranberry" + }, + { + "type": "minecraft:item", + "name": "croptopia:cranberry_seed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.5714286 + } + } + ], + "name": "croptopia:cranberry_seed" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:cranberry_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/cucumber_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/cucumber_crop.json new file mode 100644 index 000000000..3b89b143f --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/cucumber_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:cucumber_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:cucumber" + }, + { + "type": "minecraft:item", + "name": "croptopia:cucumber_seed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.5714286 + } + } + ], + "name": "croptopia:cucumber_seed" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:cucumber_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/currant_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/currant_crop.json new file mode 100644 index 000000000..825aa369f --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/currant_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:currant_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:currant" + }, + { + "type": "minecraft:item", + "name": "croptopia:currant_seed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.5714286 + } + } + ], + "name": "croptopia:currant_seed" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:currant_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/date_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/date_crop.json new file mode 100644 index 000000000..09d0b3a85 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/date_crop.json @@ -0,0 +1,29 @@ + +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "name": "croptopia:date" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:date_crop", + "properties": { + "age": "3" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/date_sapling.json b/src/main/resources/data/croptopia/loot_tables/blocks/date_sapling.json new file mode 100644 index 000000000..b580cd85c --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/date_sapling.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "croptopia:date_sapling" + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/dragonfruit_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/dragonfruit_crop.json new file mode 100644 index 000000000..906fc4a8a --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/dragonfruit_crop.json @@ -0,0 +1,29 @@ + +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "name": "croptopia:dragonfruit" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:dragonfruit_crop", + "properties": { + "age": "3" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/dragonfruit_sapling.json b/src/main/resources/data/croptopia/loot_tables/blocks/dragonfruit_sapling.json new file mode 100644 index 000000000..296ab1545 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/dragonfruit_sapling.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "croptopia:dragonfruit_sapling" + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/eggplant_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/eggplant_crop.json new file mode 100644 index 000000000..f732d9159 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/eggplant_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:eggplant_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:eggplant" + }, + { + "type": "minecraft:item", + "name": "croptopia:eggplant_seed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.5714286 + } + } + ], + "name": "croptopia:eggplant_seed" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:eggplant_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/elderberry_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/elderberry_crop.json new file mode 100644 index 000000000..421c61a44 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/elderberry_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:elderberry_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:elderberry" + }, + { + "type": "minecraft:item", + "name": "croptopia:elderberry_seed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.5714286 + } + } + ], + "name": "croptopia:elderberry_seed" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:elderberry_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/fig_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/fig_crop.json new file mode 100644 index 000000000..4e34abb57 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/fig_crop.json @@ -0,0 +1,29 @@ + +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "name": "croptopia:fig" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:fig_crop", + "properties": { + "age": "3" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/fig_sapling.json b/src/main/resources/data/croptopia/loot_tables/blocks/fig_sapling.json new file mode 100644 index 000000000..977828dfc --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/fig_sapling.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "croptopia:fig_sapling" + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/garlic_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/garlic_crop.json new file mode 100644 index 000000000..4e5e772b8 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/garlic_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:garlic_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:garlic" + }, + { + "type": "minecraft:item", + "name": "croptopia:garlic_seed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.5714286 + } + } + ], + "name": "croptopia:garlic_seed" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:garlic_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/ginger_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/ginger_crop.json new file mode 100644 index 000000000..c01665b5a --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/ginger_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:ginger_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:ginger" + }, + { + "type": "minecraft:item", + "name": "croptopia:ginger_seed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.5714286 + } + } + ], + "name": "croptopia:ginger_seed" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:ginger_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/grape_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/grape_crop.json new file mode 100644 index 000000000..260c93817 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/grape_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:grape_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:grape" + }, + { + "type": "minecraft:item", + "name": "croptopia:grape_seed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.5714286 + } + } + ], + "name": "croptopia:grape_seed" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:grape_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/grapefruit_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/grapefruit_crop.json new file mode 100644 index 000000000..9bcc65fe0 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/grapefruit_crop.json @@ -0,0 +1,29 @@ + +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "name": "croptopia:grapefruit" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:grapefruit_crop", + "properties": { + "age": "3" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/grapefruit_sapling.json b/src/main/resources/data/croptopia/loot_tables/blocks/grapefruit_sapling.json new file mode 100644 index 000000000..9d89eedde --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/grapefruit_sapling.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "croptopia:grapefruit_sapling" + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/greenbean_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/greenbean_crop.json new file mode 100644 index 000000000..b79403994 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/greenbean_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:greenbean_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:greenbean" + }, + { + "type": "minecraft:item", + "name": "croptopia:greenbean_seed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.5714286 + } + } + ], + "name": "croptopia:greenbean_seed" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:greenbean_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/greenonion_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/greenonion_crop.json new file mode 100644 index 000000000..1ad705c6b --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/greenonion_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:greenonion_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:greenonion" + }, + { + "type": "minecraft:item", + "name": "croptopia:greenonion_seed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.5714286 + } + } + ], + "name": "croptopia:greenonion_seed" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:greenonion_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/honeydew_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/honeydew_crop.json new file mode 100644 index 000000000..4bd140e67 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/honeydew_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:honeydew_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:honeydew" + }, + { + "type": "minecraft:item", + "name": "croptopia:honeydew_seed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.5714286 + } + } + ], + "name": "croptopia:honeydew_seed" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:honeydew_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/hops_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/hops_crop.json new file mode 100644 index 000000000..cf70a9c9d --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/hops_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:hops_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:hops" + }, + { + "type": "minecraft:item", + "name": "croptopia:hops_seed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.5714286 + } + } + ], + "name": "croptopia:hops_seed" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:hops_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/kale_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/kale_crop.json new file mode 100644 index 000000000..c208a52f9 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/kale_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:kale_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:kale" + }, + { + "type": "minecraft:item", + "name": "croptopia:kale_seed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.5714286 + } + } + ], + "name": "croptopia:kale_seed" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:kale_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/kiwi_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/kiwi_crop.json new file mode 100644 index 000000000..0df2f03e9 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/kiwi_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:kiwi_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:kiwi" + }, + { + "type": "minecraft:item", + "name": "croptopia:kiwi_seed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.5714286 + } + } + ], + "name": "croptopia:kiwi_seed" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:kiwi_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/kumquat_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/kumquat_crop.json new file mode 100644 index 000000000..a6a7719f8 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/kumquat_crop.json @@ -0,0 +1,29 @@ + +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "name": "croptopia:kumquat" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:kumquat_crop", + "properties": { + "age": "3" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/kumquat_sapling.json b/src/main/resources/data/croptopia/loot_tables/blocks/kumquat_sapling.json new file mode 100644 index 000000000..93424f29c --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/kumquat_sapling.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "croptopia:kumquat_sapling" + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/leek_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/leek_crop.json new file mode 100644 index 000000000..cce644ef7 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/leek_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:leek_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:leek" + }, + { + "type": "minecraft:item", + "name": "croptopia:leek_seed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.5714286 + } + } + ], + "name": "croptopia:leek_seed" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:leek_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/lemon_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/lemon_crop.json new file mode 100644 index 000000000..671ab77a7 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/lemon_crop.json @@ -0,0 +1,29 @@ + +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "name": "croptopia:lemon" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:lemon_crop", + "properties": { + "age": "3" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/lemon_sapling.json b/src/main/resources/data/croptopia/loot_tables/blocks/lemon_sapling.json new file mode 100644 index 000000000..49aba5c3f --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/lemon_sapling.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "croptopia:lemon_sapling" + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/lettuce_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/lettuce_crop.json new file mode 100644 index 000000000..a2dd47370 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/lettuce_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:lettuce_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:lettuce" + }, + { + "type": "minecraft:item", + "name": "croptopia:lettuce_seed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.5714286 + } + } + ], + "name": "croptopia:lettuce_seed" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:lettuce_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/lime_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/lime_crop.json new file mode 100644 index 000000000..333963da7 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/lime_crop.json @@ -0,0 +1,29 @@ + +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "name": "croptopia:lime" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:lime_crop", + "properties": { + "age": "3" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/lime_sapling.json b/src/main/resources/data/croptopia/loot_tables/blocks/lime_sapling.json new file mode 100644 index 000000000..63bc53d8b --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/lime_sapling.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "croptopia:lime_sapling" + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/mango_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/mango_crop.json new file mode 100644 index 000000000..5ad69396a --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/mango_crop.json @@ -0,0 +1,29 @@ + +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "name": "croptopia:mango" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:mango_crop", + "properties": { + "age": "3" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/mango_sapling.json b/src/main/resources/data/croptopia/loot_tables/blocks/mango_sapling.json new file mode 100644 index 000000000..ff31d7227 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/mango_sapling.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "croptopia:mango_sapling" + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/mustard_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/mustard_crop.json new file mode 100644 index 000000000..982db4285 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/mustard_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:mustard_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:mustard" + }, + { + "type": "minecraft:item", + "name": "croptopia:mustard_seed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.5714286 + } + } + ], + "name": "croptopia:mustard_seed" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:mustard_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/nectarine_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/nectarine_crop.json new file mode 100644 index 000000000..b01d22880 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/nectarine_crop.json @@ -0,0 +1,29 @@ + +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "name": "croptopia:nectarine" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:nectarine_crop", + "properties": { + "age": "3" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/nectarine_sapling.json b/src/main/resources/data/croptopia/loot_tables/blocks/nectarine_sapling.json new file mode 100644 index 000000000..0bce078da --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/nectarine_sapling.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "croptopia:nectarine_sapling" + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/nutmeg_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/nutmeg_crop.json new file mode 100644 index 000000000..0309927b2 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/nutmeg_crop.json @@ -0,0 +1,29 @@ + +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "name": "croptopia:nutmeg" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:nutmeg_crop", + "properties": { + "age": "3" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/nutmeg_sapling.json b/src/main/resources/data/croptopia/loot_tables/blocks/nutmeg_sapling.json new file mode 100644 index 000000000..3ec36c40e --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/nutmeg_sapling.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "croptopia:nutmeg_sapling" + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/oat_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/oat_crop.json new file mode 100644 index 000000000..93293821f --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/oat_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:oat_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:oat" + }, + { + "type": "minecraft:item", + "name": "croptopia:oat_seed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.5714286 + } + } + ], + "name": "croptopia:oat_seed" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:oat_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/olive_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/olive_crop.json new file mode 100644 index 000000000..5797a08c9 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/olive_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:olive_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:olive" + }, + { + "type": "minecraft:item", + "name": "croptopia:olive_seed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.5714286 + } + } + ], + "name": "croptopia:olive_seed" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:olive_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/onion_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/onion_crop.json new file mode 100644 index 000000000..492ef8e75 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/onion_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:onion_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:onion" + }, + { + "type": "minecraft:item", + "name": "croptopia:onion_seed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.5714286 + } + } + ], + "name": "croptopia:onion_seed" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:onion_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/orange_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/orange_crop.json new file mode 100644 index 000000000..f13c8a799 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/orange_crop.json @@ -0,0 +1,29 @@ + +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "name": "croptopia:orange" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:orange_crop", + "properties": { + "age": "3" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/orange_sapling.json b/src/main/resources/data/croptopia/loot_tables/blocks/orange_sapling.json new file mode 100644 index 000000000..da1e852e5 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/orange_sapling.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "croptopia:orange_sapling" + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/peach_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/peach_crop.json new file mode 100644 index 000000000..65e97f1ba --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/peach_crop.json @@ -0,0 +1,29 @@ + +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "name": "croptopia:peach" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:peach_crop", + "properties": { + "age": "3" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/peach_sapling.json b/src/main/resources/data/croptopia/loot_tables/blocks/peach_sapling.json new file mode 100644 index 000000000..611f29188 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/peach_sapling.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "croptopia:peach_sapling" + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/peanut_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/peanut_crop.json new file mode 100644 index 000000000..2fe245997 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/peanut_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:peanut_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:peanut" + }, + { + "type": "minecraft:item", + "name": "croptopia:peanut_seed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.5714286 + } + } + ], + "name": "croptopia:peanut_seed" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:peanut_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/pear_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/pear_crop.json new file mode 100644 index 000000000..6be28a850 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/pear_crop.json @@ -0,0 +1,29 @@ + +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "name": "croptopia:pear" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:pear_crop", + "properties": { + "age": "3" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/pear_sapling.json b/src/main/resources/data/croptopia/loot_tables/blocks/pear_sapling.json new file mode 100644 index 000000000..d2591a4d7 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/pear_sapling.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "croptopia:pear_sapling" + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/pecan_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/pecan_crop.json new file mode 100644 index 000000000..89fc71fc3 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/pecan_crop.json @@ -0,0 +1,29 @@ + +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "name": "croptopia:pecan" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:pecan_crop", + "properties": { + "age": "3" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/pecan_sapling.json b/src/main/resources/data/croptopia/loot_tables/blocks/pecan_sapling.json new file mode 100644 index 000000000..da7976d3b --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/pecan_sapling.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "croptopia:pecan_sapling" + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/pepper_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/pepper_crop.json new file mode 100644 index 000000000..5209297cd --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/pepper_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:pepper_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:pepper" + }, + { + "type": "minecraft:item", + "name": "croptopia:pepper_seed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.5714286 + } + } + ], + "name": "croptopia:pepper_seed" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:pepper_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/persimmon_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/persimmon_crop.json new file mode 100644 index 000000000..cb62e5578 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/persimmon_crop.json @@ -0,0 +1,29 @@ + +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "name": "croptopia:persimmon" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:persimmon_crop", + "properties": { + "age": "3" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/persimmon_sapling.json b/src/main/resources/data/croptopia/loot_tables/blocks/persimmon_sapling.json new file mode 100644 index 000000000..88c2f8874 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/persimmon_sapling.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "croptopia:persimmon_sapling" + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/pineapple_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/pineapple_crop.json new file mode 100644 index 000000000..22510000a --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/pineapple_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:pineapple_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:pineapple" + }, + { + "type": "minecraft:item", + "name": "croptopia:pineapple_seed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.5714286 + } + } + ], + "name": "croptopia:pineapple_seed" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:pineapple_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/plum_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/plum_crop.json new file mode 100644 index 000000000..e75e6b5eb --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/plum_crop.json @@ -0,0 +1,29 @@ + +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "name": "croptopia:plum" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:plum_crop", + "properties": { + "age": "3" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/plum_sapling.json b/src/main/resources/data/croptopia/loot_tables/blocks/plum_sapling.json new file mode 100644 index 000000000..6af03e97d --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/plum_sapling.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "croptopia:plum_sapling" + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/radish_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/radish_crop.json new file mode 100644 index 000000000..92ada152d --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/radish_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:radish_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:radish" + }, + { + "type": "minecraft:item", + "name": "croptopia:radish_seed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.5714286 + } + } + ], + "name": "croptopia:radish_seed" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:radish_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/raspberry_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/raspberry_crop.json new file mode 100644 index 000000000..81706b227 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/raspberry_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:raspberry_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:raspberry" + }, + { + "type": "minecraft:item", + "name": "croptopia:raspberry_seed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.5714286 + } + } + ], + "name": "croptopia:raspberry_seed" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:raspberry_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/rhubarb_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/rhubarb_crop.json new file mode 100644 index 000000000..43b19d13d --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/rhubarb_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:rhubarb_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:rhubarb" + }, + { + "type": "minecraft:item", + "name": "croptopia:rhubarb_seed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.5714286 + } + } + ], + "name": "croptopia:rhubarb_seed" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:rhubarb_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/rice_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/rice_crop.json new file mode 100644 index 000000000..4ccdbcc1d --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/rice_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:rice_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:rice" + }, + { + "type": "minecraft:item", + "name": "croptopia:rice_seed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.5714286 + } + } + ], + "name": "croptopia:rice_seed" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:rice_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/rutabaga_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/rutabaga_crop.json new file mode 100644 index 000000000..4d0242cf9 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/rutabaga_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:rutabaga_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:rutabaga" + }, + { + "type": "minecraft:item", + "name": "croptopia:rutabaga_seed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.5714286 + } + } + ], + "name": "croptopia:rutabaga_seed" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:rutabaga_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/saguaro_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/saguaro_crop.json new file mode 100644 index 000000000..425215117 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/saguaro_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:saguaro_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:saguaro" + }, + { + "type": "minecraft:item", + "name": "croptopia:saguaro_seed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.5714286 + } + } + ], + "name": "croptopia:saguaro_seed" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:saguaro_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/salt_ore.json b/src/main/resources/data/croptopia/loot_tables/blocks/salt_ore.json new file mode 100644 index 000000000..09c098ce8 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/salt_ore.json @@ -0,0 +1,51 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + ], + "name": "croptopia:salt_ore" + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 2.0, + "max": 5.0, + "type": "minecraft:uniform" + } + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "croptopia:salt" + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/soybean_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/soybean_crop.json new file mode 100644 index 000000000..0dc6dd326 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/soybean_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:soybean_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:soybean" + }, + { + "type": "minecraft:item", + "name": "croptopia:soybean_seed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.5714286 + } + } + ], + "name": "croptopia:soybean_seed" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:soybean_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/spinach_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/spinach_crop.json new file mode 100644 index 000000000..544d0fbad --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/spinach_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:spinach_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:spinach" + }, + { + "type": "minecraft:item", + "name": "croptopia:spinach_seed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.5714286 + } + } + ], + "name": "croptopia:spinach_seed" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:spinach_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/squash_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/squash_crop.json new file mode 100644 index 000000000..6a0705bf3 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/squash_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:squash_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:squash" + }, + { + "type": "minecraft:item", + "name": "croptopia:squash_seed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.5714286 + } + } + ], + "name": "croptopia:squash_seed" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:squash_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/starfruit_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/starfruit_crop.json new file mode 100644 index 000000000..958fd6cbe --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/starfruit_crop.json @@ -0,0 +1,29 @@ + +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "name": "croptopia:starfruit" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:starfruit_crop", + "properties": { + "age": "3" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/starfruit_sapling.json b/src/main/resources/data/croptopia/loot_tables/blocks/starfruit_sapling.json new file mode 100644 index 000000000..326fa67d5 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/starfruit_sapling.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "croptopia:starfruit_sapling" + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/strawberry_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/strawberry_crop.json new file mode 100644 index 000000000..b2b19c1e5 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/strawberry_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:strawberry_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:strawberry" + }, + { + "type": "minecraft:item", + "name": "croptopia:strawberry_seed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.5714286 + } + } + ], + "name": "croptopia:strawberry_seed" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:strawberry_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/stripped_cinnamon_log.json b/src/main/resources/data/croptopia/loot_tables/blocks/stripped_cinnamon_log.json new file mode 100644 index 000000000..3c5212007 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/stripped_cinnamon_log.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "croptopia:stripped_cinnamon_log" + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/stripped_cinnamon_wood.json b/src/main/resources/data/croptopia/loot_tables/blocks/stripped_cinnamon_wood.json new file mode 100644 index 000000000..140d20cb4 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/stripped_cinnamon_wood.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "croptopia:stripped_cinnamon_wood" + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/sweetpotato_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/sweetpotato_crop.json new file mode 100644 index 000000000..20c35d0f8 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/sweetpotato_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:sweetpotato_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:sweetpotato" + }, + { + "type": "minecraft:item", + "name": "croptopia:sweetpotato_seed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.5714286 + } + } + ], + "name": "croptopia:sweetpotato_seed" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:sweetpotato_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/tea_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/tea_crop.json new file mode 100644 index 000000000..9adba327f --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/tea_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:tea_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:tea_leaves" + }, + { + "type": "minecraft:item", + "name": "croptopia:tea_seed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.5714286 + } + } + ], + "name": "croptopia:tea_seed" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:tea_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/tomatillo_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/tomatillo_crop.json new file mode 100644 index 000000000..e71301f62 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/tomatillo_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:tomatillo_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:tomatillo" + }, + { + "type": "minecraft:item", + "name": "croptopia:tomatillo_seed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.5714286 + } + } + ], + "name": "croptopia:tomatillo_seed" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:tomatillo_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/tomato_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/tomato_crop.json new file mode 100644 index 000000000..77b2cfce8 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/tomato_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:tomato_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:tomato" + }, + { + "type": "minecraft:item", + "name": "croptopia:tomato_seed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.5714286 + } + } + ], + "name": "croptopia:tomato_seed" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:tomato_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/turmeric_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/turmeric_crop.json new file mode 100644 index 000000000..028438487 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/turmeric_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:turmeric_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:turmeric" + }, + { + "type": "minecraft:item", + "name": "croptopia:turmeric_seed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.5714286 + } + } + ], + "name": "croptopia:turmeric_seed" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:turmeric_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/turnip_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/turnip_crop.json new file mode 100644 index 000000000..b8426f194 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/turnip_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:turnip_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:turnip" + }, + { + "type": "minecraft:item", + "name": "croptopia:turnip_seed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.5714286 + } + } + ], + "name": "croptopia:turnip_seed" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:turnip_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/vanilla_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/vanilla_crop.json new file mode 100644 index 000000000..58b43bb11 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/vanilla_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:vanilla_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:vanilla" + }, + { + "type": "minecraft:item", + "name": "croptopia:vanilla_seeds" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.5714286 + } + } + ], + "name": "croptopia:vanilla_seeds" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:vanilla_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/walnut_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/walnut_crop.json new file mode 100644 index 000000000..b0acc8449 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/walnut_crop.json @@ -0,0 +1,29 @@ + +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "name": "croptopia:walnut" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:walnut_crop", + "properties": { + "age": "3" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/walnut_sapling.json b/src/main/resources/data/croptopia/loot_tables/blocks/walnut_sapling.json new file mode 100644 index 000000000..3d8a4bf98 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/walnut_sapling.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "croptopia:walnut_sapling" + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/yam_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/yam_crop.json new file mode 100644 index 000000000..5af2a8ed9 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/yam_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:yam_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:yam" + }, + { + "type": "minecraft:item", + "name": "croptopia:yam_seed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.5714286 + } + } + ], + "name": "croptopia:yam_seed" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:yam_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/blocks/zucchini_crop.json b/src/main/resources/data/croptopia/loot_tables/blocks/zucchini_crop.json new file mode 100644 index 000000000..79192d306 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/blocks/zucchini_crop.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:zucchini_crop", + "properties": { + "age": "7" + } + } + ], + "name": "croptopia:zucchini" + }, + { + "type": "minecraft:item", + "name": "croptopia:zucchini_seed" + } + ] + } + ] + }, + { + "rolls": 1.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "parameters": { + "extra": 1, + "probability": 0.5714286 + } + } + ], + "name": "croptopia:zucchini_seed" + } + ], + "conditions": [ + { + "condition": "minecraft:block_state_property", + "block": "croptopia:zucchini_crop", + "properties": { + "age": "7" + } + } + ] + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/croptopia/loot_tables/gameplay/fishing/fish.json b/src/main/resources/data/croptopia/loot_tables/gameplay/fishing/fish.json new file mode 100644 index 000000000..340c6a5a2 --- /dev/null +++ b/src/main/resources/data/croptopia/loot_tables/gameplay/fishing/fish.json @@ -0,0 +1,45 @@ +{ + "type": "minecraft:fishing", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "weight": 15, + "name": "croptopia:tuna" + }, + { + "type": "minecraft:item", + "weight": 15, + "name": "croptopia:anchovy" + }, + { + "type": "minecraft:item", + "weight": 15, + "name": "croptopia:shrimp" + }, + { + "type": "minecraft:item", + "weight": 15, + "name": "croptopia:crab" + }, + { + "type": "minecraft:item", + "weight": 10, + "name": "croptopia:clam" + }, + { + "type": "minecraft:item", + "weight": 10, + "name": "croptopia:oyster" + }, + { + "type": "minecraft:item", + "weight": 10, + "name": "croptopia:sea_lettuce" + } + ] + } + ] +} diff --git a/src/main/resources/data/croptopia/recipe/almond_brittle.json b/src/main/resources/data/croptopia/recipe/almond_brittle.json index 0c30d6ea7..eb3978af7 100644 --- a/src/main/resources/data/croptopia/recipe/almond_brittle.json +++ b/src/main/resources/data/croptopia/recipe/almond_brittle.json @@ -1,18 +1,10 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "tag": "${dependent}:butters" - }, - { - "tag": "${dependent}:almonds" - }, - { - "item": "minecraft:sugar" - }, - { - "item": "minecraft:sugar" - } + "#${dependent}:butters", + "#${dependent}:almonds", + "minecraft:sugar", + "minecraft:sugar" ], "result": { "id": "croptopia:almond_brittle", diff --git a/src/main/resources/data/croptopia/recipe/artichoke_dip.json b/src/main/resources/data/croptopia/recipe/artichoke_dip.json index 725bfb594..8373ec0c9 100644 --- a/src/main/resources/data/croptopia/recipe/artichoke_dip.json +++ b/src/main/resources/data/croptopia/recipe/artichoke_dip.json @@ -1,12 +1,8 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "tag": "${dependent}:artichokes" - }, - { - "tag": "${dependent}:cheeses" - } + "#${dependent}:artichokes", + "#${dependent}:cheeses" ], "result": { "id": "croptopia:artichoke_dip", diff --git a/src/main/resources/data/croptopia/recipe/banana_cream_pie.json b/src/main/resources/data/croptopia/recipe/banana_cream_pie.json index 433098c75..f739ee591 100644 --- a/src/main/resources/data/croptopia/recipe/banana_cream_pie.json +++ b/src/main/resources/data/croptopia/recipe/banana_cream_pie.json @@ -1,24 +1,12 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "tag": "${dependent}:bananas" - }, - { - "tag": "${dependent}:vanilla" - }, - { - "item": "minecraft:sugar" - }, - { - "item": "minecraft:egg" - }, - { - "tag": "${dependent}:milks" - }, - { - "item": "croptopia:frying_pan" - } + "#${dependent}:bananas", + "#${dependent}:vanilla", + "minecraft:sugar", + "minecraft:egg", + "#${dependent}:milks", + "croptopia:frying_pan" ], "result": { "id": "croptopia:banana_cream_pie", diff --git a/src/main/resources/data/croptopia/recipe/banana_nut_bread.json b/src/main/resources/data/croptopia/recipe/banana_nut_bread.json index caa5824ee..87a2e6120 100644 --- a/src/main/resources/data/croptopia/recipe/banana_nut_bread.json +++ b/src/main/resources/data/croptopia/recipe/banana_nut_bread.json @@ -1,21 +1,11 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "item": "croptopia:cinnamon" - }, - { - "item": "minecraft:sugar" - }, - { - "tag": "${dependent}:flour" - }, - { - "tag": "${dependent}:bananas" - }, - { - "tag": "${dependent}:nuts" - } + "croptopia:cinnamon", + "minecraft:sugar", + "#${dependent}:flour", + "#${dependent}:bananas", + "#${dependent}:nuts" ], "result": { "id": "croptopia:banana_nut_bread", diff --git a/src/main/resources/data/croptopia/recipe/beer.json b/src/main/resources/data/croptopia/recipe/beer.json index 23d6d8132..effaea3be 100644 --- a/src/main/resources/data/croptopia/recipe/beer.json +++ b/src/main/resources/data/croptopia/recipe/beer.json @@ -1,18 +1,10 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "item": "minecraft:glass_bottle" - }, - { - "tag": "${dependent}:hops" - }, - { - "tag": "${dependent}:barley" - }, - { - "item": "croptopia:food_press" - } + "minecraft:glass_bottle", + "#${dependent}:hops", + "#${dependent}:barley", + "croptopia:food_press" ], "result": { "id": "croptopia:beer", diff --git a/src/main/resources/data/croptopia/recipe/blasting_salt.json b/src/main/resources/data/croptopia/recipe/blasting_salt.json index 299010a83..c385cfca9 100644 --- a/src/main/resources/data/croptopia/recipe/blasting_salt.json +++ b/src/main/resources/data/croptopia/recipe/blasting_salt.json @@ -1,8 +1,6 @@ { "type": "minecraft:blasting", - "ingredient": { - "item": "croptopia:water_bottle" - }, + "ingredient": "croptopia:water_bottle", "result": { "id": "croptopia:salt" }, diff --git a/src/main/resources/data/croptopia/recipe/blt.json b/src/main/resources/data/croptopia/recipe/blt.json index 1a4ff474c..79ac8bd47 100644 --- a/src/main/resources/data/croptopia/recipe/blt.json +++ b/src/main/resources/data/croptopia/recipe/blt.json @@ -1,18 +1,10 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "item": "minecraft:bread" - }, - { - "item": "croptopia:cooked_bacon" - }, - { - "tag": "${dependent}:lettuce" - }, - { - "tag": "${dependent}:tomatoes" - } + "minecraft:bread", + "croptopia:cooked_bacon", + "#${dependent}:lettuce", + "#${dependent}:tomatoes" ], "result": { "id": "croptopia:blt", diff --git a/src/main/resources/data/croptopia/recipe/brownies.json b/src/main/resources/data/croptopia/recipe/brownies.json index 9dcb25a62..ae98bbefd 100644 --- a/src/main/resources/data/croptopia/recipe/brownies.json +++ b/src/main/resources/data/croptopia/recipe/brownies.json @@ -1,24 +1,12 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "item": "minecraft:sugar" - }, - { - "tag": "${dependent}:flour" - }, - { - "tag": "${dependent}:milks" - }, - { - "item": "minecraft:egg" - }, - { - "tag": "${dependent}:chocolates" - }, - { - "item": "croptopia:frying_pan" - } + "minecraft:sugar", + "#${dependent}:flour", + "#${dependent}:milks", + "minecraft:egg", + "#${dependent}:chocolates", + "croptopia:frying_pan" ], "result": { "id": "croptopia:brownies", diff --git a/src/main/resources/data/croptopia/recipe/burrito.json b/src/main/resources/data/croptopia/recipe/burrito.json index 443080daa..3d2cf4055 100644 --- a/src/main/resources/data/croptopia/recipe/burrito.json +++ b/src/main/resources/data/croptopia/recipe/burrito.json @@ -1,18 +1,10 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "tag": "${dependent}:blackbeans" - }, - { - "tag": "${dependent}:rice" - }, - { - "tag": "${dependent}:tomatoes" - }, - { - "tag": "${dependent}:tortillas" - } + "#${dependent}:blackbeans", + "#${dependent}:rice", + "#${dependent}:tomatoes", + "#${dependent}:tortillas" ], "result": { "id": "croptopia:burrito", diff --git a/src/main/resources/data/croptopia/recipe/butter.json b/src/main/resources/data/croptopia/recipe/butter.json index 504ba888a..0ef2881cb 100644 --- a/src/main/resources/data/croptopia/recipe/butter.json +++ b/src/main/resources/data/croptopia/recipe/butter.json @@ -1,18 +1,10 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "item": "croptopia:cooking_pot" - }, - { - "item": "croptopia:food_press" - }, - { - "tag": "${dependent}:milks" - }, - { - "tag": "${dependent}:salts" - } + "croptopia:cooking_pot", + "croptopia:food_press", + "#${dependent}:milks", + "#${dependent}:salts" ], "result": { "id": "croptopia:butter", diff --git a/src/main/resources/data/croptopia/recipe/buttered_toast.json b/src/main/resources/data/croptopia/recipe/buttered_toast.json index 44c2de141..c57d8195b 100644 --- a/src/main/resources/data/croptopia/recipe/buttered_toast.json +++ b/src/main/resources/data/croptopia/recipe/buttered_toast.json @@ -1,12 +1,8 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "tag": "${dependent}:toasts" - }, - { - "tag": "${dependent}:butters" - } + "#${dependent}:toasts", + "#${dependent}:butters" ], "result": { "id": "croptopia:buttered_toast", diff --git a/src/main/resources/data/croptopia/recipe/caesar_salad.json b/src/main/resources/data/croptopia/recipe/caesar_salad.json index c25491125..f26db4a82 100644 --- a/src/main/resources/data/croptopia/recipe/caesar_salad.json +++ b/src/main/resources/data/croptopia/recipe/caesar_salad.json @@ -1,21 +1,11 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "item": "minecraft:bowl" - }, - { - "tag": "${dependent}:lettuce" - }, - { - "tag": "${dependent}:olives" - }, - { - "tag": "${dependent}:garlic" - }, - { - "tag": "${dependent}:toasts" - } + "minecraft:bowl", + "#${dependent}:lettuce", + "#${dependent}:olives", + "#${dependent}:garlic", + "#${dependent}:toasts" ], "result": { "id": "croptopia:caesar_salad", diff --git a/src/main/resources/data/croptopia/recipe/campfire_baked_beans.json b/src/main/resources/data/croptopia/recipe/campfire_baked_beans.json index c9f100964..852cb1416 100644 --- a/src/main/resources/data/croptopia/recipe/campfire_baked_beans.json +++ b/src/main/resources/data/croptopia/recipe/campfire_baked_beans.json @@ -1,8 +1,6 @@ { "type": "minecraft:campfire_cooking", - "ingredient": { - "tag": "${dependent}:blackbeans" - }, + "ingredient": "#${dependent}:blackbeans", "result": { "id": "croptopia:baked_beans" }, diff --git a/src/main/resources/data/croptopia/recipe/campfire_baked_sweet_potato.json b/src/main/resources/data/croptopia/recipe/campfire_baked_sweet_potato.json index 19b60fae3..550bf005d 100644 --- a/src/main/resources/data/croptopia/recipe/campfire_baked_sweet_potato.json +++ b/src/main/resources/data/croptopia/recipe/campfire_baked_sweet_potato.json @@ -1,8 +1,6 @@ { "type": "minecraft:campfire_cooking", - "ingredient": { - "tag": "${dependent}:sweetpotatos" - }, + "ingredient": "#${dependent}:sweetpotatos", "result": { "id": "croptopia:baked_sweet_potato" }, diff --git a/src/main/resources/data/croptopia/recipe/campfire_baked_yam.json b/src/main/resources/data/croptopia/recipe/campfire_baked_yam.json index 7f44e6341..2dbadb478 100644 --- a/src/main/resources/data/croptopia/recipe/campfire_baked_yam.json +++ b/src/main/resources/data/croptopia/recipe/campfire_baked_yam.json @@ -1,8 +1,6 @@ { "type": "minecraft:campfire_cooking", - "ingredient": { - "tag": "${dependent}:yams" - }, + "ingredient": "#${dependent}:yams", "result": { "id": "croptopia:baked_yam" }, diff --git a/src/main/resources/data/croptopia/recipe/campfire_caramel.json b/src/main/resources/data/croptopia/recipe/campfire_caramel.json index 34836bb4e..d4d86016b 100644 --- a/src/main/resources/data/croptopia/recipe/campfire_caramel.json +++ b/src/main/resources/data/croptopia/recipe/campfire_caramel.json @@ -1,8 +1,6 @@ { "type": "minecraft:campfire_cooking", - "ingredient": { - "item": "minecraft:sugar" - }, + "ingredient": "minecraft:sugar", "result": { "id": "croptopia:caramel" }, diff --git a/src/main/resources/data/croptopia/recipe/campfire_molasses.json b/src/main/resources/data/croptopia/recipe/campfire_molasses.json index 3e0d90104..9df56d23b 100644 --- a/src/main/resources/data/croptopia/recipe/campfire_molasses.json +++ b/src/main/resources/data/croptopia/recipe/campfire_molasses.json @@ -1,8 +1,6 @@ { "type": "minecraft:campfire_cooking", - "ingredient": { - "item": "minecraft:sugar_cane" - }, + "ingredient": "minecraft:sugar_cane", "result": { "id": "croptopia:molasses" }, diff --git a/src/main/resources/data/croptopia/recipe/campfire_popcorn.json b/src/main/resources/data/croptopia/recipe/campfire_popcorn.json index c5ec32b4e..07b6d8e6f 100644 --- a/src/main/resources/data/croptopia/recipe/campfire_popcorn.json +++ b/src/main/resources/data/croptopia/recipe/campfire_popcorn.json @@ -1,8 +1,6 @@ { "type": "minecraft:campfire_cooking", - "ingredient": { - "tag": "${dependent}:corn" - }, + "ingredient": "#${dependent}:corn", "result": { "id": "croptopia:popcorn" }, diff --git a/src/main/resources/data/croptopia/recipe/campfire_raisins.json b/src/main/resources/data/croptopia/recipe/campfire_raisins.json index b0b56c52b..cd8026901 100644 --- a/src/main/resources/data/croptopia/recipe/campfire_raisins.json +++ b/src/main/resources/data/croptopia/recipe/campfire_raisins.json @@ -1,8 +1,6 @@ { "type": "minecraft:campfire_cooking", - "ingredient": { - "tag": "${dependent}:grapes" - }, + "ingredient": "#${dependent}:grapes", "result": { "id": "croptopia:raisins" }, diff --git a/src/main/resources/data/croptopia/recipe/campfire_toast.json b/src/main/resources/data/croptopia/recipe/campfire_toast.json index 5d66f959c..6eaa832f6 100644 --- a/src/main/resources/data/croptopia/recipe/campfire_toast.json +++ b/src/main/resources/data/croptopia/recipe/campfire_toast.json @@ -1,8 +1,6 @@ { "type": "minecraft:campfire_cooking", - "ingredient": { - "item": "minecraft:bread" - }, + "ingredient": "minecraft:bread", "result": { "id": "croptopia:toast" }, diff --git a/src/main/resources/data/croptopia/recipe/candied_nuts.json b/src/main/resources/data/croptopia/recipe/candied_nuts.json index a0241e49e..0dbbd74cd 100644 --- a/src/main/resources/data/croptopia/recipe/candied_nuts.json +++ b/src/main/resources/data/croptopia/recipe/candied_nuts.json @@ -1,18 +1,10 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "tag": "${dependent}:nuts" - }, - { - "tag": "${dependent}:nuts" - }, - { - "item": "minecraft:sugar" - }, - { - "item": "minecraft:sugar" - } + "#${dependent}:nuts", + "#${dependent}:nuts", + "minecraft:sugar", + "minecraft:sugar" ], "result": { "id": "croptopia:candied_nuts", diff --git a/src/main/resources/data/croptopia/recipe/candy_corn.json b/src/main/resources/data/croptopia/recipe/candy_corn.json index 5cd36f67f..0acf7e2a7 100644 --- a/src/main/resources/data/croptopia/recipe/candy_corn.json +++ b/src/main/resources/data/croptopia/recipe/candy_corn.json @@ -1,15 +1,9 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "item": "minecraft:sugar" - }, - { - "tag": "${dependent}:corn" - }, - { - "item": "minecraft:sugar" - } + "minecraft:sugar", + "#${dependent}:corn", + "minecraft:sugar" ], "result": { "id": "croptopia:candy_corn", diff --git a/src/main/resources/data/croptopia/recipe/carnitas.json b/src/main/resources/data/croptopia/recipe/carnitas.json index f78d234e2..c24a9a2fb 100644 --- a/src/main/resources/data/croptopia/recipe/carnitas.json +++ b/src/main/resources/data/croptopia/recipe/carnitas.json @@ -1,21 +1,11 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "item": "minecraft:porkchop" - }, - { - "tag": "${dependent}:tortillas" - }, - { - "tag": "${dependent}:cabbage" - }, - { - "tag": "${dependent}:onions" - }, - { - "item": "croptopia:frying_pan" - } + "minecraft:porkchop", + "#${dependent}:tortillas", + "#${dependent}:cabbage", + "#${dependent}:onions", + "croptopia:frying_pan" ], "result": { "id": "croptopia:carnitas", diff --git a/src/main/resources/data/croptopia/recipe/cashew_chicken.json b/src/main/resources/data/croptopia/recipe/cashew_chicken.json index 4b3f4b9b2..236e09b10 100644 --- a/src/main/resources/data/croptopia/recipe/cashew_chicken.json +++ b/src/main/resources/data/croptopia/recipe/cashew_chicken.json @@ -1,21 +1,11 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "tag": "${dependent}:cashews" - }, - { - "item": "minecraft:cooked_chicken" - }, - { - "tag": "${dependent}:soy_sauces" - }, - { - "tag": "${dependent}:cabbage" - }, - { - "item": "minecraft:carrot" - } + "#${dependent}:cashews", + "minecraft:cooked_chicken", + "#${dependent}:soy_sauces", + "#${dependent}:cabbage", + "minecraft:carrot" ], "result": { "id": "croptopia:cashew_chicken", diff --git a/src/main/resources/data/croptopia/recipe/cheese.json b/src/main/resources/data/croptopia/recipe/cheese.json index a5e7bfaa5..c738db86d 100644 --- a/src/main/resources/data/croptopia/recipe/cheese.json +++ b/src/main/resources/data/croptopia/recipe/cheese.json @@ -1,15 +1,9 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "item": "croptopia:cooking_pot" - }, - { - "tag": "${dependent}:milks" - }, - { - "tag": "${dependent}:salts" - } + "croptopia:cooking_pot", + "#${dependent}:milks", + "#${dependent}:salts" ], "result": { "id": "croptopia:cheese", diff --git a/src/main/resources/data/croptopia/recipe/cheese_pizza.json b/src/main/resources/data/croptopia/recipe/cheese_pizza.json index b65587f18..80e8d872b 100644 --- a/src/main/resources/data/croptopia/recipe/cheese_pizza.json +++ b/src/main/resources/data/croptopia/recipe/cheese_pizza.json @@ -1,21 +1,11 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "tag": "${dependent}:doughs" - }, - { - "tag": "${dependent}:cheeses" - }, - { - "tag": "${dependent}:tomatoes" - }, - { - "tag": "${dependent}:cheeses" - }, - { - "item": "croptopia:frying_pan" - } + "#${dependent}:doughs", + "#${dependent}:cheeses", + "#${dependent}:tomatoes", + "#${dependent}:cheeses", + "croptopia:frying_pan" ], "result": { "id": "croptopia:cheese_pizza", diff --git a/src/main/resources/data/croptopia/recipe/cheeseburger.json b/src/main/resources/data/croptopia/recipe/cheeseburger.json index 43b6985f8..6b7c2f3ef 100644 --- a/src/main/resources/data/croptopia/recipe/cheeseburger.json +++ b/src/main/resources/data/croptopia/recipe/cheeseburger.json @@ -1,18 +1,10 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "item": "minecraft:bread" - }, - { - "tag": "${dependent}:cheeses" - }, - { - "item": "croptopia:frying_pan" - }, - { - "tag": "croptopia:beef_replacements" - } + "minecraft:bread", + "#${dependent}:cheeses", + "croptopia:frying_pan", + "#croptopia:beef_replacements" ], "result": { "id": "croptopia:cheeseburger", diff --git a/src/main/resources/data/croptopia/recipe/chicken_and_dumplings.json b/src/main/resources/data/croptopia/recipe/chicken_and_dumplings.json index 16319c42c..55162c15f 100644 --- a/src/main/resources/data/croptopia/recipe/chicken_and_dumplings.json +++ b/src/main/resources/data/croptopia/recipe/chicken_and_dumplings.json @@ -1,18 +1,10 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "tag": "${dependent}:doughs" - }, - { - "tag": "${dependent}:chile_peppers" - }, - { - "item": "minecraft:chicken" - }, - { - "item": "croptopia:cooking_pot" - } + "#${dependent}:doughs", + "#${dependent}:chile_peppers", + "minecraft:chicken", + "croptopia:cooking_pot" ], "result": { "id": "croptopia:chicken_and_dumplings", diff --git a/src/main/resources/data/croptopia/recipe/chicken_and_noodles.json b/src/main/resources/data/croptopia/recipe/chicken_and_noodles.json index 3e68a139a..242401310 100644 --- a/src/main/resources/data/croptopia/recipe/chicken_and_noodles.json +++ b/src/main/resources/data/croptopia/recipe/chicken_and_noodles.json @@ -1,21 +1,11 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "tag": "${dependent}:noodles" - }, - { - "tag": "${dependent}:chile_peppers" - }, - { - "tag": "${dependent}:olive_oils" - }, - { - "tag": "croptopia:chicken_replacements" - }, - { - "item": "croptopia:cooking_pot" - } + "#${dependent}:noodles", + "#${dependent}:chile_peppers", + "#${dependent}:olive_oils", + "#croptopia:chicken_replacements", + "croptopia:cooking_pot" ], "result": { "id": "croptopia:chicken_and_noodles", diff --git a/src/main/resources/data/croptopia/recipe/chicken_and_rice.json b/src/main/resources/data/croptopia/recipe/chicken_and_rice.json index ba46f100d..76ed9cac6 100644 --- a/src/main/resources/data/croptopia/recipe/chicken_and_rice.json +++ b/src/main/resources/data/croptopia/recipe/chicken_and_rice.json @@ -1,18 +1,10 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "tag": "${dependent}:rice" - }, - { - "tag": "${dependent}:chile_peppers" - }, - { - "tag": "${dependent}:olive_oils" - }, - { - "tag": "croptopia:chicken_replacements" - } + "#${dependent}:rice", + "#${dependent}:chile_peppers", + "#${dependent}:olive_oils", + "#croptopia:chicken_replacements" ], "result": { "id": "croptopia:chicken_and_rice", diff --git a/src/main/resources/data/croptopia/recipe/chili_relleno.json b/src/main/resources/data/croptopia/recipe/chili_relleno.json index 265172c70..45ae9ad6b 100644 --- a/src/main/resources/data/croptopia/recipe/chili_relleno.json +++ b/src/main/resources/data/croptopia/recipe/chili_relleno.json @@ -1,24 +1,12 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "item": "minecraft:egg" - }, - { - "tag": "${dependent}:chile_peppers" - }, - { - "tag": "${dependent}:olive_oils" - }, - { - "tag": "${dependent}:flour" - }, - { - "tag": "${dependent}:salts" - }, - { - "item": "croptopia:cooking_pot" - } + "minecraft:egg", + "#${dependent}:chile_peppers", + "#${dependent}:olive_oils", + "#${dependent}:flour", + "#${dependent}:salts", + "croptopia:cooking_pot" ], "result": { "id": "croptopia:chili_relleno", diff --git a/src/main/resources/data/croptopia/recipe/chimichanga.json b/src/main/resources/data/croptopia/recipe/chimichanga.json index 65617df5d..1255bcac3 100644 --- a/src/main/resources/data/croptopia/recipe/chimichanga.json +++ b/src/main/resources/data/croptopia/recipe/chimichanga.json @@ -1,15 +1,9 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "item": "croptopia:burrito" - }, - { - "tag": "${dependent}:flour" - }, - { - "item": "croptopia:cooking_pot" - } + "croptopia:burrito", + "#${dependent}:flour", + "croptopia:cooking_pot" ], "result": { "id": "croptopia:chimichanga", diff --git a/src/main/resources/data/croptopia/recipe/chocolate.json b/src/main/resources/data/croptopia/recipe/chocolate.json index 81e71cb23..9f6bf9a38 100644 --- a/src/main/resources/data/croptopia/recipe/chocolate.json +++ b/src/main/resources/data/croptopia/recipe/chocolate.json @@ -1,15 +1,9 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "item": "minecraft:cocoa_beans" - }, - { - "tag": "${dependent}:butters" - }, - { - "item": "croptopia:cooking_pot" - } + "minecraft:cocoa_beans", + "#${dependent}:butters", + "croptopia:cooking_pot" ], "result": { "id": "croptopia:chocolate", diff --git a/src/main/resources/data/croptopia/recipe/chocolate_milkshake.json b/src/main/resources/data/croptopia/recipe/chocolate_milkshake.json index f975adf0f..d4fe2376c 100644 --- a/src/main/resources/data/croptopia/recipe/chocolate_milkshake.json +++ b/src/main/resources/data/croptopia/recipe/chocolate_milkshake.json @@ -1,18 +1,10 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "item": "minecraft:glass_bottle" - }, - { - "tag": "${dependent}:chocolates" - }, - { - "tag": "${dependent}:milks" - }, - { - "item": "croptopia:vanilla_ice_cream" - } + "minecraft:glass_bottle", + "#${dependent}:chocolates", + "#${dependent}:milks", + "croptopia:vanilla_ice_cream" ], "result": { "id": "croptopia:chocolate_milkshake", diff --git a/src/main/resources/data/croptopia/recipe/churros.json b/src/main/resources/data/croptopia/recipe/churros.json index d3c2251b4..29fc0dc96 100644 --- a/src/main/resources/data/croptopia/recipe/churros.json +++ b/src/main/resources/data/croptopia/recipe/churros.json @@ -1,18 +1,10 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "tag": "${dependent}:milks" - }, - { - "item": "minecraft:sugar" - }, - { - "tag": "${dependent}:flour" - }, - { - "item": "croptopia:cinnamon" - } + "#${dependent}:milks", + "minecraft:sugar", + "#${dependent}:flour", + "croptopia:cinnamon" ], "result": { "id": "croptopia:churros", diff --git a/src/main/resources/data/croptopia/recipe/coffee.json b/src/main/resources/data/croptopia/recipe/coffee.json index 29926cbf2..1e57a93ce 100644 --- a/src/main/resources/data/croptopia/recipe/coffee.json +++ b/src/main/resources/data/croptopia/recipe/coffee.json @@ -1,15 +1,9 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "item": "minecraft:glass_bottle" - }, - { - "tag": "${dependent}:coffee_beans" - }, - { - "item": "croptopia:food_press" - } + "minecraft:glass_bottle", + "#${dependent}:coffee_beans", + "croptopia:food_press" ], "result": { "id": "croptopia:coffee", diff --git a/src/main/resources/data/croptopia/recipe/corn_husk.json b/src/main/resources/data/croptopia/recipe/corn_husk.json index acd0211e2..ef9d98af7 100644 --- a/src/main/resources/data/croptopia/recipe/corn_husk.json +++ b/src/main/resources/data/croptopia/recipe/corn_husk.json @@ -1,18 +1,10 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "tag": "${dependent}:corn" - }, - { - "tag": "${dependent}:corn" - }, - { - "tag": "${dependent}:corn" - }, - { - "tag": "${dependent}:corn" - } + "#${dependent}:corn", + "#${dependent}:corn", + "#${dependent}:corn", + "#${dependent}:corn" ], "result": { "id": "croptopia:corn_husk", diff --git a/src/main/resources/data/croptopia/recipe/crema.json b/src/main/resources/data/croptopia/recipe/crema.json index d5adeff9c..0bc1a8e90 100644 --- a/src/main/resources/data/croptopia/recipe/crema.json +++ b/src/main/resources/data/croptopia/recipe/crema.json @@ -1,15 +1,9 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "tag": "${dependent}:milks" - }, - { - "tag": "${dependent}:limes" - }, - { - "tag": "${dependent}:salts" - } + "#${dependent}:milks", + "#${dependent}:limes", + "#${dependent}:salts" ], "result": { "id": "croptopia:crema", diff --git a/src/main/resources/data/croptopia/recipe/cucumber_salad.json b/src/main/resources/data/croptopia/recipe/cucumber_salad.json index 4bb9669f3..2f510df36 100644 --- a/src/main/resources/data/croptopia/recipe/cucumber_salad.json +++ b/src/main/resources/data/croptopia/recipe/cucumber_salad.json @@ -1,18 +1,10 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "item": "minecraft:bowl" - }, - { - "tag": "${dependent}:cucumbers" - }, - { - "tag": "${dependent}:lettuce" - }, - { - "tag": "${dependent}:spinach" - } + "minecraft:bowl", + "#${dependent}:cucumbers", + "#${dependent}:lettuce", + "#${dependent}:spinach" ], "result": { "id": "croptopia:cucumber_salad", diff --git a/src/main/resources/data/croptopia/recipe/documentation.json b/src/main/resources/data/croptopia/recipe/documentation.json index 260bc8cd2..437ba41c1 100644 --- a/src/main/resources/data/croptopia/recipe/documentation.json +++ b/src/main/resources/data/croptopia/recipe/documentation.json @@ -1,18 +1,10 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "tag": "${dependent}:crops" - }, - { - "tag": "${dependent}:crops" - }, - { - "tag": "${dependent}:crops" - }, - { - "item": "minecraft:book" - } + "#${dependent}:crops", + "#${dependent}:crops", + "#${dependent}:crops", + "minecraft:book" ], "result": { "id": "croptopia:guide", diff --git a/src/main/resources/data/croptopia/recipe/dough.json b/src/main/resources/data/croptopia/recipe/dough.json index a21fe2aae..f736629c0 100644 --- a/src/main/resources/data/croptopia/recipe/dough.json +++ b/src/main/resources/data/croptopia/recipe/dough.json @@ -1,15 +1,9 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "item": "croptopia:cooking_pot" - }, - { - "tag": "${dependent}:water_bottles" - }, - { - "tag": "${dependent}:flour" - } + "croptopia:cooking_pot", + "#${dependent}:water_bottles", + "#${dependent}:flour" ], "result": { "id": "croptopia:dough", diff --git a/src/main/resources/data/croptopia/recipe/doughnut.json b/src/main/resources/data/croptopia/recipe/doughnut.json index 77fbe4896..22226e4c7 100644 --- a/src/main/resources/data/croptopia/recipe/doughnut.json +++ b/src/main/resources/data/croptopia/recipe/doughnut.json @@ -1,18 +1,10 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "tag": "${dependent}:flour" - }, - { - "tag": "${dependent}:milks" - }, - { - "item": "minecraft:sugar" - }, - { - "tag": "${dependent}:flour" - } + "#${dependent}:flour", + "#${dependent}:milks", + "minecraft:sugar", + "#${dependent}:flour" ], "result": { "id": "croptopia:doughnut", diff --git a/src/main/resources/data/croptopia/recipe/egg_roll.json b/src/main/resources/data/croptopia/recipe/egg_roll.json index a7444e39b..b96d5aa14 100644 --- a/src/main/resources/data/croptopia/recipe/egg_roll.json +++ b/src/main/resources/data/croptopia/recipe/egg_roll.json @@ -1,18 +1,10 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "tag": "${dependent}:doughs" - }, - { - "tag": "${dependent}:lettuce" - }, - { - "item": "minecraft:egg" - }, - { - "tag": "croptopia:meat_replacements" - } + "#${dependent}:doughs", + "#${dependent}:lettuce", + "minecraft:egg", + "#croptopia:meat_replacements" ], "result": { "id": "croptopia:egg_roll", diff --git a/src/main/resources/data/croptopia/recipe/enchilada.json b/src/main/resources/data/croptopia/recipe/enchilada.json index 6980b2b80..327436c50 100644 --- a/src/main/resources/data/croptopia/recipe/enchilada.json +++ b/src/main/resources/data/croptopia/recipe/enchilada.json @@ -1,18 +1,10 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "tag": "croptopia:meat_replacements" - }, - { - "tag": "${dependent}:tomatoes" - }, - { - "tag": "${dependent}:cheeses" - }, - { - "tag": "${dependent}:tortillas" - } + "#croptopia:meat_replacements", + "#${dependent}:tomatoes", + "#${dependent}:cheeses", + "#${dependent}:tortillas" ], "result": { "id": "croptopia:enchilada", diff --git a/src/main/resources/data/croptopia/recipe/fajitas.json b/src/main/resources/data/croptopia/recipe/fajitas.json index 9e1245229..4dd1db0fc 100644 --- a/src/main/resources/data/croptopia/recipe/fajitas.json +++ b/src/main/resources/data/croptopia/recipe/fajitas.json @@ -1,24 +1,12 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "tag": "croptopia:meat_replacements" - }, - { - "tag": "${dependent}:bellpeppers" - }, - { - "tag": "${dependent}:onions" - }, - { - "tag": "${dependent}:tomatoes" - }, - { - "tag": "${dependent}:cheeses" - }, - { - "item": "croptopia:frying_pan" - } + "#croptopia:meat_replacements", + "#${dependent}:bellpeppers", + "#${dependent}:onions", + "#${dependent}:tomatoes", + "#${dependent}:cheeses", + "croptopia:frying_pan" ], "result": { "id": "croptopia:fajitas", diff --git a/src/main/resources/data/croptopia/recipe/flour.json b/src/main/resources/data/croptopia/recipe/flour.json index f19d4b5bd..94c6e219f 100644 --- a/src/main/resources/data/croptopia/recipe/flour.json +++ b/src/main/resources/data/croptopia/recipe/flour.json @@ -1,12 +1,8 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "tag": "croptopia:flourable" - }, - { - "tag": "croptopia:flourable" - } + "#croptopia:flourable", + "#croptopia:flourable" ], "result": { "id": "croptopia:flour", diff --git a/src/main/resources/data/croptopia/recipe/french_fries.json b/src/main/resources/data/croptopia/recipe/french_fries.json index 0cae02fc6..49a7c80b8 100644 --- a/src/main/resources/data/croptopia/recipe/french_fries.json +++ b/src/main/resources/data/croptopia/recipe/french_fries.json @@ -1,18 +1,10 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "item": "minecraft:potato" - }, - { - "item": "croptopia:cooking_pot" - }, - { - "tag": "${dependent}:salts" - }, - { - "tag": "${dependent}:olive_oils" - } + "minecraft:potato", + "croptopia:cooking_pot", + "#${dependent}:salts", + "#${dependent}:olive_oils" ], "result": { "id": "croptopia:french_fries", diff --git a/src/main/resources/data/croptopia/recipe/fried_chicken.json b/src/main/resources/data/croptopia/recipe/fried_chicken.json index d786c69ec..8cb0e2615 100644 --- a/src/main/resources/data/croptopia/recipe/fried_chicken.json +++ b/src/main/resources/data/croptopia/recipe/fried_chicken.json @@ -1,21 +1,11 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "tag": "${dependent}:flour" - }, - { - "tag": "${dependent}:chile_peppers" - }, - { - "tag": "${dependent}:olive_oils" - }, - { - "tag": "croptopia:chicken_replacements" - }, - { - "item": "croptopia:frying_pan" - } + "#${dependent}:flour", + "#${dependent}:chile_peppers", + "#${dependent}:olive_oils", + "#croptopia:chicken_replacements", + "croptopia:frying_pan" ], "result": { "id": "croptopia:fried_chicken", diff --git a/src/main/resources/data/croptopia/recipe/fruit_salad.json b/src/main/resources/data/croptopia/recipe/fruit_salad.json index 6d45ef87e..695e548b7 100644 --- a/src/main/resources/data/croptopia/recipe/fruit_salad.json +++ b/src/main/resources/data/croptopia/recipe/fruit_salad.json @@ -1,21 +1,11 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "item": "minecraft:bowl" - }, - { - "tag": "${dependent}:strawberries" - }, - { - "tag": "${dependent}:bananas" - }, - { - "tag": "${dependent}:grapes" - }, - { - "item": "minecraft:apple" - } + "minecraft:bowl", + "#${dependent}:strawberries", + "#${dependent}:bananas", + "#${dependent}:grapes", + "minecraft:apple" ], "result": { "id": "croptopia:fruit_salad", diff --git a/src/main/resources/data/croptopia/recipe/fruit_smoothie.json b/src/main/resources/data/croptopia/recipe/fruit_smoothie.json index c025a693b..b9340b734 100644 --- a/src/main/resources/data/croptopia/recipe/fruit_smoothie.json +++ b/src/main/resources/data/croptopia/recipe/fruit_smoothie.json @@ -1,24 +1,12 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "item": "minecraft:glass_bottle" - }, - { - "tag": "${dependent}:fruits" - }, - { - "tag": "${dependent}:fruits" - }, - { - "tag": "${dependent}:fruits" - }, - { - "item": "minecraft:ice" - }, - { - "tag": "${dependent}:milks" - } + "minecraft:glass_bottle", + "#${dependent}:foods/fruits", + "#${dependent}:foods/fruits", + "#${dependent}:foods/fruits", + "minecraft:ice", + "#${dependent}:milks" ], "result": { "id": "croptopia:fruit_smoothie", diff --git a/src/main/resources/data/croptopia/recipe/grilled_cheese.json b/src/main/resources/data/croptopia/recipe/grilled_cheese.json index d1b03d38b..ed439d39e 100644 --- a/src/main/resources/data/croptopia/recipe/grilled_cheese.json +++ b/src/main/resources/data/croptopia/recipe/grilled_cheese.json @@ -1,15 +1,9 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "item": "minecraft:bread" - }, - { - "tag": "${dependent}:cheeses" - }, - { - "item": "croptopia:frying_pan" - } + "minecraft:bread", + "#${dependent}:cheeses", + "croptopia:frying_pan" ], "result": { "id": "croptopia:grilled_cheese", diff --git a/src/main/resources/data/croptopia/recipe/ham_sandwich.json b/src/main/resources/data/croptopia/recipe/ham_sandwich.json index 938aa3eeb..055f86c2c 100644 --- a/src/main/resources/data/croptopia/recipe/ham_sandwich.json +++ b/src/main/resources/data/croptopia/recipe/ham_sandwich.json @@ -1,15 +1,9 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "item": "minecraft:bread" - }, - { - "item": "minecraft:cooked_porkchop" - }, - { - "tag": "${dependent}:cheeses" - } + "minecraft:bread", + "minecraft:cooked_porkchop", + "#${dependent}:cheeses" ], "result": { "id": "croptopia:ham_sandwich", diff --git a/src/main/resources/data/croptopia/recipe/hamburger.json b/src/main/resources/data/croptopia/recipe/hamburger.json index 218a5cee9..935f99483 100644 --- a/src/main/resources/data/croptopia/recipe/hamburger.json +++ b/src/main/resources/data/croptopia/recipe/hamburger.json @@ -1,15 +1,9 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "item": "minecraft:bread" - }, - { - "item": "croptopia:frying_pan" - }, - { - "item": "minecraft:beef" - } + "minecraft:bread", + "croptopia:frying_pan", + "minecraft:beef" ], "result": { "id": "croptopia:hamburger", diff --git a/src/main/resources/data/croptopia/recipe/horchata.json b/src/main/resources/data/croptopia/recipe/horchata.json index 9b24a8730..9976931b5 100644 --- a/src/main/resources/data/croptopia/recipe/horchata.json +++ b/src/main/resources/data/croptopia/recipe/horchata.json @@ -1,24 +1,12 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "tag": "${dependent}:rice" - }, - { - "tag": "${dependent}:almonds" - }, - { - "tag": "${dependent}:limes" - }, - { - "tag": "${dependent}:water_bottles" - }, - { - "item": "minecraft:sugar" - }, - { - "item": "croptopia:cinnamon" - } + "#${dependent}:rice", + "#${dependent}:almonds", + "#${dependent}:limes", + "#${dependent}:water_bottles", + "minecraft:sugar", + "croptopia:cinnamon" ], "result": { "id": "croptopia:horchata", diff --git a/src/main/resources/data/croptopia/recipe/kale_chips.json b/src/main/resources/data/croptopia/recipe/kale_chips.json index de473a1ed..fffcc5576 100644 --- a/src/main/resources/data/croptopia/recipe/kale_chips.json +++ b/src/main/resources/data/croptopia/recipe/kale_chips.json @@ -1,18 +1,10 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "tag": "${dependent}:kale" - }, - { - "item": "croptopia:frying_pan" - }, - { - "tag": "${dependent}:salts" - }, - { - "tag": "${dependent}:olive_oils" - } + "#${dependent}:kale", + "croptopia:frying_pan", + "#${dependent}:salts", + "#${dependent}:olive_oils" ], "result": { "id": "croptopia:kale_chips", diff --git a/src/main/resources/data/croptopia/recipe/kale_smoothie.json b/src/main/resources/data/croptopia/recipe/kale_smoothie.json index 0c972a303..4e9ac2738 100644 --- a/src/main/resources/data/croptopia/recipe/kale_smoothie.json +++ b/src/main/resources/data/croptopia/recipe/kale_smoothie.json @@ -1,27 +1,13 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "item": "minecraft:glass_bottle" - }, - { - "tag": "${dependent}:kale" - }, - { - "item": "minecraft:ice" - }, - { - "tag": "${dependent}:milks" - }, - { - "tag": "${dependent}:mangos" - }, - { - "tag": "${dependent}:yoghurts" - }, - { - "tag": "${dependent}:tomatoes" - } + "minecraft:glass_bottle", + "#${dependent}:kale", + "minecraft:ice", + "#${dependent}:milks", + "#${dependent}:mangos", + "#${dependent}:yoghurts", + "#${dependent}:tomatoes" ], "result": { "id": "croptopia:kale_smoothie", diff --git a/src/main/resources/data/croptopia/recipe/leafy_salad.json b/src/main/resources/data/croptopia/recipe/leafy_salad.json index eb8545c9f..3bcec25e6 100644 --- a/src/main/resources/data/croptopia/recipe/leafy_salad.json +++ b/src/main/resources/data/croptopia/recipe/leafy_salad.json @@ -1,18 +1,10 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "item": "minecraft:bowl" - }, - { - "tag": "${dependent}:lettuce" - }, - { - "tag": "${dependent}:spinach" - }, - { - "tag": "${dependent}:kale" - } + "minecraft:bowl", + "#${dependent}:lettuce", + "#${dependent}:spinach", + "#${dependent}:kale" ], "result": { "id": "croptopia:leafy_salad", diff --git a/src/main/resources/data/croptopia/recipe/leek_soup.json b/src/main/resources/data/croptopia/recipe/leek_soup.json index ebdbce95c..92b01fb1a 100644 --- a/src/main/resources/data/croptopia/recipe/leek_soup.json +++ b/src/main/resources/data/croptopia/recipe/leek_soup.json @@ -1,18 +1,10 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "item": "minecraft:bowl" - }, - { - "tag": "${dependent}:leek" - }, - { - "item": "minecraft:potato" - }, - { - "tag": "${dependent}:milks" - } + "minecraft:bowl", + "#${dependent}:leek", + "minecraft:potato", + "#${dependent}:milks" ], "result": { "id": "croptopia:leek_soup", diff --git a/src/main/resources/data/croptopia/recipe/lemon_chicken.json b/src/main/resources/data/croptopia/recipe/lemon_chicken.json index 31477cb0a..1c03a5f56 100644 --- a/src/main/resources/data/croptopia/recipe/lemon_chicken.json +++ b/src/main/resources/data/croptopia/recipe/lemon_chicken.json @@ -1,21 +1,11 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "tag": "${dependent}:lemons" - }, - { - "tag": "${dependent}:chile_peppers" - }, - { - "tag": "${dependent}:tomatoes" - }, - { - "tag": "croptopia:chicken_replacements" - }, - { - "item": "croptopia:cooking_pot" - } + "#${dependent}:lemons", + "#${dependent}:chile_peppers", + "#${dependent}:tomatoes", + "#croptopia:chicken_replacements", + "croptopia:cooking_pot" ], "result": { "id": "croptopia:lemon_chicken", diff --git a/src/main/resources/data/croptopia/recipe/lemonade.json b/src/main/resources/data/croptopia/recipe/lemonade.json index 7184e1e08..56aa5fa82 100644 --- a/src/main/resources/data/croptopia/recipe/lemonade.json +++ b/src/main/resources/data/croptopia/recipe/lemonade.json @@ -1,15 +1,9 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "item": "minecraft:glass_bottle" - }, - { - "tag": "${dependent}:lemons" - }, - { - "item": "croptopia:food_press" - } + "minecraft:glass_bottle", + "#${dependent}:lemons", + "croptopia:food_press" ], "result": { "id": "croptopia:lemonade", diff --git a/src/main/resources/data/croptopia/recipe/limeade.json b/src/main/resources/data/croptopia/recipe/limeade.json index 8e457d946..47f62d2b1 100644 --- a/src/main/resources/data/croptopia/recipe/limeade.json +++ b/src/main/resources/data/croptopia/recipe/limeade.json @@ -1,18 +1,10 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "item": "minecraft:glass_bottle" - }, - { - "tag": "${dependent}:limes" - }, - { - "tag": "${dependent}:lemons" - }, - { - "item": "croptopia:food_press" - } + "minecraft:glass_bottle", + "#${dependent}:limes", + "#${dependent}:lemons", + "croptopia:food_press" ], "result": { "id": "croptopia:limeade", diff --git a/src/main/resources/data/croptopia/recipe/mead.json b/src/main/resources/data/croptopia/recipe/mead.json index 0f5844b0d..3232f34f9 100644 --- a/src/main/resources/data/croptopia/recipe/mead.json +++ b/src/main/resources/data/croptopia/recipe/mead.json @@ -1,18 +1,10 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "item": "minecraft:honey_bottle" - }, - { - "tag": "${dependent}:water_bottles" - }, - { - "item": "croptopia:food_press" - }, - { - "item": "minecraft:glass_bottle" - } + "minecraft:honey_bottle", + "#${dependent}:water_bottles", + "croptopia:food_press", + "minecraft:glass_bottle" ], "result": { "id": "croptopia:mead", diff --git a/src/main/resources/data/croptopia/recipe/noodle.json b/src/main/resources/data/croptopia/recipe/noodle.json index 45bf92656..663925be5 100644 --- a/src/main/resources/data/croptopia/recipe/noodle.json +++ b/src/main/resources/data/croptopia/recipe/noodle.json @@ -1,18 +1,10 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "item": "croptopia:cooking_pot" - }, - { - "tag": "${dependent}:water_bottles" - }, - { - "tag": "${dependent}:salts" - }, - { - "tag": "${dependent}:flour" - } + "croptopia:cooking_pot", + "#${dependent}:water_bottles", + "#${dependent}:salts", + "#${dependent}:flour" ], "result": { "id": "croptopia:noodle", diff --git a/src/main/resources/data/croptopia/recipe/nougat.json b/src/main/resources/data/croptopia/recipe/nougat.json index 9f6aacf04..10b512b6b 100644 --- a/src/main/resources/data/croptopia/recipe/nougat.json +++ b/src/main/resources/data/croptopia/recipe/nougat.json @@ -1,24 +1,12 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "tag": "${dependent}:nuts" - }, - { - "tag": "${dependent}:nuts" - }, - { - "item": "minecraft:sugar" - }, - { - "item": "minecraft:sugar" - }, - { - "item": "minecraft:egg" - }, - { - "item": "minecraft:egg" - } + "#${dependent}:nuts", + "#${dependent}:nuts", + "minecraft:sugar", + "minecraft:sugar", + "minecraft:egg", + "minecraft:egg" ], "result": { "id": "croptopia:nougat", diff --git a/src/main/resources/data/croptopia/recipe/nutty_cookie.json b/src/main/resources/data/croptopia/recipe/nutty_cookie.json index 7c3a23c38..4f12eac2e 100644 --- a/src/main/resources/data/croptopia/recipe/nutty_cookie.json +++ b/src/main/resources/data/croptopia/recipe/nutty_cookie.json @@ -1,18 +1,10 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "tag": "${dependent}:nuts" - }, - { - "tag": "${dependent}:nuts" - }, - { - "item": "minecraft:sugar" - }, - { - "tag": "${dependent}:flour" - } + "#${dependent}:nuts", + "#${dependent}:nuts", + "minecraft:sugar", + "#${dependent}:flour" ], "result": { "id": "croptopia:nutty_cookie", diff --git a/src/main/resources/data/croptopia/recipe/oatmeal.json b/src/main/resources/data/croptopia/recipe/oatmeal.json index 7e632d795..db0488515 100644 --- a/src/main/resources/data/croptopia/recipe/oatmeal.json +++ b/src/main/resources/data/croptopia/recipe/oatmeal.json @@ -1,15 +1,9 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "item": "minecraft:bowl" - }, - { - "tag": "${dependent}:oats" - }, - { - "tag": "${dependent}:milks" - } + "minecraft:bowl", + "#${dependent}:oats", + "#${dependent}:milks" ], "result": { "id": "croptopia:oatmeal", diff --git a/src/main/resources/data/croptopia/recipe/olive_oil.json b/src/main/resources/data/croptopia/recipe/olive_oil.json index 7bce4809d..06b8f129c 100644 --- a/src/main/resources/data/croptopia/recipe/olive_oil.json +++ b/src/main/resources/data/croptopia/recipe/olive_oil.json @@ -1,17 +1,12 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "tag": "${dependent}:olives" - }, - { - "tag": "${dependent}:olives" - }, - { - "item": "croptopia:food_press" - } + "#${dependent}:olives", + "#${dependent}:olives", + "croptopia:food_press" ], "result": { - "id": "croptopia:olive_oil" + "id": "croptopia:olive_oil", + "count": 1 } } diff --git a/src/main/resources/data/croptopia/recipe/onion_rings.json b/src/main/resources/data/croptopia/recipe/onion_rings.json index 811cf378c..fe891a6c2 100644 --- a/src/main/resources/data/croptopia/recipe/onion_rings.json +++ b/src/main/resources/data/croptopia/recipe/onion_rings.json @@ -1,21 +1,11 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "tag": "${dependent}:onions" - }, - { - "item": "croptopia:cooking_pot" - }, - { - "tag": "${dependent}:salts" - }, - { - "tag": "${dependent}:olive_oils" - }, - { - "tag": "${dependent}:flour" - } + "#${dependent}:onions", + "croptopia:cooking_pot", + "#${dependent}:salts", + "#${dependent}:olive_oils", + "#${dependent}:flour" ], "result": { "id": "croptopia:onion_rings", diff --git a/src/main/resources/data/croptopia/recipe/paprika.json b/src/main/resources/data/croptopia/recipe/paprika.json index c46475176..72a415868 100644 --- a/src/main/resources/data/croptopia/recipe/paprika.json +++ b/src/main/resources/data/croptopia/recipe/paprika.json @@ -1,12 +1,8 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "tag": "${dependent}:chile_peppers" - }, - { - "item": "croptopia:mortar_and_pestle" - } + "#${dependent}:chile_peppers", + "croptopia:mortar_and_pestle" ], "result": { "id": "croptopia:paprika", diff --git a/src/main/resources/data/croptopia/recipe/peanut_butter_and_jam.json b/src/main/resources/data/croptopia/recipe/peanut_butter_and_jam.json index 97c4739e1..cc6c81f44 100644 --- a/src/main/resources/data/croptopia/recipe/peanut_butter_and_jam.json +++ b/src/main/resources/data/croptopia/recipe/peanut_butter_and_jam.json @@ -1,15 +1,9 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "item": "minecraft:bread" - }, - { - "item": "croptopia:peanut_butter" - }, - { - "tag": "${dependent}:jams" - } + "minecraft:bread", + "croptopia:peanut_butter", + "#${dependent}:jams" ], "result": { "id": "croptopia:peanut_butter_and_jam", diff --git a/src/main/resources/data/croptopia/recipe/pepperoni.json b/src/main/resources/data/croptopia/recipe/pepperoni.json index 6b291af00..a45705187 100644 --- a/src/main/resources/data/croptopia/recipe/pepperoni.json +++ b/src/main/resources/data/croptopia/recipe/pepperoni.json @@ -1,18 +1,10 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "item": "minecraft:beef" - }, - { - "item": "minecraft:porkchop" - }, - { - "tag": "${dependent}:paprika" - }, - { - "tag": "${dependent}:chile_peppers" - } + "minecraft:beef", + "minecraft:porkchop", + "#${dependent}:paprika", + "#${dependent}:chile_peppers" ], "result": { "id": "croptopia:pepperoni", diff --git a/src/main/resources/data/croptopia/recipe/pineapple_pepperoni_pizza.json b/src/main/resources/data/croptopia/recipe/pineapple_pepperoni_pizza.json index 6b00011cf..ada559765 100644 --- a/src/main/resources/data/croptopia/recipe/pineapple_pepperoni_pizza.json +++ b/src/main/resources/data/croptopia/recipe/pineapple_pepperoni_pizza.json @@ -1,27 +1,13 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "tag": "${dependent}:doughs" - }, - { - "tag": "${dependent}:cheeses" - }, - { - "tag": "${dependent}:tomatoes" - }, - { - "tag": "${dependent}:pineapples" - }, - { - "tag": "${dependent}:pepperoni" - }, - { - "tag": "${dependent}:pineapples" - }, - { - "item": "croptopia:frying_pan" - } + "#${dependent}:doughs", + "#${dependent}:cheeses", + "#${dependent}:tomatoes", + "#${dependent}:pineapples", + "#${dependent}:pepperoni", + "#${dependent}:pineapples", + "croptopia:frying_pan" ], "result": { "id": "croptopia:pineapple_pepperoni_pizza", diff --git a/src/main/resources/data/croptopia/recipe/pizza.json b/src/main/resources/data/croptopia/recipe/pizza.json index 4179daf64..23fdb790f 100644 --- a/src/main/resources/data/croptopia/recipe/pizza.json +++ b/src/main/resources/data/croptopia/recipe/pizza.json @@ -1,18 +1,10 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "tag": "${dependent}:doughs" - }, - { - "tag": "${dependent}:cheeses" - }, - { - "tag": "${dependent}:tomatoes" - }, - { - "item": "croptopia:frying_pan" - } + "#${dependent}:doughs", + "#${dependent}:cheeses", + "#${dependent}:tomatoes", + "croptopia:frying_pan" ], "result": { "id": "croptopia:pizza", diff --git a/src/main/resources/data/croptopia/recipe/pork_and_beans.json b/src/main/resources/data/croptopia/recipe/pork_and_beans.json index b2f710640..268e06905 100644 --- a/src/main/resources/data/croptopia/recipe/pork_and_beans.json +++ b/src/main/resources/data/croptopia/recipe/pork_and_beans.json @@ -1,15 +1,9 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "item": "minecraft:bowl" - }, - { - "tag": "${dependent}:blackbeans" - }, - { - "item": "minecraft:porkchop" - } + "minecraft:bowl", + "#${dependent}:blackbeans", + "minecraft:porkchop" ], "result": { "id": "croptopia:pork_and_beans", diff --git a/src/main/resources/data/croptopia/recipe/potato_chips.json b/src/main/resources/data/croptopia/recipe/potato_chips.json index 91f196427..a2ea5a789 100644 --- a/src/main/resources/data/croptopia/recipe/potato_chips.json +++ b/src/main/resources/data/croptopia/recipe/potato_chips.json @@ -1,18 +1,10 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "item": "minecraft:potato" - }, - { - "item": "croptopia:frying_pan" - }, - { - "tag": "${dependent}:salts" - }, - { - "tag": "${dependent}:olive_oils" - } + "minecraft:potato", + "croptopia:frying_pan", + "#${dependent}:salts", + "#${dependent}:olive_oils" ], "result": { "id": "croptopia:potato_chips", diff --git a/src/main/resources/data/croptopia/recipe/protein_bar.json b/src/main/resources/data/croptopia/recipe/protein_bar.json index edc2fd3c5..46a35a183 100644 --- a/src/main/resources/data/croptopia/recipe/protein_bar.json +++ b/src/main/resources/data/croptopia/recipe/protein_bar.json @@ -1,24 +1,12 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "tag": "${dependent}:nuts" - }, - { - "tag": "${dependent}:nuts" - }, - { - "item": "minecraft:sugar" - }, - { - "tag": "${dependent}:caramel" - }, - { - "tag": "${dependent}:chocolates" - }, - { - "tag": "${dependent}:salts" - } + "#${dependent}:nuts", + "#${dependent}:nuts", + "minecraft:sugar", + "#${dependent}:caramel", + "#${dependent}:chocolates", + "#${dependent}:salts" ], "result": { "id": "croptopia:protein_bar", diff --git a/src/main/resources/data/croptopia/recipe/pumpkin_spice_latte.json b/src/main/resources/data/croptopia/recipe/pumpkin_spice_latte.json index 7584c804d..ad8612e98 100644 --- a/src/main/resources/data/croptopia/recipe/pumpkin_spice_latte.json +++ b/src/main/resources/data/croptopia/recipe/pumpkin_spice_latte.json @@ -1,21 +1,11 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "item": "minecraft:sugar" - }, - { - "tag": "${dependent}:paprika" - }, - { - "tag": "${dependent}:milks" - }, - { - "item": "minecraft:pumpkin" - }, - { - "item": "croptopia:coffee" - } + "minecraft:sugar", + "#${dependent}:paprika", + "#${dependent}:milks", + "minecraft:pumpkin", + "croptopia:coffee" ], "result": { "id": "croptopia:pumpkin_spice_latte", diff --git a/src/main/resources/data/croptopia/recipe/quesadilla.json b/src/main/resources/data/croptopia/recipe/quesadilla.json index 951f87848..5d451363b 100644 --- a/src/main/resources/data/croptopia/recipe/quesadilla.json +++ b/src/main/resources/data/croptopia/recipe/quesadilla.json @@ -1,24 +1,12 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "tag": "${dependent}:tortillas" - }, - { - "tag": "${dependent}:tortillas" - }, - { - "tag": "${dependent}:cheeses" - }, - { - "tag": "${dependent}:avocados" - }, - { - "tag": "croptopia:chicken_replacements" - }, - { - "item": "croptopia:frying_pan" - } + "#${dependent}:tortillas", + "#${dependent}:tortillas", + "#${dependent}:cheeses", + "#${dependent}:avocados", + "#croptopia:chicken_replacements", + "croptopia:frying_pan" ], "result": { "id": "croptopia:quesadilla", diff --git a/src/main/resources/data/croptopia/recipe/raisin_oatmeal_cookie.json b/src/main/resources/data/croptopia/recipe/raisin_oatmeal_cookie.json index 6ebb8a239..a293b4fb6 100644 --- a/src/main/resources/data/croptopia/recipe/raisin_oatmeal_cookie.json +++ b/src/main/resources/data/croptopia/recipe/raisin_oatmeal_cookie.json @@ -1,18 +1,10 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "tag": "${dependent}:raisins" - }, - { - "item": "croptopia:oatmeal" - }, - { - "item": "minecraft:sugar" - }, - { - "tag": "${dependent}:flour" - } + "#${dependent}:raisins", + "croptopia:oatmeal", + "minecraft:sugar", + "#${dependent}:flour" ], "result": { "id": "croptopia:raisin_oatmeal_cookie", diff --git a/src/main/resources/data/croptopia/recipe/ravioli.json b/src/main/resources/data/croptopia/recipe/ravioli.json index d582400db..48ab68d47 100644 --- a/src/main/resources/data/croptopia/recipe/ravioli.json +++ b/src/main/resources/data/croptopia/recipe/ravioli.json @@ -1,12 +1,8 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "tag": "${dependent}:noodles" - }, - { - "tag": "${dependent}:cheeses" - } + "#${dependent}:noodles", + "#${dependent}:cheeses" ], "result": { "id": "croptopia:ravioli", diff --git a/src/main/resources/data/croptopia/recipe/refried_beans.json b/src/main/resources/data/croptopia/recipe/refried_beans.json index 8083c1cbb..80ad01775 100644 --- a/src/main/resources/data/croptopia/recipe/refried_beans.json +++ b/src/main/resources/data/croptopia/recipe/refried_beans.json @@ -1,21 +1,11 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "tag": "${dependent}:blackbeans" - }, - { - "tag": "${dependent}:blackbeans" - }, - { - "tag": "${dependent}:chile_peppers" - }, - { - "tag": "${dependent}:cheeses" - }, - { - "item": "croptopia:frying_pan" - } + "#${dependent}:blackbeans", + "#${dependent}:blackbeans", + "#${dependent}:chile_peppers", + "#${dependent}:cheeses", + "croptopia:frying_pan" ], "result": { "id": "croptopia:refried_beans", diff --git a/src/main/resources/data/croptopia/recipe/roasted_nuts.json b/src/main/resources/data/croptopia/recipe/roasted_nuts.json index e86b4e3f7..3d84ac8f5 100644 --- a/src/main/resources/data/croptopia/recipe/roasted_nuts.json +++ b/src/main/resources/data/croptopia/recipe/roasted_nuts.json @@ -1,8 +1,6 @@ { "type": "minecraft:smelting", - "ingredient": { - "tag": "${dependent}:nuts" - }, + "ingredient": "#${dependent}:nuts", "result": { "id": "croptopia:roasted_nuts" }, diff --git a/src/main/resources/data/croptopia/recipe/roasted_nuts_from_campfire.json b/src/main/resources/data/croptopia/recipe/roasted_nuts_from_campfire.json index 9f3e1e39e..9a65d54cc 100644 --- a/src/main/resources/data/croptopia/recipe/roasted_nuts_from_campfire.json +++ b/src/main/resources/data/croptopia/recipe/roasted_nuts_from_campfire.json @@ -1,8 +1,6 @@ { "type": "minecraft:campfire_cooking", - "ingredient": { - "tag": "${dependent}:nuts" - }, + "ingredient": "#${dependent}:nuts", "result": { "id": "croptopia:roasted_nuts" }, diff --git a/src/main/resources/data/croptopia/recipe/roasted_smoking.json b/src/main/resources/data/croptopia/recipe/roasted_smoking.json index 3c182dd35..e9abfe970 100644 --- a/src/main/resources/data/croptopia/recipe/roasted_smoking.json +++ b/src/main/resources/data/croptopia/recipe/roasted_smoking.json @@ -1,8 +1,6 @@ { "type": "minecraft:smoking", - "ingredient": { - "tag": "${dependent}:nuts" - }, + "ingredient": "#${dependent}:nuts", "result": { "id": "croptopia:roasted_nuts" }, diff --git a/src/main/resources/data/croptopia/recipe/rum.json b/src/main/resources/data/croptopia/recipe/rum.json index de46396e6..3b0ca62ea 100644 --- a/src/main/resources/data/croptopia/recipe/rum.json +++ b/src/main/resources/data/croptopia/recipe/rum.json @@ -1,15 +1,9 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "item": "minecraft:glass_bottle" - }, - { - "tag": "${dependent}:molasses" - }, - { - "tag": "${dependent}:water_bottles" - } + "minecraft:glass_bottle", + "#${dependent}:molasses", + "#${dependent}:water_bottles" ], "result": { "id": "croptopia:rum", diff --git a/src/main/resources/data/croptopia/recipe/rum_raisin_ice_cream.json b/src/main/resources/data/croptopia/recipe/rum_raisin_ice_cream.json index 0cde405e3..74567ec1f 100644 --- a/src/main/resources/data/croptopia/recipe/rum_raisin_ice_cream.json +++ b/src/main/resources/data/croptopia/recipe/rum_raisin_ice_cream.json @@ -1,24 +1,12 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "item": "minecraft:sugar" - }, - { - "tag": "${dependent}:raisins" - }, - { - "tag": "${dependent}:rums" - }, - { - "tag": "${dependent}:milks" - }, - { - "item": "minecraft:egg" - }, - { - "item": "croptopia:cooking_pot" - } + "minecraft:sugar", + "#${dependent}:raisins", + "#${dependent}:rums", + "#${dependent}:milks", + "minecraft:egg", + "croptopia:cooking_pot" ], "result": { "id": "croptopia:rum_raisin_ice_cream", diff --git a/src/main/resources/data/croptopia/recipe/salsa.json b/src/main/resources/data/croptopia/recipe/salsa.json index 8616d09f7..fdcdeffd7 100644 --- a/src/main/resources/data/croptopia/recipe/salsa.json +++ b/src/main/resources/data/croptopia/recipe/salsa.json @@ -1,21 +1,11 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "tag": "${dependent}:tomatoes" - }, - { - "tag": "${dependent}:chile_peppers" - }, - { - "tag": "${dependent}:salts" - }, - { - "tag": "${dependent}:limes" - }, - { - "tag": "${dependent}:tomatillos" - } + "#${dependent}:tomatoes", + "#${dependent}:chile_peppers", + "#${dependent}:salts", + "#${dependent}:limes", + "#${dependent}:tomatillos" ], "result": { "id": "croptopia:salsa", diff --git a/src/main/resources/data/croptopia/recipe/saucy_chips.json b/src/main/resources/data/croptopia/recipe/saucy_chips.json index 85d4e2efa..1d0381fa6 100644 --- a/src/main/resources/data/croptopia/recipe/saucy_chips.json +++ b/src/main/resources/data/croptopia/recipe/saucy_chips.json @@ -1,15 +1,9 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "item": "minecraft:bowl" - }, - { - "tag": "croptopia:sauces" - }, - { - "item": "croptopia:potato_chips" - } + "minecraft:bowl", + "#croptopia:sauces", + "croptopia:potato_chips" ], "result": { "id": "croptopia:saucy_chips", diff --git a/src/main/resources/data/croptopia/recipe/scrambled_eggs.json b/src/main/resources/data/croptopia/recipe/scrambled_eggs.json index fdc980f33..163410bd9 100644 --- a/src/main/resources/data/croptopia/recipe/scrambled_eggs.json +++ b/src/main/resources/data/croptopia/recipe/scrambled_eggs.json @@ -1,15 +1,9 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "item": "croptopia:frying_pan" - }, - { - "item": "minecraft:egg" - }, - { - "tag": "${dependent}:cheeses" - } + "croptopia:frying_pan", + "minecraft:egg", + "#${dependent}:cheeses" ], "result": { "id": "croptopia:scrambled_eggs", diff --git a/src/main/resources/data/croptopia/recipe/shaped_ajvar.json b/src/main/resources/data/croptopia/recipe/shaped_ajvar.json index 311a5c1f9..6c960c862 100644 --- a/src/main/resources/data/croptopia/recipe/shaped_ajvar.json +++ b/src/main/resources/data/croptopia/recipe/shaped_ajvar.json @@ -5,24 +5,12 @@ "123" ], "key": { - "1": { - "tag": "${dependent}:bellpeppers" - }, - "2": { - "tag": "${dependent}:eggplants" - }, - "3": { - "tag": "${dependent}:garlic" - }, - "4": { - "tag": "${dependent}:chile_peppers" - }, - "5": { - "tag": "${dependent}:olive_oils" - }, - "6": { - "tag": "${dependent}:salts" - } + "1": "#${dependent}:bellpeppers", + "2": "#${dependent}:eggplants", + "3": "#${dependent}:garlic", + "4": "#${dependent}:chile_peppers", + "5": "#${dependent}:olive_oils", + "6": "#${dependent}:salts" }, "result": { "id": "croptopia:ajvar", diff --git a/src/main/resources/data/croptopia/recipe/shaped_ajvar_toast.json b/src/main/resources/data/croptopia/recipe/shaped_ajvar_toast.json index a5acbdcd7..2d20715df 100644 --- a/src/main/resources/data/croptopia/recipe/shaped_ajvar_toast.json +++ b/src/main/resources/data/croptopia/recipe/shaped_ajvar_toast.json @@ -5,12 +5,8 @@ "2" ], "key": { - "1": { - "item": "croptopia:ajvar" - }, - "2": { - "item": "croptopia:toast" - } + "1": "croptopia:ajvar", + "2": "croptopia:toast" }, "result": { "id": "croptopia:ajvar_toast", diff --git a/src/main/resources/data/croptopia/recipe/shaped_avocado_toast.json b/src/main/resources/data/croptopia/recipe/shaped_avocado_toast.json index 3f2e9944f..78a0fa578 100644 --- a/src/main/resources/data/croptopia/recipe/shaped_avocado_toast.json +++ b/src/main/resources/data/croptopia/recipe/shaped_avocado_toast.json @@ -5,12 +5,8 @@ "2" ], "key": { - "1": { - "tag": "${dependent}:avocados" - }, - "2": { - "item": "croptopia:toast" - } + "1": "#${dependent}:avocados", + "2": "croptopia:toast" }, "result": { "id": "croptopia:avocado_toast", diff --git a/src/main/resources/data/croptopia/recipe/shaped_bacon.json b/src/main/resources/data/croptopia/recipe/shaped_bacon.json index 2acfcdea3..2f06d06bd 100644 --- a/src/main/resources/data/croptopia/recipe/shaped_bacon.json +++ b/src/main/resources/data/croptopia/recipe/shaped_bacon.json @@ -5,12 +5,8 @@ "1 " ], "key": { - "1": { - "item": "croptopia:knife" - }, - "2": { - "item": "minecraft:porkchop" - } + "1": "croptopia:knife", + "2": "minecraft:porkchop" }, "result": { "id": "croptopia:bacon", diff --git a/src/main/resources/data/croptopia/recipe/shaped_beef_stew.json b/src/main/resources/data/croptopia/recipe/shaped_beef_stew.json index 2f2bba116..496da22dc 100644 --- a/src/main/resources/data/croptopia/recipe/shaped_beef_stew.json +++ b/src/main/resources/data/croptopia/recipe/shaped_beef_stew.json @@ -5,21 +5,11 @@ "253" ], "key": { - "1": { - "item": "minecraft:carrot" - }, - "2": { - "item": "minecraft:beef" - }, - "3": { - "item": "minecraft:potato" - }, - "4": { - "item": "minecraft:carrot" - }, - "5": { - "tag": "${dependent}:flour" - } + "1": "minecraft:carrot", + "2": "minecraft:beef", + "3": "minecraft:potato", + "4": "minecraft:carrot", + "5": "#${dependent}:flour" }, "result": { "id": "croptopia:beef_stew", diff --git a/src/main/resources/data/croptopia/recipe/shaped_beef_stir_fry.json b/src/main/resources/data/croptopia/recipe/shaped_beef_stir_fry.json index a1a74fcf5..71d036ff8 100644 --- a/src/main/resources/data/croptopia/recipe/shaped_beef_stir_fry.json +++ b/src/main/resources/data/croptopia/recipe/shaped_beef_stir_fry.json @@ -5,24 +5,12 @@ "253" ], "key": { - "1": { - "tag": "${dependent}:broccoli" - }, - "2": { - "tag": "${dependent}:olive_oils" - }, - "3": { - "tag": "${dependent}:garlic" - }, - "4": { - "item": "minecraft:beef" - }, - "5": { - "tag": "${dependent}:soy_sauces" - }, - "6": { - "item": "minecraft:carrot" - } + "1": "#${dependent}:broccoli", + "2": "#${dependent}:olive_oils", + "3": "#${dependent}:garlic", + "4": "minecraft:beef", + "5": "#${dependent}:soy_sauces", + "6": "minecraft:carrot" }, "result": { "id": "croptopia:beef_stir_fry", diff --git a/src/main/resources/data/croptopia/recipe/shaped_beef_wellington.json b/src/main/resources/data/croptopia/recipe/shaped_beef_wellington.json index dedbcc7b5..7bb1cb886 100644 --- a/src/main/resources/data/croptopia/recipe/shaped_beef_wellington.json +++ b/src/main/resources/data/croptopia/recipe/shaped_beef_wellington.json @@ -6,30 +6,14 @@ "516" ], "key": { - "F": { - "item": "croptopia:frying_pan" - }, - "1": { - "item": "minecraft:beef" - }, - "2": { - "tag": "${dependent}:mustard" - }, - "3": { - "item": "croptopia:pepper" - }, - "4": { - "tag": "${dependent}:onions" - }, - "5": { - "item": "minecraft:egg" - }, - "6": { - "item": "minecraft:brown_mushroom" - }, - "9": { - "tag": "${dependent}:flour" - } + "F": "croptopia:frying_pan", + "1": "minecraft:beef", + "2": "#${dependent}:mustard", + "3": "croptopia:pepper", + "4": "#${dependent}:onions", + "5": "minecraft:egg", + "6": "minecraft:brown_mushroom", + "9": "#${dependent}:flour" }, "result": { "id": "croptopia:beef_wellington", diff --git a/src/main/resources/data/croptopia/recipe/shaped_buttered_green_beans.json b/src/main/resources/data/croptopia/recipe/shaped_buttered_green_beans.json index 63ec979ab..835876a67 100644 --- a/src/main/resources/data/croptopia/recipe/shaped_buttered_green_beans.json +++ b/src/main/resources/data/croptopia/recipe/shaped_buttered_green_beans.json @@ -5,21 +5,11 @@ "123" ], "key": { - "1": { - "tag": "${dependent}:butters" - }, - "2": { - "tag": "${dependent}:greenbeans" - }, - "3": { - "tag": "${dependent}:gingers" - }, - "4": { - "tag": "${dependent}:salts" - }, - "5": { - "item": "croptopia:pepper" - } + "1": "#${dependent}:butters", + "2": "#${dependent}:greenbeans", + "3": "#${dependent}:gingers", + "4": "#${dependent}:salts", + "5": "croptopia:pepper" }, "result": { "id": "croptopia:buttered_green_beans", diff --git a/src/main/resources/data/croptopia/recipe/shaped_cheesy_asparagus.json b/src/main/resources/data/croptopia/recipe/shaped_cheesy_asparagus.json index 4886d36e1..89a9bb6ff 100644 --- a/src/main/resources/data/croptopia/recipe/shaped_cheesy_asparagus.json +++ b/src/main/resources/data/croptopia/recipe/shaped_cheesy_asparagus.json @@ -5,18 +5,10 @@ "324" ], "key": { - "1": { - "tag": "${dependent}:asparagus" - }, - "2": { - "tag": "${dependent}:olive_oils" - }, - "3": { - "tag": "${dependent}:cheeses" - }, - "4": { - "item": "croptopia:pepper" - } + "1": "#${dependent}:asparagus", + "2": "#${dependent}:olive_oils", + "3": "#${dependent}:cheeses", + "4": "croptopia:pepper" }, "result": { "id": "croptopia:cheesy_asparagus", diff --git a/src/main/resources/data/croptopia/recipe/shaped_chocolate_ice_cream.json b/src/main/resources/data/croptopia/recipe/shaped_chocolate_ice_cream.json index 40694144b..c56df4885 100644 --- a/src/main/resources/data/croptopia/recipe/shaped_chocolate_ice_cream.json +++ b/src/main/resources/data/croptopia/recipe/shaped_chocolate_ice_cream.json @@ -6,21 +6,11 @@ " 5 " ], "key": { - "1": { - "item": "minecraft:egg" - }, - "2": { - "tag": "${dependent}:chocolates" - }, - "3": { - "tag": "${dependent}:milk_bottles" - }, - "4": { - "item": "minecraft:sugar" - }, - "5": { - "item": "croptopia:cooking_pot" - } + "1": "minecraft:egg", + "2": "#${dependent}:chocolates", + "3": "#${dependent}:milk_bottles", + "4": "minecraft:sugar", + "5": "croptopia:cooking_pot" }, "result": { "id": "croptopia:chocolate_ice_cream", diff --git a/src/main/resources/data/croptopia/recipe/shaped_cornish_pasty.json b/src/main/resources/data/croptopia/recipe/shaped_cornish_pasty.json index a104dde86..1494d0cbf 100644 --- a/src/main/resources/data/croptopia/recipe/shaped_cornish_pasty.json +++ b/src/main/resources/data/croptopia/recipe/shaped_cornish_pasty.json @@ -6,27 +6,13 @@ " 1 " ], "key": { - "1": { - "item": "croptopia:frying_pan" - }, - "2": { - "tag": "${dependent}:flour" - }, - "3": { - "item": "minecraft:beef" - }, - "4": { - "item": "minecraft:potato" - }, - "5": { - "tag": "${dependent}:onions" - }, - "6": { - "tag": "${dependent}:rutabagas" - }, - "7": { - "item": "croptopia:pepper" - } + "1": "croptopia:frying_pan", + "2": "#${dependent}:flour", + "3": "minecraft:beef", + "4": "minecraft:potato", + "5": "#${dependent}:onions", + "6": "#${dependent}:rutabagas", + "7": "croptopia:pepper" }, "result": { "id": "croptopia:cornish_pasty", diff --git a/src/main/resources/data/croptopia/recipe/shaped_eggplant_parmesan.json b/src/main/resources/data/croptopia/recipe/shaped_eggplant_parmesan.json index 5ec3b9fa2..e571ceb9c 100644 --- a/src/main/resources/data/croptopia/recipe/shaped_eggplant_parmesan.json +++ b/src/main/resources/data/croptopia/recipe/shaped_eggplant_parmesan.json @@ -6,27 +6,13 @@ " 57" ], "key": { - "1": { - "item": "minecraft:egg" - }, - "2": { - "tag": "${dependent}:eggplants" - }, - "3": { - "tag": "${dependent}:olive_oils" - }, - "4": { - "item": "croptopia:pepper" - }, - "5": { - "tag": "${dependent}:cheeses" - }, - "6": { - "tag": "${dependent}:basil" - }, - "7": { - "item": "minecraft:bread" - } + "1": "minecraft:egg", + "2": "#${dependent}:eggplants", + "3": "#${dependent}:olive_oils", + "4": "croptopia:pepper", + "5": "#${dependent}:cheeses", + "6": "#${dependent}:basil", + "7": "minecraft:bread" }, "result": { "id": "croptopia:eggplant_parmesan", diff --git a/src/main/resources/data/croptopia/recipe/shaped_eton_mess.json b/src/main/resources/data/croptopia/recipe/shaped_eton_mess.json index bdd01ccb8..9dd0b7b2e 100644 --- a/src/main/resources/data/croptopia/recipe/shaped_eton_mess.json +++ b/src/main/resources/data/croptopia/recipe/shaped_eton_mess.json @@ -5,18 +5,10 @@ "121" ], "key": { - "1": { - "item": "minecraft:egg" - }, - "2": { - "item": "minecraft:sugar" - }, - "3": { - "tag": "${dependent}:strawberries" - }, - "4": { - "item": "croptopia:whipping_cream" - } + "1": "minecraft:egg", + "2": "minecraft:sugar", + "3": "#${dependent}:strawberries", + "4": "croptopia:whipping_cream" }, "result": { "id": "croptopia:eton_mess", diff --git a/src/main/resources/data/croptopia/recipe/shaped_figgy_pudding.json b/src/main/resources/data/croptopia/recipe/shaped_figgy_pudding.json index 67c87e1d0..955e77e02 100644 --- a/src/main/resources/data/croptopia/recipe/shaped_figgy_pudding.json +++ b/src/main/resources/data/croptopia/recipe/shaped_figgy_pudding.json @@ -5,24 +5,12 @@ "123" ], "key": { - "1": { - "item": "minecraft:egg" - }, - "2": { - "tag": "${dependent}:water_bottles" - }, - "3": { - "item": "croptopia:whipping_cream" - }, - "4": { - "tag": "${dependent}:dates" - }, - "5": { - "tag": "${dependent}:figs" - }, - "6": { - "item": "minecraft:sugar" - } + "1": "minecraft:egg", + "2": "#${dependent}:water_bottles", + "3": "croptopia:whipping_cream", + "4": "#${dependent}:dates", + "5": "#${dependent}:figs", + "6": "minecraft:sugar" }, "result": { "id": "croptopia:figgy_pudding", diff --git a/src/main/resources/data/croptopia/recipe/shaped_fish_and_chips.json b/src/main/resources/data/croptopia/recipe/shaped_fish_and_chips.json index 3592aaf5e..f27f3bc6c 100644 --- a/src/main/resources/data/croptopia/recipe/shaped_fish_and_chips.json +++ b/src/main/resources/data/croptopia/recipe/shaped_fish_and_chips.json @@ -6,24 +6,12 @@ "51 " ], "key": { - "F": { - "item": "croptopia:frying_pan" - }, - "1": { - "item": "minecraft:potato" - }, - "2": { - "tag": "${dependent}:salts" - }, - "3": { - "item": "croptopia:pepper" - }, - "4": { - "tag": "${dependent}:flour" - }, - "5": { - "tag": "minecraft:fishes" - } + "F": "croptopia:frying_pan", + "1": "minecraft:potato", + "2": "#${dependent}:salts", + "3": "croptopia:pepper", + "4": "#${dependent}:flour", + "5": "#minecraft:fishes" }, "result": { "id": "croptopia:fish_and_chips", diff --git a/src/main/resources/data/croptopia/recipe/shaped_fruit_cake.json b/src/main/resources/data/croptopia/recipe/shaped_fruit_cake.json index 0d69ba0ba..9305116f7 100644 --- a/src/main/resources/data/croptopia/recipe/shaped_fruit_cake.json +++ b/src/main/resources/data/croptopia/recipe/shaped_fruit_cake.json @@ -6,30 +6,14 @@ "857" ], "key": { - "1": { - "tag": "${dependent}:fruits" - }, - "2": { - "item": "minecraft:sugar" - }, - "3": { - "tag": "${dependent}:lemons" - }, - "4": { - "tag": "${dependent}:pecans" - }, - "5": { - "item": "croptopia:cinnamon" - }, - "6": { - "tag": "${dependent}:salts" - }, - "7": { - "tag": "${dependent}:nutmegs" - }, - "8": { - "item": "minecraft:egg" - } + "1": "#${dependent}:food/fruits", + "2": "minecraft:sugar", + "3": "#${dependent}:lemons", + "4": "#${dependent}:pecans", + "5": "croptopia:cinnamon", + "6": "#${dependent}:salts", + "7": "#${dependent}:nutmegs", + "8": "minecraft:egg" }, "result": { "id": "croptopia:fruit_cake", diff --git a/src/main/resources/data/croptopia/recipe/shaped_grilled_eggplant.json b/src/main/resources/data/croptopia/recipe/shaped_grilled_eggplant.json index 5da2c9e05..8b736b92b 100644 --- a/src/main/resources/data/croptopia/recipe/shaped_grilled_eggplant.json +++ b/src/main/resources/data/croptopia/recipe/shaped_grilled_eggplant.json @@ -5,24 +5,12 @@ "314" ], "key": { - "1": { - "tag": "${dependent}:eggplants" - }, - "2": { - "tag": "${dependent}:salts" - }, - "3": { - "tag": "${dependent}:olive_oils" - }, - "4": { - "tag": "${dependent}:garlic" - }, - "5": { - "item": "croptopia:pepper" - }, - "6": { - "tag": "${dependent}:paprika" - } + "1": "#${dependent}:eggplants", + "2": "#${dependent}:salts", + "3": "#${dependent}:olive_oils", + "4": "#${dependent}:garlic", + "5": "croptopia:pepper", + "6": "#${dependent}:paprika" }, "result": { "id": "croptopia:grilled_eggplant", diff --git a/src/main/resources/data/croptopia/recipe/shaped_kiwi_sorbet.json b/src/main/resources/data/croptopia/recipe/shaped_kiwi_sorbet.json index 1ebe07019..6d31336d5 100644 --- a/src/main/resources/data/croptopia/recipe/shaped_kiwi_sorbet.json +++ b/src/main/resources/data/croptopia/recipe/shaped_kiwi_sorbet.json @@ -5,12 +5,8 @@ "2" ], "key": { - "1": { - "tag": "${dependent}:kiwis" - }, - "2": { - "item": "minecraft:honey_bottle" - } + "1": "#${dependent}:kiwis", + "2": "minecraft:honey_bottle" }, "result": { "id": "croptopia:kiwi_sorbet", diff --git a/src/main/resources/data/croptopia/recipe/shaped_lemon_coconut_bar.json b/src/main/resources/data/croptopia/recipe/shaped_lemon_coconut_bar.json index d51560ac9..7c525870a 100644 --- a/src/main/resources/data/croptopia/recipe/shaped_lemon_coconut_bar.json +++ b/src/main/resources/data/croptopia/recipe/shaped_lemon_coconut_bar.json @@ -5,24 +5,12 @@ "526" ], "key": { - "1": { - "tag": "${dependent}:lemons" - }, - "2": { - "tag": "${dependent}:coconuts" - }, - "3": { - "item": "minecraft:sugar" - }, - "4": { - "item": "minecraft:egg" - }, - "5": { - "tag": "${dependent}:butters" - }, - "6": { - "tag": "${dependent}:flour" - } + "1": "#${dependent}:lemons", + "2": "#${dependent}:coconuts", + "3": "minecraft:sugar", + "4": "minecraft:egg", + "5": "#${dependent}:butters", + "6": "#${dependent}:flour" }, "result": { "id": "croptopia:lemon_coconut_bar", diff --git a/src/main/resources/data/croptopia/recipe/shaped_milk_bottle.json b/src/main/resources/data/croptopia/recipe/shaped_milk_bottle.json index bcfd2baa5..6c090d7c5 100644 --- a/src/main/resources/data/croptopia/recipe/shaped_milk_bottle.json +++ b/src/main/resources/data/croptopia/recipe/shaped_milk_bottle.json @@ -6,12 +6,8 @@ " 2 " ], "key": { - "1": { - "item": "minecraft:milk_bucket" - }, - "2": { - "item": "minecraft:glass" - } + "1": "minecraft:milk_bucket", + "2": "minecraft:glass" }, "result": { "id": "croptopia:milk_bottle", diff --git a/src/main/resources/data/croptopia/recipe/shaped_nether_wart_stew.json b/src/main/resources/data/croptopia/recipe/shaped_nether_wart_stew.json index da7276928..ea80df582 100644 --- a/src/main/resources/data/croptopia/recipe/shaped_nether_wart_stew.json +++ b/src/main/resources/data/croptopia/recipe/shaped_nether_wart_stew.json @@ -5,18 +5,10 @@ "234" ], "key": { - "1": { - "tag": "${dependent}:flour" - }, - "2": { - "item": "minecraft:nether_wart" - }, - "3": { - "item": "minecraft:crimson_fungus" - }, - "4": { - "item": "minecraft:warped_fungus" - } + "1": "#${dependent}:flour", + "2": "minecraft:nether_wart", + "3": "minecraft:crimson_fungus", + "4": "minecraft:warped_fungus" }, "result": { "id": "croptopia:nether_wart_stew", diff --git a/src/main/resources/data/croptopia/recipe/shaped_peanut_butter.json b/src/main/resources/data/croptopia/recipe/shaped_peanut_butter.json index 01195ada4..b0f9c5e18 100644 --- a/src/main/resources/data/croptopia/recipe/shaped_peanut_butter.json +++ b/src/main/resources/data/croptopia/recipe/shaped_peanut_butter.json @@ -6,12 +6,8 @@ " 2 " ], "key": { - "1": { - "item": "croptopia:food_press" - }, - "2": { - "tag": "${dependent}:peanuts" - } + "1": "croptopia:food_press", + "2": "#${dependent}:peanuts" }, "result": { "id": "croptopia:peanut_butter", diff --git a/src/main/resources/data/croptopia/recipe/shaped_peanut_butter_with_celery.json b/src/main/resources/data/croptopia/recipe/shaped_peanut_butter_with_celery.json index 1c3d0eec5..a1d26abb3 100644 --- a/src/main/resources/data/croptopia/recipe/shaped_peanut_butter_with_celery.json +++ b/src/main/resources/data/croptopia/recipe/shaped_peanut_butter_with_celery.json @@ -5,12 +5,8 @@ "1 " ], "key": { - "1": { - "item": "croptopia:peanut_butter" - }, - "2": { - "tag": "${dependent}:celery" - } + "1": "croptopia:peanut_butter", + "2": "#${dependent}:celery" }, "result": { "id": "croptopia:peanut_butter_with_celery", diff --git a/src/main/resources/data/croptopia/recipe/shaped_potato_soup.json b/src/main/resources/data/croptopia/recipe/shaped_potato_soup.json index e51cf88e8..fac626369 100644 --- a/src/main/resources/data/croptopia/recipe/shaped_potato_soup.json +++ b/src/main/resources/data/croptopia/recipe/shaped_potato_soup.json @@ -6,21 +6,11 @@ " 5 " ], "key": { - "1": { - "item": "minecraft:potato" - }, - "2": { - "tag": "${dependent}:flour" - }, - "3": { - "tag": "${dependent}:greenonions" - }, - "4": { - "item": "croptopia:bacon" - }, - "5": { - "tag": "${dependent}:water_bottles" - } + "1": "minecraft:potato", + "2": "#${dependent}:flour", + "3": "#${dependent}:greenonions", + "4": "croptopia:bacon", + "5": "#${dependent}:water_bottles" }, "result": { "id": "croptopia:potato_soup", diff --git a/src/main/resources/data/croptopia/recipe/shaped_ratatouille.json b/src/main/resources/data/croptopia/recipe/shaped_ratatouille.json index 9fd711e07..966799f3b 100644 --- a/src/main/resources/data/croptopia/recipe/shaped_ratatouille.json +++ b/src/main/resources/data/croptopia/recipe/shaped_ratatouille.json @@ -6,33 +6,15 @@ "789" ], "key": { - "1": { - "item": "croptopia:frying_pan" - }, - "2": { - "tag": "${dependent}:eggplants" - }, - "3": { - "tag": "${dependent}:tomatoes" - }, - "4": { - "tag": "${dependent}:squashes" - }, - "5": { - "tag": "${dependent}:zucchini" - }, - "6": { - "tag": "${dependent}:olive_oils" - }, - "7": { - "tag": "${dependent}:onions" - }, - "8": { - "tag": "${dependent}:bellpeppers" - }, - "9": { - "tag": "${dependent}:basil" - } + "1": "croptopia:frying_pan", + "2": "#${dependent}:eggplants", + "3": "#${dependent}:tomatoes", + "4": "#${dependent}:squashes", + "5": "#${dependent}:zucchini", + "6": "#${dependent}:olive_oils", + "7": "#${dependent}:onions", + "8": "#${dependent}:bellpeppers", + "9": "#${dependent}:basil" }, "result": { "id": "croptopia:ratatouille", diff --git a/src/main/resources/data/croptopia/recipe/shaped_rhubarb_crisp.json b/src/main/resources/data/croptopia/recipe/shaped_rhubarb_crisp.json index ffbebdeba..9d8784ad9 100644 --- a/src/main/resources/data/croptopia/recipe/shaped_rhubarb_crisp.json +++ b/src/main/resources/data/croptopia/recipe/shaped_rhubarb_crisp.json @@ -6,27 +6,13 @@ "7 " ], "key": { - "1": { - "tag": "${dependent}:rhubarb" - }, - "2": { - "item": "minecraft:sugar" - }, - "3": { - "tag": "${dependent}:cinnamon" - }, - "4": { - "tag": "${dependent}:oats" - }, - "5": { - "tag": "${dependent}:flour" - }, - "6": { - "tag": "${dependent}:butters" - }, - "7": { - "tag": "${dependent}:salts" - } + "1": "#${dependent}:rhubarb", + "2": "minecraft:sugar", + "3": "#${dependent}:cinnamon", + "4": "#${dependent}:oats", + "5": "#${dependent}:flour", + "6": "#${dependent}:butters", + "7": "#${dependent}:salts" }, "result": { "id": "croptopia:rhubarb_crisp", diff --git a/src/main/resources/data/croptopia/recipe/shaped_roasted_asparagus.json b/src/main/resources/data/croptopia/recipe/shaped_roasted_asparagus.json index 300064569..99cc5256d 100644 --- a/src/main/resources/data/croptopia/recipe/shaped_roasted_asparagus.json +++ b/src/main/resources/data/croptopia/recipe/shaped_roasted_asparagus.json @@ -6,24 +6,12 @@ "465" ], "key": { - "1": { - "tag": "${dependent}:asparagus" - }, - "2": { - "tag": "${dependent}:olive_oils" - }, - "3": { - "tag": "${dependent}:garlic" - }, - "4": { - "tag": "${dependent}:salts" - }, - "5": { - "item": "croptopia:pepper" - }, - "6": { - "item": "croptopia:frying_pan" - } + "1": "#${dependent}:asparagus", + "2": "#${dependent}:olive_oils", + "3": "#${dependent}:garlic", + "4": "#${dependent}:salts", + "5": "croptopia:pepper", + "6": "croptopia:frying_pan" }, "result": { "id": "croptopia:roasted_asparagus", diff --git a/src/main/resources/data/croptopia/recipe/shaped_roasted_radishes.json b/src/main/resources/data/croptopia/recipe/shaped_roasted_radishes.json index 2f0b8f2b2..80fbb9883 100644 --- a/src/main/resources/data/croptopia/recipe/shaped_roasted_radishes.json +++ b/src/main/resources/data/croptopia/recipe/shaped_roasted_radishes.json @@ -6,24 +6,12 @@ "465" ], "key": { - "1": { - "tag": "${dependent}:radishes" - }, - "2": { - "tag": "${dependent}:olive_oils" - }, - "3": { - "tag": "${dependent}:garlic" - }, - "4": { - "tag": "${dependent}:salts" - }, - "5": { - "item": "croptopia:pepper" - }, - "6": { - "item": "croptopia:frying_pan" - } + "1": "#${dependent}:radishes", + "2": "#${dependent}:olive_oils", + "3": "#${dependent}:garlic", + "4": "#${dependent}:salts", + "5": "croptopia:pepper", + "6": "croptopia:frying_pan" }, "result": { "id": "croptopia:roasted_radishes", diff --git a/src/main/resources/data/croptopia/recipe/shaped_roasted_squash.json b/src/main/resources/data/croptopia/recipe/shaped_roasted_squash.json index 85b9b4f8e..073196918 100644 --- a/src/main/resources/data/croptopia/recipe/shaped_roasted_squash.json +++ b/src/main/resources/data/croptopia/recipe/shaped_roasted_squash.json @@ -6,24 +6,12 @@ "465" ], "key": { - "1": { - "tag": "${dependent}:squashes" - }, - "2": { - "tag": "${dependent}:olive_oils" - }, - "3": { - "tag": "${dependent}:garlic" - }, - "4": { - "tag": "${dependent}:salts" - }, - "5": { - "item": "croptopia:pepper" - }, - "6": { - "item": "croptopia:frying_pan" - } + "1": "#${dependent}:squashes", + "2": "#${dependent}:olive_oils", + "3": "#${dependent}:garlic", + "4": "#${dependent}:salts", + "5": "croptopia:pepper", + "6": "croptopia:frying_pan" }, "result": { "id": "croptopia:roasted_squash", diff --git a/src/main/resources/data/croptopia/recipe/shaped_roasted_turnips.json b/src/main/resources/data/croptopia/recipe/shaped_roasted_turnips.json index 946ddc9c7..31342df36 100644 --- a/src/main/resources/data/croptopia/recipe/shaped_roasted_turnips.json +++ b/src/main/resources/data/croptopia/recipe/shaped_roasted_turnips.json @@ -6,24 +6,12 @@ "465" ], "key": { - "1": { - "tag": "${dependent}:turnips" - }, - "2": { - "tag": "${dependent}:olive_oils" - }, - "3": { - "tag": "${dependent}:garlic" - }, - "4": { - "tag": "${dependent}:salts" - }, - "5": { - "item": "croptopia:pepper" - }, - "6": { - "item": "croptopia:frying_pan" - } + "1": "#${dependent}:turnips", + "2": "#${dependent}:olive_oils", + "3": "#${dependent}:garlic", + "4": "#${dependent}:salts", + "5": "croptopia:pepper", + "6": "croptopia:frying_pan" }, "result": { "id": "croptopia:roasted_turnips", diff --git a/src/main/resources/data/croptopia/recipe/shaped_scones.json b/src/main/resources/data/croptopia/recipe/shaped_scones.json index 3f946700d..438d25123 100644 --- a/src/main/resources/data/croptopia/recipe/shaped_scones.json +++ b/src/main/resources/data/croptopia/recipe/shaped_scones.json @@ -6,27 +6,13 @@ " 1 " ], "key": { - "1": { - "item": "croptopia:frying_pan" - }, - "2": { - "tag": "${dependent}:flour" - }, - "3": { - "tag": "${dependent}:salts" - }, - "4": { - "item": "minecraft:sugar" - }, - "5": { - "item": "minecraft:egg" - }, - "6": { - "tag": "${dependent}:vanilla" - }, - "7": { - "tag": "${dependent}:blueberries" - } + "1": "croptopia:frying_pan", + "2": "#${dependent}:flour", + "3": "#${dependent}:salts", + "4": "minecraft:sugar", + "5": "minecraft:egg", + "6": "#${dependent}:vanilla", + "7": "#${dependent}:blueberries" }, "result": { "id": "croptopia:scones", diff --git a/src/main/resources/data/croptopia/recipe/shaped_shepherds_pie.json b/src/main/resources/data/croptopia/recipe/shaped_shepherds_pie.json index 3cd636d6d..27e6767a5 100644 --- a/src/main/resources/data/croptopia/recipe/shaped_shepherds_pie.json +++ b/src/main/resources/data/croptopia/recipe/shaped_shepherds_pie.json @@ -6,33 +6,15 @@ "678" ], "key": { - "F": { - "item": "croptopia:frying_pan" - }, - "1": { - "tag": "croptopia:beef_mutton" - }, - "2": { - "tag": "${dependent}:salts" - }, - "3": { - "item": "croptopia:pepper" - }, - "4": { - "item": "minecraft:potato" - }, - "5": { - "tag": "${dependent}:tomatoes" - }, - "6": { - "tag": "${dependent}:corn" - }, - "7": { - "tag": "${dependent}:garlic" - }, - "8": { - "tag": "${dependent}:onions" - } + "F": "croptopia:frying_pan", + "1": "#croptopia:beef_mutton", + "2": "#${dependent}:salts", + "3": "croptopia:pepper", + "4": "minecraft:potato", + "5": "#${dependent}:tomatoes", + "6": "#${dependent}:corn", + "7": "#${dependent}:garlic", + "8": "#${dependent}:onions" }, "result": { "id": "croptopia:shepherds_pie", diff --git a/src/main/resources/data/croptopia/recipe/shaped_steamed_broccoli.json b/src/main/resources/data/croptopia/recipe/shaped_steamed_broccoli.json index 20f2da4b4..f7cd35da9 100644 --- a/src/main/resources/data/croptopia/recipe/shaped_steamed_broccoli.json +++ b/src/main/resources/data/croptopia/recipe/shaped_steamed_broccoli.json @@ -4,12 +4,8 @@ "121" ], "key": { - "1": { - "tag": "${dependent}:broccoli" - }, - "2": { - "tag": "${dependent}:water_bottles" - } + "1": "#${dependent}:broccoli", + "2": "#${dependent}:water_bottles" }, "result": { "id": "croptopia:steamed_broccoli", diff --git a/src/main/resources/data/croptopia/recipe/shaped_steamed_green_beans.json b/src/main/resources/data/croptopia/recipe/shaped_steamed_green_beans.json index 32a034e16..b5ed0945f 100644 --- a/src/main/resources/data/croptopia/recipe/shaped_steamed_green_beans.json +++ b/src/main/resources/data/croptopia/recipe/shaped_steamed_green_beans.json @@ -4,12 +4,8 @@ "121" ], "key": { - "1": { - "tag": "${dependent}:greenbeans" - }, - "2": { - "tag": "${dependent}:water_bottles" - } + "1": "#${dependent}:greenbeans", + "2": "#${dependent}:water_bottles" }, "result": { "id": "croptopia:steamed_green_beans", diff --git a/src/main/resources/data/croptopia/recipe/shaped_sticky_toffee_pudding.json b/src/main/resources/data/croptopia/recipe/shaped_sticky_toffee_pudding.json index 740d429a2..8a2e27277 100644 --- a/src/main/resources/data/croptopia/recipe/shaped_sticky_toffee_pudding.json +++ b/src/main/resources/data/croptopia/recipe/shaped_sticky_toffee_pudding.json @@ -6,30 +6,14 @@ "123" ], "key": { - "1": { - "item": "minecraft:egg" - }, - "2": { - "tag": "${dependent}:water_bottles" - }, - "3": { - "tag": "${dependent}:vanilla" - }, - "4": { - "item": "croptopia:whipping_cream" - }, - "5": { - "item": "minecraft:sugar" - }, - "6": { - "tag": "${dependent}:butters" - }, - "7": { - "tag": "${dependent}:dates" - }, - "8": { - "tag": "${dependent}:salts" - } + "1": "minecraft:egg", + "2": "#${dependent}:water_bottles", + "3": "#${dependent}:vanilla", + "4": "croptopia:whipping_cream", + "5": "minecraft:sugar", + "6": "#${dependent}:butters", + "7": "#${dependent}:dates", + "8": "#${dependent}:salts" }, "result": { "id": "croptopia:sticky_toffee_pudding", diff --git a/src/main/resources/data/croptopia/recipe/shaped_stir_fry.json b/src/main/resources/data/croptopia/recipe/shaped_stir_fry.json index d578d3db1..4a764cc49 100644 --- a/src/main/resources/data/croptopia/recipe/shaped_stir_fry.json +++ b/src/main/resources/data/croptopia/recipe/shaped_stir_fry.json @@ -5,24 +5,12 @@ "526" ], "key": { - "1": { - "tag": "${dependent}:broccoli" - }, - "2": { - "tag": "${dependent}:olive_oils" - }, - "3": { - "tag": "${dependent}:garlic" - }, - "4": { - "tag": "${dependent}:greenonions" - }, - "5": { - "tag": "${dependent}:bellpeppers" - }, - "6": { - "item": "minecraft:carrot" - } + "1": "#${dependent}:broccoli", + "2": "#${dependent}:olive_oils", + "3": "#${dependent}:garlic", + "4": "#${dependent}:greenonions", + "5": "#${dependent}:bellpeppers", + "6": "minecraft:carrot" }, "result": { "id": "croptopia:stir_fry", diff --git a/src/main/resources/data/croptopia/recipe/shaped_stuffed_artichoke.json b/src/main/resources/data/croptopia/recipe/shaped_stuffed_artichoke.json index 9cd70f8fa..ce05a1e1b 100644 --- a/src/main/resources/data/croptopia/recipe/shaped_stuffed_artichoke.json +++ b/src/main/resources/data/croptopia/recipe/shaped_stuffed_artichoke.json @@ -6,30 +6,14 @@ "7 8" ], "key": { - "1": { - "tag": "${dependent}:artichokes" - }, - "2": { - "item": "croptopia:pepper" - }, - "3": { - "tag": "${dependent}:lemons" - }, - "4": { - "item": "minecraft:bread" - }, - "5": { - "tag": "${dependent}:cheeses" - }, - "6": { - "tag": "${dependent}:olive_oils" - }, - "7": { - "tag": "${dependent}:salts" - }, - "8": { - "item": "croptopia:frying_pan" - } + "1": "#${dependent}:artichokes", + "2": "croptopia:pepper", + "3": "#${dependent}:lemons", + "4": "minecraft:bread", + "5": "#${dependent}:cheeses", + "6": "#${dependent}:olive_oils", + "7": "#${dependent}:salts", + "8": "croptopia:frying_pan" }, "result": { "id": "croptopia:stuffed_artichoke", diff --git a/src/main/resources/data/croptopia/recipe/shaped_tea.json b/src/main/resources/data/croptopia/recipe/shaped_tea.json index 6b75b074b..57a806c83 100644 --- a/src/main/resources/data/croptopia/recipe/shaped_tea.json +++ b/src/main/resources/data/croptopia/recipe/shaped_tea.json @@ -6,12 +6,8 @@ " 1 " ], "key": { - "1": { - "tag": "${dependent}:water_bottles" - }, - "2": { - "tag": "${dependent}:tea_leaves" - } + "1": "#${dependent}:water_bottles", + "2": "#${dependent}:tea_leaves" }, "result": { "id": "croptopia:tea", diff --git a/src/main/resources/data/croptopia/recipe/shaped_toast_sandwich.json b/src/main/resources/data/croptopia/recipe/shaped_toast_sandwich.json index 76ff268b2..1519dedc5 100644 --- a/src/main/resources/data/croptopia/recipe/shaped_toast_sandwich.json +++ b/src/main/resources/data/croptopia/recipe/shaped_toast_sandwich.json @@ -4,12 +4,8 @@ "121" ], "key": { - "1": { - "item": "minecraft:bread" - }, - "2": { - "item": "croptopia:buttered_toast" - } + "1": "minecraft:bread", + "2": "croptopia:buttered_toast" }, "result": { "id": "croptopia:toast_sandwich", diff --git a/src/main/resources/data/croptopia/recipe/shaped_treacle_tart.json b/src/main/resources/data/croptopia/recipe/shaped_treacle_tart.json index 90bf6a092..3f98d8c99 100644 --- a/src/main/resources/data/croptopia/recipe/shaped_treacle_tart.json +++ b/src/main/resources/data/croptopia/recipe/shaped_treacle_tart.json @@ -5,18 +5,10 @@ "111" ], "key": { - "1": { - "item": "minecraft:bread" - }, - "2": { - "item": "minecraft:honey_bottle" - }, - "3": { - "tag": "${dependent}:lemons" - }, - "4": { - "item": "croptopia:whipping_cream" - } + "1": "minecraft:bread", + "2": "minecraft:honey_bottle", + "3": "#${dependent}:lemons", + "4": "croptopia:whipping_cream" }, "result": { "id": "croptopia:treacle_tart", diff --git a/src/main/resources/data/croptopia/recipe/shaped_trifle.json b/src/main/resources/data/croptopia/recipe/shaped_trifle.json index a0ad2e6cf..d488167fd 100644 --- a/src/main/resources/data/croptopia/recipe/shaped_trifle.json +++ b/src/main/resources/data/croptopia/recipe/shaped_trifle.json @@ -6,27 +6,13 @@ "123" ], "key": { - "1": { - "item": "minecraft:egg" - }, - "2": { - "tag": "${dependent}:milks" - }, - "3": { - "tag": "${dependent}:vanilla" - }, - "4": { - "tag": "${dependent}:wines" - }, - "5": { - "tag": "${dependent}:strawberries" - }, - "6": { - "item": "minecraft:bread" - }, - "7": { - "tag": "${dependent}:butters" - } + "1": "minecraft:egg", + "2": "#${dependent}:milks", + "3": "#${dependent}:vanilla", + "4": "#${dependent}:wines", + "5": "#${dependent}:strawberries", + "6": "minecraft:bread", + "7": "#${dependent}:butters" }, "result": { "id": "croptopia:trifle", diff --git a/src/main/resources/data/croptopia/recipe/shaped_water_bottle.json b/src/main/resources/data/croptopia/recipe/shaped_water_bottle.json index 5998b6a64..83c2da256 100644 --- a/src/main/resources/data/croptopia/recipe/shaped_water_bottle.json +++ b/src/main/resources/data/croptopia/recipe/shaped_water_bottle.json @@ -6,12 +6,8 @@ " 2 " ], "key": { - "1": { - "item": "minecraft:water_bucket" - }, - "2": { - "item": "minecraft:glass" - } + "1": "minecraft:water_bucket", + "2": "minecraft:glass" }, "result": { "id": "croptopia:water_bottle", diff --git a/src/main/resources/data/croptopia/recipe/snicker_doodle.json b/src/main/resources/data/croptopia/recipe/snicker_doodle.json index cee9829cf..8b3ab457e 100644 --- a/src/main/resources/data/croptopia/recipe/snicker_doodle.json +++ b/src/main/resources/data/croptopia/recipe/snicker_doodle.json @@ -1,15 +1,9 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "item": "croptopia:cinnamon" - }, - { - "item": "minecraft:sugar" - }, - { - "tag": "${dependent}:flour" - } + "croptopia:cinnamon", + "minecraft:sugar", + "#${dependent}:flour" ], "result": { "id": "croptopia:snicker_doodle", diff --git a/src/main/resources/data/croptopia/recipe/soy_milk.json b/src/main/resources/data/croptopia/recipe/soy_milk.json index 46dd029bd..9ff4b1bf9 100644 --- a/src/main/resources/data/croptopia/recipe/soy_milk.json +++ b/src/main/resources/data/croptopia/recipe/soy_milk.json @@ -1,15 +1,9 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "item": "minecraft:glass_bottle" - }, - { - "tag": "${dependent}:soybeans" - }, - { - "item": "croptopia:food_press" - } + "minecraft:glass_bottle", + "#${dependent}:soybeans", + "croptopia:food_press" ], "result": { "id": "croptopia:soy_milk", diff --git a/src/main/resources/data/croptopia/recipe/soy_sauce.json b/src/main/resources/data/croptopia/recipe/soy_sauce.json index c246f8b86..95319140e 100644 --- a/src/main/resources/data/croptopia/recipe/soy_sauce.json +++ b/src/main/resources/data/croptopia/recipe/soy_sauce.json @@ -1,15 +1,9 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "item": "croptopia:food_press" - }, - { - "tag": "${dependent}:soybeans" - }, - { - "tag": "${dependent}:water_bottles" - } + "croptopia:food_press", + "#${dependent}:soybeans", + "#${dependent}:water_bottles" ], "result": { "id": "croptopia:soy_sauce", diff --git a/src/main/resources/data/croptopia/recipe/spaghetti_squash.json b/src/main/resources/data/croptopia/recipe/spaghetti_squash.json index cd5f27303..667cc0d42 100644 --- a/src/main/resources/data/croptopia/recipe/spaghetti_squash.json +++ b/src/main/resources/data/croptopia/recipe/spaghetti_squash.json @@ -1,18 +1,10 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "tag": "${dependent}:squashes" - }, - { - "tag": "${dependent}:chile_peppers" - }, - { - "tag": "${dependent}:olive_oils" - }, - { - "item": "croptopia:frying_pan" - } + "#${dependent}:squashes", + "#${dependent}:chile_peppers", + "#${dependent}:olive_oils", + "croptopia:frying_pan" ], "result": { "id": "croptopia:spaghetti_squash", diff --git a/src/main/resources/data/croptopia/recipe/steamed_rice.json b/src/main/resources/data/croptopia/recipe/steamed_rice.json index 4ab26e485..15999652b 100644 --- a/src/main/resources/data/croptopia/recipe/steamed_rice.json +++ b/src/main/resources/data/croptopia/recipe/steamed_rice.json @@ -1,18 +1,10 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "tag": "${dependent}:rice" - }, - { - "item": "croptopia:cooking_pot" - }, - { - "tag": "${dependent}:salts" - }, - { - "tag": "${dependent}:water_bottles" - } + "#${dependent}:rice", + "croptopia:cooking_pot", + "#${dependent}:salts", + "#${dependent}:water_bottles" ], "result": { "id": "croptopia:steamed_rice", diff --git a/src/main/resources/data/croptopia/recipe/stuffed_poblanos.json b/src/main/resources/data/croptopia/recipe/stuffed_poblanos.json index 5584b595c..31cc5976d 100644 --- a/src/main/resources/data/croptopia/recipe/stuffed_poblanos.json +++ b/src/main/resources/data/croptopia/recipe/stuffed_poblanos.json @@ -1,27 +1,13 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "tag": "croptopia:beef_replacements" - }, - { - "tag": "${dependent}:chile_peppers" - }, - { - "tag": "${dependent}:blackbeans" - }, - { - "tag": "${dependent}:corn" - }, - { - "tag": "${dependent}:cheeses" - }, - { - "tag": "${dependent}:rice" - }, - { - "item": "croptopia:cooking_pot" - } + "#croptopia:beef_replacements", + "#${dependent}:chile_peppers", + "#${dependent}:blackbeans", + "#${dependent}:corn", + "#${dependent}:cheeses", + "#${dependent}:rice", + "croptopia:cooking_pot" ], "result": { "id": "croptopia:stuffed_poblanos", diff --git a/src/main/resources/data/croptopia/recipe/supreme_pizza.json b/src/main/resources/data/croptopia/recipe/supreme_pizza.json index 9fc7ce0f6..251c1da7c 100644 --- a/src/main/resources/data/croptopia/recipe/supreme_pizza.json +++ b/src/main/resources/data/croptopia/recipe/supreme_pizza.json @@ -1,27 +1,13 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "tag": "${dependent}:doughs" - }, - { - "tag": "${dependent}:cheeses" - }, - { - "tag": "${dependent}:tomatoes" - }, - { - "tag": "${dependent}:bellpeppers" - }, - { - "tag": "${dependent}:olives" - }, - { - "tag": "croptopia:meat_replacements" - }, - { - "item": "croptopia:frying_pan" - } + "#${dependent}:doughs", + "#${dependent}:cheeses", + "#${dependent}:tomatoes", + "#${dependent}:bellpeppers", + "#${dependent}:olives", + "#croptopia:meat_replacements", + "croptopia:frying_pan" ], "result": { "id": "croptopia:supreme_pizza", diff --git a/src/main/resources/data/croptopia/recipe/sushi.json b/src/main/resources/data/croptopia/recipe/sushi.json index b2adcc788..55217cd0e 100644 --- a/src/main/resources/data/croptopia/recipe/sushi.json +++ b/src/main/resources/data/croptopia/recipe/sushi.json @@ -1,15 +1,9 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "item": "minecraft:seagrass" - }, - { - "tag": "croptopia:fishes" - }, - { - "tag": "${dependent}:rice" - } + "minecraft:seagrass", + "#croptopia:fishes", + "#${dependent}:rice" ], "result": { "id": "croptopia:sushi", diff --git a/src/main/resources/data/croptopia/recipe/sweet_potato_fries.json b/src/main/resources/data/croptopia/recipe/sweet_potato_fries.json index 8752ab478..08a065878 100644 --- a/src/main/resources/data/croptopia/recipe/sweet_potato_fries.json +++ b/src/main/resources/data/croptopia/recipe/sweet_potato_fries.json @@ -1,18 +1,10 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "tag": "${dependent}:sweetpotatos" - }, - { - "item": "croptopia:cooking_pot" - }, - { - "tag": "${dependent}:salts" - }, - { - "tag": "${dependent}:olive_oils" - } + "#${dependent}:sweetpotatos", + "croptopia:cooking_pot", + "#${dependent}:salts", + "#${dependent}:olive_oils" ], "result": { "id": "croptopia:sweet_potato_fries", diff --git a/src/main/resources/data/croptopia/recipe/taco.json b/src/main/resources/data/croptopia/recipe/taco.json index 7aae8948a..8f4edea71 100644 --- a/src/main/resources/data/croptopia/recipe/taco.json +++ b/src/main/resources/data/croptopia/recipe/taco.json @@ -1,21 +1,11 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "tag": "${dependent}:tortillas" - }, - { - "tag": "${dependent}:cheeses" - }, - { - "tag": "${dependent}:lettuce" - }, - { - "item": "croptopia:salsa" - }, - { - "tag": "croptopia:meat_replacements" - } + "#${dependent}:tortillas", + "#${dependent}:cheeses", + "#${dependent}:lettuce", + "croptopia:salsa", + "#croptopia:meat_replacements" ], "result": { "id": "croptopia:taco", diff --git a/src/main/resources/data/croptopia/recipe/tamales.json b/src/main/resources/data/croptopia/recipe/tamales.json index c8cdb1a4b..f1990c53f 100644 --- a/src/main/resources/data/croptopia/recipe/tamales.json +++ b/src/main/resources/data/croptopia/recipe/tamales.json @@ -1,27 +1,13 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "item": "minecraft:chicken" - }, - { - "tag": "${dependent}:onions" - }, - { - "item": "croptopia:corn_husk" - }, - { - "tag": "${dependent}:flour" - }, - { - "tag": "${dependent}:salts" - }, - { - "tag": "${dependent}:chile_peppers" - }, - { - "item": "croptopia:cooking_pot" - } + "minecraft:chicken", + "#${dependent}:onions", + "croptopia:corn_husk", + "#${dependent}:flour", + "#${dependent}:salts", + "#${dependent}:chile_peppers", + "croptopia:cooking_pot" ], "result": { "id": "croptopia:tamales", diff --git a/src/main/resources/data/croptopia/recipe/toast_with_jam.json b/src/main/resources/data/croptopia/recipe/toast_with_jam.json index 87e999c93..d6e9ca917 100644 --- a/src/main/resources/data/croptopia/recipe/toast_with_jam.json +++ b/src/main/resources/data/croptopia/recipe/toast_with_jam.json @@ -1,12 +1,8 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "tag": "${dependent}:toasts" - }, - { - "tag": "${dependent}:jams" - } + "#${dependent}:toasts", + "#${dependent}:jams" ], "result": { "id": "croptopia:toast_with_jam", diff --git a/src/main/resources/data/croptopia/recipe/tofu.json b/src/main/resources/data/croptopia/recipe/tofu.json index ca77ecdd1..f485d673a 100644 --- a/src/main/resources/data/croptopia/recipe/tofu.json +++ b/src/main/resources/data/croptopia/recipe/tofu.json @@ -1,15 +1,9 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "item": "croptopia:cooking_pot" - }, - { - "tag": "${dependent}:water_bottles" - }, - { - "tag": "${dependent}:soybeans" - } + "croptopia:cooking_pot", + "#${dependent}:water_bottles", + "#${dependent}:soybeans" ], "result": { "id": "croptopia:tofu", diff --git a/src/main/resources/data/croptopia/recipe/tofu_and_dumplings.json b/src/main/resources/data/croptopia/recipe/tofu_and_dumplings.json index 623168971..c8bc5c883 100644 --- a/src/main/resources/data/croptopia/recipe/tofu_and_dumplings.json +++ b/src/main/resources/data/croptopia/recipe/tofu_and_dumplings.json @@ -1,18 +1,10 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "tag": "${dependent}:doughs" - }, - { - "tag": "${dependent}:chile_peppers" - }, - { - "tag": "${dependent}:tofu" - }, - { - "item": "croptopia:cooking_pot" - } + "#${dependent}:doughs", + "#${dependent}:chile_peppers", + "#${dependent}:tofu", + "croptopia:cooking_pot" ], "result": { "id": "croptopia:tofu_and_dumplings", diff --git a/src/main/resources/data/croptopia/recipe/tofuburger.json b/src/main/resources/data/croptopia/recipe/tofuburger.json index 8d88db86c..a07bdfd44 100644 --- a/src/main/resources/data/croptopia/recipe/tofuburger.json +++ b/src/main/resources/data/croptopia/recipe/tofuburger.json @@ -1,21 +1,11 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "item": "minecraft:bread" - }, - { - "tag": "${dependent}:lettuce" - }, - { - "item": "croptopia:frying_pan" - }, - { - "tag": "${dependent}:tofu" - }, - { - "tag": "${dependent}:onions" - } + "minecraft:bread", + "#${dependent}:lettuce", + "croptopia:frying_pan", + "#${dependent}:tofu", + "#${dependent}:onions" ], "result": { "id": "croptopia:tofuburger", diff --git a/src/main/resources/data/croptopia/recipe/tostada.json b/src/main/resources/data/croptopia/recipe/tostada.json index bca59c17e..e93e802fb 100644 --- a/src/main/resources/data/croptopia/recipe/tostada.json +++ b/src/main/resources/data/croptopia/recipe/tostada.json @@ -1,21 +1,11 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "tag": "${dependent}:blackbeans" - }, - { - "tag": "${dependent}:blackbeans" - }, - { - "tag": "${dependent}:tomatoes" - }, - { - "tag": "${dependent}:lettuce" - }, - { - "tag": "${dependent}:tortillas" - } + "#${dependent}:blackbeans", + "#${dependent}:blackbeans", + "#${dependent}:tomatoes", + "#${dependent}:lettuce", + "#${dependent}:tortillas" ], "result": { "id": "croptopia:tostada", diff --git a/src/main/resources/data/croptopia/recipe/trail_mix.json b/src/main/resources/data/croptopia/recipe/trail_mix.json index ef99a99e5..47aa51f19 100644 --- a/src/main/resources/data/croptopia/recipe/trail_mix.json +++ b/src/main/resources/data/croptopia/recipe/trail_mix.json @@ -1,24 +1,12 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "tag": "${dependent}:nuts" - }, - { - "tag": "${dependent}:nuts" - }, - { - "tag": "${dependent}:nuts" - }, - { - "tag": "${dependent}:raisins" - }, - { - "tag": "${dependent}:salts" - }, - { - "tag": "${dependent}:chocolates" - } + "#${dependent}:nuts", + "#${dependent}:nuts", + "#${dependent}:nuts", + "#${dependent}:raisins", + "#${dependent}:salts", + "#${dependent}:chocolates" ], "result": { "id": "croptopia:trail_mix", diff --git a/src/main/resources/data/croptopia/recipe/tres_leche_cake.json b/src/main/resources/data/croptopia/recipe/tres_leche_cake.json index 44942a111..806ff1d89 100644 --- a/src/main/resources/data/croptopia/recipe/tres_leche_cake.json +++ b/src/main/resources/data/croptopia/recipe/tres_leche_cake.json @@ -1,27 +1,13 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "item": "minecraft:egg" - }, - { - "item": "minecraft:sugar" - }, - { - "tag": "${dependent}:milks" - }, - { - "tag": "${dependent}:flour" - }, - { - "tag": "${dependent}:vanilla" - }, - { - "tag": "${dependent}:rums" - }, - { - "item": "croptopia:whipping_cream" - } + "minecraft:egg", + "minecraft:sugar", + "#${dependent}:milks", + "#${dependent}:flour", + "#${dependent}:vanilla", + "#${dependent}:rums", + "croptopia:whipping_cream" ], "result": { "id": "croptopia:tres_leche_cake", diff --git a/src/main/resources/data/croptopia/recipe/veggie_salad.json b/src/main/resources/data/croptopia/recipe/veggie_salad.json index a65948073..b2905abb9 100644 --- a/src/main/resources/data/croptopia/recipe/veggie_salad.json +++ b/src/main/resources/data/croptopia/recipe/veggie_salad.json @@ -1,21 +1,11 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "item": "minecraft:bowl" - }, - { - "tag": "${dependent}:cucumbers" - }, - { - "item": "minecraft:carrot" - }, - { - "tag": "${dependent}:corn" - }, - { - "tag": "${dependent}:lettuce" - } + "minecraft:bowl", + "#${dependent}:cucumbers", + "minecraft:carrot", + "#${dependent}:corn", + "#${dependent}:lettuce" ], "result": { "id": "croptopia:veggie_salad", diff --git a/src/main/resources/data/croptopia/recipe/whipping_cream.json b/src/main/resources/data/croptopia/recipe/whipping_cream.json index fa707a082..b0579d0c3 100644 --- a/src/main/resources/data/croptopia/recipe/whipping_cream.json +++ b/src/main/resources/data/croptopia/recipe/whipping_cream.json @@ -1,15 +1,9 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "tag": "${dependent}:milks" - }, - { - "item": "minecraft:sugar" - }, - { - "tag": "${dependent}:vanilla" - } + "#${dependent}:milks", + "minecraft:sugar", + "#${dependent}:vanilla" ], "result": { "id": "croptopia:whipping_cream", diff --git a/src/main/resources/data/croptopia/recipe/wine.json b/src/main/resources/data/croptopia/recipe/wine.json index 428e136be..67fb206c6 100644 --- a/src/main/resources/data/croptopia/recipe/wine.json +++ b/src/main/resources/data/croptopia/recipe/wine.json @@ -1,18 +1,10 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "item": "minecraft:glass_bottle" - }, - { - "tag": "${dependent}:grapes" - }, - { - "tag": "${dependent}:grapes" - }, - { - "item": "croptopia:food_press" - } + "minecraft:glass_bottle", + "#${dependent}:grapes", + "#${dependent}:grapes", + "croptopia:food_press" ], "result": { "id": "croptopia:wine", diff --git a/src/main/resources/data/croptopia/recipe/yam_jam.json b/src/main/resources/data/croptopia/recipe/yam_jam.json index 939ba7057..45594543a 100644 --- a/src/main/resources/data/croptopia/recipe/yam_jam.json +++ b/src/main/resources/data/croptopia/recipe/yam_jam.json @@ -1,18 +1,10 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "tag": "${dependent}:yams" - }, - { - "tag": "${dependent}:vanilla" - }, - { - "tag": "${dependent}:milks" - }, - { - "tag": "${dependent}:milks" - } + "#${dependent}:yams", + "#${dependent}:vanilla", + "#${dependent}:milks", + "#${dependent}:milks" ], "result": { "id": "croptopia:yam_jam", diff --git a/src/main/resources/data/croptopia/recipe/yoghurt.json b/src/main/resources/data/croptopia/recipe/yoghurt.json index b3b003538..fd66e7df8 100644 --- a/src/main/resources/data/croptopia/recipe/yoghurt.json +++ b/src/main/resources/data/croptopia/recipe/yoghurt.json @@ -1,15 +1,9 @@ { "type": "minecraft:crafting_shapeless", "ingredients": [ - { - "item": "minecraft:bowl" - }, - { - "tag": "${dependent}:milks" - }, - { - "tag": "${dependent}:strawberries" - } + "minecraft:bowl", + "#${dependent}:milks", + "#${dependent}:strawberries" ], "result": { "id": "croptopia:yoghurt",