diff --git a/README.md b/README.md index 912889fc..73a7346e 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Growthcraft 9 for Minecraft 1.20.1 (Forge) -[![Growthcraft Version](https://img.shields.io/badge/Growthcraft-9.0.5-orange.svg)](https://github.com/GrowthcraftCE/Growthcraft-1.20) +[![Growthcraft Version](https://img.shields.io/badge/Growthcraft-9.0.6-orange.svg)](https://github.com/GrowthcraftCE/Growthcraft-1.20) [![](http://cf.way2muchnoise.eu/versions/growthcraft-community-edition_latest.svg)](https://minecraft.curseforge.com/projects/growthcraft-community-edition/) [![](http://cf.way2muchnoise.eu/short_growthcraft-community-edition.svg)](https://minecraft.curseforge.com/projects/growthcraft-community-edition/) [![Forge Version](https://img.shields.io/badge/Minecraft%20Forge-47.1.1-yellow.svg)](http://files.minecraftforge.net/maven/net/minecraftforge/forge/index_1.20.1.html) @@ -14,15 +14,16 @@ world of Minecraft. Growthcraft adds the ability to grow Apple tress, collect ho ## Getting Started -There are multiple starting points to Growthcraft. As we continue to develop and expand Growthcraft, we will be adding to our GitHub wiki documentation. +There are multiple starting points to Growthcraft. As we continue to develop and expand Growthcraft, we will be adding +to our GitHub wiki documentation. As of version 9 we have included an in-game manual. ## History ### Growthcraft 9 (Minecraft 1.20.1) End of Support: TBD -Latest Version: 9.0.5 -Stable Version: TBD +Latest Version: 9.0.7 +Stable Version: 9.0.6 ### Growthcraft 8 (Minecraft 1.19.4) @@ -41,7 +42,7 @@ Stable Version: TBD Going from Minecraft Forge 1.12 to 1.16 made a lot of changes to the MCP mappings to the point that it prompted a complete rewrite from the ground. -End of Support: TBD +End of Support: 31 DEC 2023 Latest Version: 6.1.4 Stable Version: 6.1.4 diff --git a/gradle.properties b/gradle.properties index c03c4a0f..eec9de74 100644 --- a/gradle.properties +++ b/gradle.properties @@ -21,7 +21,7 @@ mod_id=growthcraft mod_archive_base=growthcraft mod_name=Growthcraft mod_license=GNU General Public License v3.0 -mod_version=9.0.5 +mod_version=9.0.6 mod_group_id=growthcraft mod_authors=Alatyami mod_description=Growthcraft is a realistic and immersive Forge mod that adds various new elements to the game of Minecraft. diff --git a/src/main/java/growthcraft/core/shared/Reference.java b/src/main/java/growthcraft/core/shared/Reference.java index bedc0ba0..f8608451 100644 --- a/src/main/java/growthcraft/core/shared/Reference.java +++ b/src/main/java/growthcraft/core/shared/Reference.java @@ -6,7 +6,7 @@ public class Reference { public static final String MODID = "growthcraft"; public static final String NAME = "Growthcraft"; public static final String NAME_SHORT = "core"; - public static final String VERSION = "9.0.5"; + public static final String VERSION = "9.0.6"; private Reference() { /* Prevent default public constructor */ } diff --git a/src/main/java/growthcraft/rice/init/GrowthcraftRiceItems.java b/src/main/java/growthcraft/rice/init/GrowthcraftRiceItems.java index c48fe159..1d768b66 100644 --- a/src/main/java/growthcraft/rice/init/GrowthcraftRiceItems.java +++ b/src/main/java/growthcraft/rice/init/GrowthcraftRiceItems.java @@ -49,6 +49,10 @@ public class GrowthcraftRiceItems { GrowthcraftFoodItem::new ); + public static final RegistryObject YEAST_SEISHU = ITEMS.register( + Reference.UnlocalizedName.YEAST_SEISHU, GrowthcraftItem::new + ); + public static void registerCompostables() { float f = 0.3F; float f1 = 0.5F; @@ -61,7 +65,7 @@ public static void registerCompostables() { ComposterBlock.COMPOSTABLES.put(GrowthcraftRiceItems.RICE_COOKED.get(), f3); ComposterBlock.COMPOSTABLES.put(GrowthcraftRiceItems.RICE_STALK.get(), f1); ComposterBlock.COMPOSTABLES.put(GrowthcraftRiceItems.SUSHI_ROLL.get(), f4); - + ComposterBlock.COMPOSTABLES.put(GrowthcraftRiceItems.YEAST_SEISHU.get(), f4); } public static boolean excludeItemRegistry(ResourceLocation registryName) { diff --git a/src/main/java/growthcraft/rice/shared/Reference.java b/src/main/java/growthcraft/rice/shared/Reference.java index 5dd54261..95062db7 100644 --- a/src/main/java/growthcraft/rice/shared/Reference.java +++ b/src/main/java/growthcraft/rice/shared/Reference.java @@ -26,6 +26,7 @@ public static class UnlocalizedName { public static final String RICE_WATER = "rice_water"; public static final String RICE_WINE = "rice_wine"; public static final String SAKE = "sake"; + public static final String YEAST_SEISHU = "yeast_seishu"; private UnlocalizedName() { /* Disable Automatic Creation of Public Constructor */ diff --git a/src/main/resources/assets/growthcraft/patchouli_books/growthcraft/en_us/categories/mystical_agriculture.json b/src/main/resources/assets/growthcraft/patchouli_books/growthcraft/en_us/categories/mystical_agriculture.json new file mode 100644 index 00000000..d4968787 --- /dev/null +++ b/src/main/resources/assets/growthcraft/patchouli_books/growthcraft/en_us/categories/mystical_agriculture.json @@ -0,0 +1,7 @@ +{ + "name": "Mystical Agriculture", + "flag": "mod:mysticalagriculture", + "description": "We see that you have Mystical Agriculture. As a result, you can grow your Growthcraft resources!", + "icon": "mysticalagriculture:textures/item/guide_book.png", + "sortnum": 8 +} \ No newline at end of file diff --git a/src/main/resources/assets/growthcraft/patchouli_books/growthcraft/en_us/categories/rice.json b/src/main/resources/assets/growthcraft/patchouli_books/growthcraft/en_us/categories/rice.json index 469a3a8b..c68ef5cb 100644 --- a/src/main/resources/assets/growthcraft/patchouli_books/growthcraft/en_us/categories/rice.json +++ b/src/main/resources/assets/growthcraft/patchouli_books/growthcraft/en_us/categories/rice.json @@ -1,6 +1,6 @@ { "name": "Growthcraft Rice", - "description": "Welcome to rice...", + "description": "Rice is a widely consumed cereal grain, cultivated in diverse varieties globally. It serves as a dietary staple for many cultures, featuring in dishes like sushi, biryani, and risotto. This versatile grain's neutral taste and adaptability have made it a fundamental source of sustenance and culinary creativity.", "icon": "growthcraft_rice:textures/item/rice_stalk.png", "sortnum": 6 } \ No newline at end of file diff --git a/src/main/resources/assets/growthcraft/patchouli_books/growthcraft/en_us/entries/mystical_agriculture/mystical_agriculture.json b/src/main/resources/assets/growthcraft/patchouli_books/growthcraft/en_us/entries/mystical_agriculture/mystical_agriculture.json new file mode 100644 index 00000000..2c135682 --- /dev/null +++ b/src/main/resources/assets/growthcraft/patchouli_books/growthcraft/en_us/entries/mystical_agriculture/mystical_agriculture.json @@ -0,0 +1,94 @@ +{ + "name": "Mystical Agriculture", + "icon": "mysticalagriculture:textures/item/guide_book.png", + "category": "growthcraft:mystical_agriculture", + "sortnum": 1, + "pages": [ + { + "type": "patchouli:crafting", + "title": "Growthcraft", + "recipe": "growthcraft:mystical_agriculture/mystical_agriculture_rope_linen", + "recipe2": "growthcraft:mystical_agriculture/mystical_agriculture_salt" + }, + { + "type": "patchouli:crafting", + "title": "Growthcraft Apiary", + "recipe": "growthcraft_apiary:mystical_agriculture/mystical_agriculture_bee" + }, + { + "type": "patchouli:crafting", + "title": "Growthcraft Apples", + "recipe": "growthcraft_apples:mystical_agriculture/mystical_agriculture_apple_log" + }, + { + "type": "patchouli:crafting", + "title": "Growthcraft Cellar", + "recipe": "growthcraft_cellar:mystical_agriculture/mystical_agriculture_grain", + "recipe2": "growthcraft_cellar:mystical_agriculture/mystical_agriculture_grain_pale_golden" + }, + { + "type": "patchouli:crafting", + "title": "Growthcraft Cellar", + "recipe": "growthcraft_cellar:mystical_agriculture/mystical_agriculture_grain_golden", + "recipe2": "growthcraft_cellar:mystical_agriculture/mystical_agriculture_grain_amber" + }, + { + "type": "patchouli:crafting", + "title": "Growthcraft Cellar", + "recipe": "growthcraft_cellar:mystical_agriculture/mystical_agriculture_grain_deep_amber", + "recipe2": "growthcraft_cellar:mystical_agriculture/mystical_agriculture_grain_copper" + }, + { + "type": "patchouli:crafting", + "title": "Growthcraft Cellar", + "recipe": "growthcraft_cellar:mystical_agriculture/mystical_agriculture_grain_deep_copper", + "recipe2": "growthcraft_cellar:mystical_agriculture/mystical_agriculture_grain_brown" + }, + { + "type": "patchouli:crafting", + "title": "Growthcraft Cellar", + "recipe": "growthcraft_cellar:mystical_agriculture/mystical_agriculture_grain_dark", + "recipe2": "growthcraft_cellar:mystical_agriculture/mystical_agriculture_hops" + }, + { + "type": "patchouli:crafting", + "title": "Growthcraft Cellar", + "recipe": "growthcraft_cellar:mystical_agriculture/mystical_agriculture_purple_grapes", + "recipe2": "growthcraft_cellar:mystical_agriculture/mystical_agriculture_red_grapes" + }, + { + "type": "patchouli:crafting", + "title": "Growthcraft Cellar", + "recipe": "growthcraft_cellar:mystical_agriculture/mystical_agriculture_white_grapes", + "recipe2": "growthcraft_cellar:mystical_agriculture/mystical_agriculture_yeast_bayanus" + }, + { + "type": "patchouli:crafting", + "title": "Growthcraft Cellar", + "recipe": "growthcraft_cellar:mystical_agriculture/mystical_agriculture_yeast_brewers", + "recipe2": "growthcraft_cellar:mystical_agriculture/mystical_agriculture_yeast_lager" + }, + { + "type": "patchouli:crafting", + "title": "Growthcraft Cellar", + "recipe": "growthcraft_cellar:mystical_agriculture/mystical_agriculture_yeast_seishu", + "recipe2": "growthcraft_cellar:mystical_agriculture/mystical_agriculture_yeast_ethereal" + }, + { + "type": "patchouli:crafting", + "title": "Growthcraft Milk", + "recipe": "growthcraft_milk:mystical_agriculture/mystical_agriculture_bucket_of_milk", + "recipe2": "growthcraft_milk:mystical_agriculture/mystical_agriculture_starter_culture" + }, + { + "type": "patchouli:crafting", + "title": "Growthcraft Milk", + "recipe": "growthcraft_milk:mystical_agriculture/mystical_agriculture_stomach" + }, + { + "type": "patchouli:crafting", + "title": "Growthcraft Rice", + "recipe": "growthcraft_rice:mystical_agriculture/mystical_agriculture_rice" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/growthcraft/patchouli_books/growthcraft/en_us/entries/rice/cultivated_farmland.json b/src/main/resources/assets/growthcraft/patchouli_books/growthcraft/en_us/entries/rice/cultivated_farmland.json new file mode 100644 index 00000000..cfef1760 --- /dev/null +++ b/src/main/resources/assets/growthcraft/patchouli_books/growthcraft/en_us/entries/rice/cultivated_farmland.json @@ -0,0 +1,37 @@ +{ + "name": "Cultivated Farmland", + "icon": "growthcraft_rice:cultivated_farmland", + "category": "growthcraft:rice", + "sortnum": 1, + "pages": [ + { + "type": "patchouli:text", + "text": "The history of cultivating farmland is a testament to humanity's ingenuity and its ability to adapt and harness the Earth's resources for sustenance. Dating back over 10,000 years, the origins of agriculture can be traced to ancient civilizations such as the Sumerians, Egyptians, and Chinese, who first tamed and cultivated wild plants and grains." + }, + { + "type": "patchouli:text", + "title": " ", + "text": "$(br)The Neolithic Revolution marked a pivotal moment when humans transitioned from nomadic hunting and gathering to settled farming, leading to the development of permanent settlements and the growth of early civilizations. Over the millennia, farming practices evolved, with innovations like the plow and irrigation systems boosting agricultural" + }, + { + "type": "patchouli:text", + "title": " ", + "text": "productivity. The agricultural revolution fueled population growth, trade, and the emergence of complex societies, ultimately shaping the course of human history and laying the foundation for modern agriculture as we know it today." + }, + { + "type": "patchouli:crafting", + "recipe": "growthcraft_rice:cultivator", + "text": "To convert your farmland into Cultivated Farmland, you must first craft the cultivator." + }, + { + "type": "patchouli:spotlight", + "item": "growthcraft_rice:cultivated_farmland", + "text": "Now that you have a Cultivator, you can use it on farmland to convert it to cultivated farmland. The cultivated farmland must be near a water source so the it can naturally flood and be ready for you to plant rice on it. If you are impatient, you can use a water bucket bucket on it to instantly flood it." + }, + { + "type": "patchouli:spotlight", + "item": "growthcraft_rice:rice_stalk", + "text": "Once you see that there is a layer of water on top of the farmland, plant your crops that require cultivated farmland.$(br2)Rice grows at about the same rate as wheat." + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/growthcraft/patchouli_books/growthcraft/en_us/entries/rice/fermenting_rice.json b/src/main/resources/assets/growthcraft/patchouli_books/growthcraft/en_us/entries/rice/fermenting_rice.json new file mode 100644 index 00000000..d2d4a7bd --- /dev/null +++ b/src/main/resources/assets/growthcraft/patchouli_books/growthcraft/en_us/entries/rice/fermenting_rice.json @@ -0,0 +1,39 @@ +{ + "name": "Fermenting with Rice", + "icon": "growthcraft_rice:sake_fluid_bucket", + "category": "growthcraft:rice", + "sortnum": 3, + "pages": [ + { + "type": "patchouli:text", + "text": "The history of fermenting rice into drinks is a global narrative that transcends cultures and spans millennia. This practice likely began independently in various regions where rice was a staple crop, including Asia, Africa, and parts of the Americas. In Asia, rice-based alcoholic beverages like sake in Japan, makgeolli in Korea, " + }, + { + "type": "patchouli:text", + "title": " ", + "text": "and rice wine in China have ancient origins, tracing back thousands of years. These drinks served both culinary and ceremonial purposes. In Africa, millet and sorghum-based fermented beverages, often mixed with rice when available, have been brewed for centuries by different ethnic groups. Throughout history, rice fermentation methods have evolved" + }, + { + "type": "patchouli:text", + "title": " ", + "text": "alongside cultural traditions and technological advancements, giving rise to a diverse array of rice-based drinks enjoyed worldwide, each with its unique flavors, production techniques, and significance within its respective culture." + }, + { + "type": "patchouli:text", + "title": " ", + "text": "To get started with making fermented rice drinks, you will need to make Rice Water. This is the left over fluid from brewing rice and water in the Brew Kettle.$(br2)Depending on the yeast that you use in the fermentation barrel with the Rice Water will result in either Rice Wine or Sake." + }, + { + "type": "patchouli:spotlight", + "item": "growthcraft_rice:rice_wine_fluid_bucket", + "title": "Rice Wine", + "text": "$(bold)Ingredients$()$(li)Rice Water$(li)Bayanus Yeast$(br2)$(bold)Fermentation Time$()$(li)1000 mb$(li)30 secs$(br2)$(bold)Effects$()$(li)Strength I (01:00)" + }, + { + "type": "patchouli:spotlight", + "item": "growthcraft_rice:sake_fluid_bucket", + "title": "Sake", + "text": "$(bold)Ingredients$()$(li)Rice Water$(li)Seishu Yeast$(br2)$(bold)Fermentation Time$()$(li)1000 mb$(li)45 secs$(br2)$(bold)Effects$()$(li)Strength II (05:00)" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/growthcraft/patchouli_books/growthcraft/en_us/entries/rice/rice.json b/src/main/resources/assets/growthcraft/patchouli_books/growthcraft/en_us/entries/rice/rice.json new file mode 100644 index 00000000..dab55345 --- /dev/null +++ b/src/main/resources/assets/growthcraft/patchouli_books/growthcraft/en_us/entries/rice/rice.json @@ -0,0 +1,17 @@ +{ + "name": "Cultivating Rice", + "icon": "growthcraft_rice:rice_stalk", + "category": "growthcraft:rice", + "sortnum": 2, + "pages": [ + { + "type": "patchouli:text", + "text": "The earliest evidence of rice cultivation dates back to 7000–5000 BCE in central and eastern China. The first recorded mention of rice comes from China in 2800 BC. The oldest archaeological evidence of rice use by humans has been found in the middle and lower Yangzi River Valley region of China. Phytoliths, silicon microfossils of plant cell structures," + }, + { + "type": "patchouli:text", + "title": " ", + "text": "$(br)from rice have been found at the Xianrendong and Diotonghuan sites and dated to 11,000–12,000 bc.$(br2)To start growing rice, you will need Cultivated Farmland. Planting rice onto the farmland will start the growing process. Rice grows in four stages and you can use bone meal to speed up the growth process." + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/growthcraft_rice/lang/en_us.json b/src/main/resources/assets/growthcraft_rice/lang/en_us.json index 9f91073e..06258e4b 100644 --- a/src/main/resources/assets/growthcraft_rice/lang/en_us.json +++ b/src/main/resources/assets/growthcraft_rice/lang/en_us.json @@ -12,5 +12,6 @@ "item.growthcraft_rice.rice_water_fluid_bucket": "Rice Water Bucket", "item.growthcraft_rice.rice_wine_fluid_bucket": "Rice Wine Bucket", "item.growthcraft_rice.sake_fluid_bucket": "Sake Bucket", - "item.growthcraft_rice.sushi_roll": "Sushi Roll" + "item.growthcraft_rice.sushi_roll": "Sushi Roll", + "item.growthcraft_rice.yeast_seishu": "Seishu Yeast" } \ No newline at end of file diff --git a/src/main/resources/assets/growthcraft_rice/lang/ko_kr.json b/src/main/resources/assets/growthcraft_rice/lang/ko_kr.json new file mode 100644 index 00000000..9531c847 --- /dev/null +++ b/src/main/resources/assets/growthcraft_rice/lang/ko_kr.json @@ -0,0 +1,17 @@ +{ + "block.growthcraft_rice.cultivated_farmland": "논", + "block.growthcraft_rice.rice_crop": "쌀", + "fluid_type.growthcraft_rice.rice_water_fluid": "쌀 끓인 물", + "fluid_type.growthcraft_rice.rice_wine_fluid": "Rice Wine", + "fluid_type.growthcraft_rice.sake_fluid": "청주", + "item.growthcraft_rice.cultivator": "경작기", + "item.growthcraft_rice.knife": "Knife", + "item.growthcraft_rice.rice": "쌀", + "item.growthcraft_rice.rice_cooked": "익힌 쌀", + "item.growthcraft_rice.rice_stalk": "Rice Stalk", + "item.growthcraft_rice.rice_water_fluid_bucket": "Rice Water Bucket", + "item.growthcraft_rice.rice_wine_fluid_bucket": "Rice Wine Bucket", + "item.growthcraft_rice.sake_fluid_bucket": "Sake Bucket", + "item.growthcraft_rice.sushi_roll": "Sushi Roll", + "item.growthcraft_rice.yeast_seishu": "Seishu Yeast" +} \ No newline at end of file diff --git a/src/main/resources/assets/growthcraft_rice/lang/ko_kr.lang b/src/main/resources/assets/growthcraft_rice/lang/ko_kr.lang deleted file mode 100644 index b8e57e34..00000000 --- a/src/main/resources/assets/growthcraft_rice/lang/ko_kr.lang +++ /dev/null @@ -1,20 +0,0 @@ -fluid.fluid_booze_sake_water=쌀 끓인 물 -fluid.fluid_booze_sake_mash=숙성되지 않은 청주 -fluid.fluid_booze_sake_fermented=청주 -fluid.fluid_booze_sake_potent=청주 -fluid.fluid_booze_sake_potent_extended=청주 -fluid.fluid_booze_sake_potent_hyperextended=청주 -fluid.fluid_booze_sake_extended=청주 -fluid.fluid_booze_sake_hyperextended=청주 -fluid.fluid_booze_sake_intoxicated=청주 -fluid.fluid_booze_sake_poisoned=청주 - -grc.tooltip.detailed_information= - -item.rice_cooked.name=익힌 쌀 -item.rice.name=쌀 -item.rice_ball.name=주먹밥 -item.cultivator.name=경작기 - -tile.ricepaddy.name=논 -tile.ricecrop.name=쌀 diff --git a/src/main/resources/assets/growthcraft_rice/lang/ru_ru.json b/src/main/resources/assets/growthcraft_rice/lang/ru_ru.json index 1db764fc..23270f26 100644 --- a/src/main/resources/assets/growthcraft_rice/lang/ru_ru.json +++ b/src/main/resources/assets/growthcraft_rice/lang/ru_ru.json @@ -12,5 +12,7 @@ "item.growthcraft_rice.rice_water_fluid_bucket": "Ведро рисовой воды", "item.growthcraft_rice.rice_wine_fluid_bucket": "Ведро рисового вина", "item.growthcraft_rice.sake_fluid_bucket": "Ведро саке", - "item.growthcraft_rice.sushi_roll": "Суши ролл" + "item.growthcraft_rice.sushi_roll": "Суши ролл", + "item.growthcraft_rice.yeast_seishu": "Kumamoto Yeast" + } \ No newline at end of file diff --git a/src/main/resources/assets/growthcraft_rice/lang/tr_tr.lang b/src/main/resources/assets/growthcraft_rice/lang/tr_tr.lang index 4f6c7ae9..1d77b762 100644 --- a/src/main/resources/assets/growthcraft_rice/lang/tr_tr.lang +++ b/src/main/resources/assets/growthcraft_rice/lang/tr_tr.lang @@ -18,3 +18,5 @@ item.cultivator.name=Ekici tile.ricepaddy.name=Pirinç Tarlası tile.ricecrop.name=Pirinç + "item.growthcraft_rice.yeast_seishu": "Kumamoto Yeast" + diff --git a/src/main/resources/assets/growthcraft_rice/models/item/yeast_seishu.json b/src/main/resources/assets/growthcraft_rice/models/item/yeast_seishu.json new file mode 100644 index 00000000..31de78d6 --- /dev/null +++ b/src/main/resources/assets/growthcraft_rice/models/item/yeast_seishu.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "growthcraft_rice:item/yeast_seishu" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/growthcraft_rice/textures/item/yeast_seishu.png b/src/main/resources/assets/growthcraft_rice/textures/item/yeast_seishu.png new file mode 100644 index 00000000..18e0f829 Binary files /dev/null and b/src/main/resources/assets/growthcraft_rice/textures/item/yeast_seishu.png differ diff --git a/src/main/resources/data/growthcraft/recipes/mystical_agriculture/mystical_agriculture_rope_linen.json b/src/main/resources/data/growthcraft/recipes/mystical_agriculture/mystical_agriculture_rope_linen.json new file mode 100644 index 00000000..4b1d8157 --- /dev/null +++ b/src/main/resources/data/growthcraft/recipes/mystical_agriculture/mystical_agriculture_rope_linen.json @@ -0,0 +1,30 @@ +{ + "type": "cucumber:shaped_no_mirror", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "mysticalagriculture" + }, + { + "type": "mysticalagriculture:crop_enabled", + "crop": "mysticalagriculture:honey" + } + ], + "pattern": [ + "A A", + " B ", + "A A" + ], + "key": { + "A": { + "item": "mysticalagriculture:spider_essence" + }, + "B": { + "item": "mysticalagriculture:slime_essence" + } + }, + "result": { + "item": "growthcraft:rope_linen", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/growthcraft/recipes/mystical_agriculture/mystical_agriculture_salt.json b/src/main/resources/data/growthcraft/recipes/mystical_agriculture/mystical_agriculture_salt.json new file mode 100644 index 00000000..c85b9b28 --- /dev/null +++ b/src/main/resources/data/growthcraft/recipes/mystical_agriculture/mystical_agriculture_salt.json @@ -0,0 +1,30 @@ +{ + "type": "cucumber:shaped_no_mirror", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "mysticalagriculture" + }, + { + "type": "mysticalagriculture:crop_enabled", + "crop": "mysticalagriculture:dye" + } + ], + "pattern": [ + "DSS", + "SDS", + "SSD" + ], + "key": { + "S": { + "item": "mysticalagriculture:stone_essence" + }, + "D": { + "item": "mysticalagriculture:dye_essence" + } + }, + "result": { + "item": "growthcraft:salt", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/growthcraft_apiary/recipes/mystical_agriculture/mystical_agriculture_bee.json b/src/main/resources/data/growthcraft_apiary/recipes/mystical_agriculture/mystical_agriculture_bee.json new file mode 100644 index 00000000..34324a46 --- /dev/null +++ b/src/main/resources/data/growthcraft_apiary/recipes/mystical_agriculture/mystical_agriculture_bee.json @@ -0,0 +1,30 @@ +{ + "type": "cucumber:shaped_no_mirror", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "mysticalagriculture" + }, + { + "type": "mysticalagriculture:crop_enabled", + "crop": "mysticalagriculture:honey" + } + ], + "pattern": [ + "A A", + " H ", + " " + ], + "key": { + "H": { + "item": "mysticalagriculture:honey_essence" + }, + "A": { + "item": "mysticalagriculture:air_essence" + } + }, + "result": { + "item": "growthcraft_apiary:bee", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/growthcraft_apples/recipes/mystical_agriculture/mystical_agriculture_apple_log.json b/src/main/resources/data/growthcraft_apples/recipes/mystical_agriculture/mystical_agriculture_apple_log.json new file mode 100644 index 00000000..a073954d --- /dev/null +++ b/src/main/resources/data/growthcraft_apples/recipes/mystical_agriculture/mystical_agriculture_apple_log.json @@ -0,0 +1,30 @@ +{ + "type": "cucumber:shaped_no_mirror", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "mysticalagriculture" + }, + { + "type": "mysticalagriculture:crop_enabled", + "crop": "mysticalagriculture:wood" + } + ], + "pattern": [ + "B A", + " B ", + "A B" + ], + "key": { + "A": { + "item": "mysticalagriculture:wood_essence" + }, + "B": { + "item": "mysticalagriculture:nature_essence" + } + }, + "result": { + "item": "growthcraft_apples:apple_wood_log", + "count": 32 + } +} \ No newline at end of file diff --git a/src/main/resources/data/growthcraft_cellar/recipes/mystical_agriculture/mystical_agriculture_grain.json b/src/main/resources/data/growthcraft_cellar/recipes/mystical_agriculture/mystical_agriculture_grain.json new file mode 100644 index 00000000..d0c706c9 --- /dev/null +++ b/src/main/resources/data/growthcraft_cellar/recipes/mystical_agriculture/mystical_agriculture_grain.json @@ -0,0 +1,30 @@ +{ + "type": "cucumber:shaped_no_mirror", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "mysticalagriculture" + }, + { + "type": "mysticalagriculture:crop_enabled", + "crop": "mysticalagriculture:nature" + } + ], + "pattern": [ + "AAA", + " B ", + " " + ], + "key": { + "A": { + "item": "mysticalagriculture:nature_essence" + }, + "B": { + "item": "mysticalagriculture:iron_essence" + } + }, + "result": { + "item": "growthcraft_cellar:grain", + "count": 8 + } +} \ No newline at end of file diff --git a/src/main/resources/data/growthcraft_cellar/recipes/mystical_agriculture/mystical_agriculture_grain_amber.json b/src/main/resources/data/growthcraft_cellar/recipes/mystical_agriculture/mystical_agriculture_grain_amber.json new file mode 100644 index 00000000..5abdc49d --- /dev/null +++ b/src/main/resources/data/growthcraft_cellar/recipes/mystical_agriculture/mystical_agriculture_grain_amber.json @@ -0,0 +1,33 @@ +{ + "type": "cucumber:shaped_no_mirror", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "mysticalagriculture" + }, + { + "type": "mysticalagriculture:crop_enabled", + "crop": "mysticalagriculture:nature" + } + ], + "pattern": [ + "AAA", + " B ", + "C " + ], + "key": { + "A": { + "item": "mysticalagriculture:nature_essence" + }, + "B": { + "item": "mysticalagriculture:iron_essence" + }, + "C": { + "item": "mysticalagriculture:coal_essence" + } + }, + "result": { + "item": "growthcraft_cellar:grain_amber", + "count": 4 + } +} \ No newline at end of file diff --git a/src/main/resources/data/growthcraft_cellar/recipes/mystical_agriculture/mystical_agriculture_grain_brown.json b/src/main/resources/data/growthcraft_cellar/recipes/mystical_agriculture/mystical_agriculture_grain_brown.json new file mode 100644 index 00000000..58286517 --- /dev/null +++ b/src/main/resources/data/growthcraft_cellar/recipes/mystical_agriculture/mystical_agriculture_grain_brown.json @@ -0,0 +1,33 @@ +{ + "type": "cucumber:shaped_no_mirror", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "mysticalagriculture" + }, + { + "type": "mysticalagriculture:crop_enabled", + "crop": "mysticalagriculture:nature" + } + ], + "pattern": [ + "AAA", + " B ", + "C C" + ], + "key": { + "A": { + "item": "mysticalagriculture:nature_essence" + }, + "B": { + "item": "mysticalagriculture:iron_essence" + }, + "C": { + "item": "mysticalagriculture:coal_essence" + } + }, + "result": { + "item": "growthcraft_cellar:grain_brown", + "count": 4 + } +} \ No newline at end of file diff --git a/src/main/resources/data/growthcraft_cellar/recipes/mystical_agriculture/mystical_agriculture_grain_copper.json b/src/main/resources/data/growthcraft_cellar/recipes/mystical_agriculture/mystical_agriculture_grain_copper.json new file mode 100644 index 00000000..25103590 --- /dev/null +++ b/src/main/resources/data/growthcraft_cellar/recipes/mystical_agriculture/mystical_agriculture_grain_copper.json @@ -0,0 +1,33 @@ +{ + "type": "cucumber:shaped_no_mirror", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "mysticalagriculture" + }, + { + "type": "mysticalagriculture:crop_enabled", + "crop": "mysticalagriculture:nature" + } + ], + "pattern": [ + "AAA", + " B ", + " C" + ], + "key": { + "A": { + "item": "mysticalagriculture:nature_essence" + }, + "B": { + "item": "mysticalagriculture:iron_essence" + }, + "C": { + "item": "mysticalagriculture:coal_essence" + } + }, + "result": { + "item": "growthcraft_cellar:grain_copper", + "count": 4 + } +} \ No newline at end of file diff --git a/src/main/resources/data/growthcraft_cellar/recipes/mystical_agriculture/mystical_agriculture_grain_dark.json b/src/main/resources/data/growthcraft_cellar/recipes/mystical_agriculture/mystical_agriculture_grain_dark.json new file mode 100644 index 00000000..faf6e4af --- /dev/null +++ b/src/main/resources/data/growthcraft_cellar/recipes/mystical_agriculture/mystical_agriculture_grain_dark.json @@ -0,0 +1,33 @@ +{ + "type": "cucumber:shaped_no_mirror", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "mysticalagriculture" + }, + { + "type": "mysticalagriculture:crop_enabled", + "crop": "mysticalagriculture:nature" + } + ], + "pattern": [ + "AAA", + "CBC", + "CCC" + ], + "key": { + "A": { + "item": "mysticalagriculture:nature_essence" + }, + "B": { + "item": "mysticalagriculture:iron_essence" + }, + "C": { + "item": "mysticalagriculture:coal_essence" + } + }, + "result": { + "item": "growthcraft_cellar:grain_dark", + "count": 4 + } +} \ No newline at end of file diff --git a/src/main/resources/data/growthcraft_cellar/recipes/mystical_agriculture/mystical_agriculture_grain_deep_amber.json b/src/main/resources/data/growthcraft_cellar/recipes/mystical_agriculture/mystical_agriculture_grain_deep_amber.json new file mode 100644 index 00000000..839dd787 --- /dev/null +++ b/src/main/resources/data/growthcraft_cellar/recipes/mystical_agriculture/mystical_agriculture_grain_deep_amber.json @@ -0,0 +1,33 @@ +{ + "type": "cucumber:shaped_no_mirror", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "mysticalagriculture" + }, + { + "type": "mysticalagriculture:crop_enabled", + "crop": "mysticalagriculture:nature" + } + ], + "pattern": [ + "AAA", + " B ", + " C " + ], + "key": { + "A": { + "item": "mysticalagriculture:nature_essence" + }, + "B": { + "item": "mysticalagriculture:iron_essence" + }, + "C": { + "item": "mysticalagriculture:coal_essence" + } + }, + "result": { + "item": "growthcraft_cellar:grain_deep_amber", + "count": 4 + } +} \ No newline at end of file diff --git a/src/main/resources/data/growthcraft_cellar/recipes/mystical_agriculture/mystical_agriculture_grain_deep_copper.json b/src/main/resources/data/growthcraft_cellar/recipes/mystical_agriculture/mystical_agriculture_grain_deep_copper.json new file mode 100644 index 00000000..b464b909 --- /dev/null +++ b/src/main/resources/data/growthcraft_cellar/recipes/mystical_agriculture/mystical_agriculture_grain_deep_copper.json @@ -0,0 +1,33 @@ +{ + "type": "cucumber:shaped_no_mirror", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "mysticalagriculture" + }, + { + "type": "mysticalagriculture:crop_enabled", + "crop": "mysticalagriculture:nature" + } + ], + "pattern": [ + "AAA", + "CBC", + " " + ], + "key": { + "A": { + "item": "mysticalagriculture:nature_essence" + }, + "B": { + "item": "mysticalagriculture:iron_essence" + }, + "C": { + "item": "mysticalagriculture:coal_essence" + } + }, + "result": { + "item": "growthcraft_cellar:grain_deep_copper", + "count": 4 + } +} \ No newline at end of file diff --git a/src/main/resources/data/growthcraft_cellar/recipes/mystical_agriculture/mystical_agriculture_grain_golden.json b/src/main/resources/data/growthcraft_cellar/recipes/mystical_agriculture/mystical_agriculture_grain_golden.json new file mode 100644 index 00000000..98944846 --- /dev/null +++ b/src/main/resources/data/growthcraft_cellar/recipes/mystical_agriculture/mystical_agriculture_grain_golden.json @@ -0,0 +1,33 @@ +{ + "type": "cucumber:shaped_no_mirror", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "mysticalagriculture" + }, + { + "type": "mysticalagriculture:crop_enabled", + "crop": "mysticalagriculture:nature" + } + ], + "pattern": [ + "AAA", + " BC", + " " + ], + "key": { + "A": { + "item": "mysticalagriculture:nature_essence" + }, + "B": { + "item": "mysticalagriculture:iron_essence" + }, + "C": { + "item": "mysticalagriculture:coal_essence" + } + }, + "result": { + "item": "growthcraft_cellar:grain_golden", + "count": 4 + } +} \ No newline at end of file diff --git a/src/main/resources/data/growthcraft_cellar/recipes/mystical_agriculture/mystical_agriculture_grain_pale_golden.json b/src/main/resources/data/growthcraft_cellar/recipes/mystical_agriculture/mystical_agriculture_grain_pale_golden.json new file mode 100644 index 00000000..5d72450d --- /dev/null +++ b/src/main/resources/data/growthcraft_cellar/recipes/mystical_agriculture/mystical_agriculture_grain_pale_golden.json @@ -0,0 +1,33 @@ +{ + "type": "cucumber:shaped_no_mirror", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "mysticalagriculture" + }, + { + "type": "mysticalagriculture:crop_enabled", + "crop": "mysticalagriculture:nature" + } + ], + "pattern": [ + "AAA", + "CB ", + " " + ], + "key": { + "A": { + "item": "mysticalagriculture:nature_essence" + }, + "B": { + "item": "mysticalagriculture:iron_essence" + }, + "C": { + "item": "mysticalagriculture:coal_essence" + } + }, + "result": { + "item": "growthcraft_cellar:grain_golden", + "count": 4 + } +} \ No newline at end of file diff --git a/src/main/resources/data/growthcraft_cellar/recipes/mystical_agriculture/mystical_agriculture_hops.json b/src/main/resources/data/growthcraft_cellar/recipes/mystical_agriculture/mystical_agriculture_hops.json new file mode 100644 index 00000000..bd5041c6 --- /dev/null +++ b/src/main/resources/data/growthcraft_cellar/recipes/mystical_agriculture/mystical_agriculture_hops.json @@ -0,0 +1,30 @@ +{ + "type": "cucumber:shaped_no_mirror", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "mysticalagriculture" + }, + { + "type": "mysticalagriculture:crop_enabled", + "crop": "mysticalagriculture:nature" + } + ], + "pattern": [ + "AAA", + " A ", + "B B" + ], + "key": { + "A": { + "item": "mysticalagriculture:nature_essence" + }, + "B": { + "item": "mysticalagriculture:dirt_essence" + } + }, + "result": { + "item": "growthcraft_cellar:hops", + "count": 4 + } +} \ No newline at end of file diff --git a/src/main/resources/data/growthcraft_cellar/recipes/mystical_agriculture/mystical_agriculture_purple_grapes.json b/src/main/resources/data/growthcraft_cellar/recipes/mystical_agriculture/mystical_agriculture_purple_grapes.json new file mode 100644 index 00000000..8fbce6e2 --- /dev/null +++ b/src/main/resources/data/growthcraft_cellar/recipes/mystical_agriculture/mystical_agriculture_purple_grapes.json @@ -0,0 +1,30 @@ +{ + "type": "cucumber:shaped_no_mirror", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "mysticalagriculture" + }, + { + "type": "mysticalagriculture:crop_enabled", + "crop": "mysticalagriculture:dye" + } + ], + "pattern": [ + "B A", + "B A", + " A " + ], + "key": { + "A": { + "item": "mysticalagriculture:dye_essence" + }, + "B": { + "item": "mysticalagriculture:nature_essence" + } + }, + "result": { + "item": "growthcraft_cellar:grape_purple", + "count": 4 + } +} \ No newline at end of file diff --git a/src/main/resources/data/growthcraft_cellar/recipes/mystical_agriculture/mystical_agriculture_red_grapes.json b/src/main/resources/data/growthcraft_cellar/recipes/mystical_agriculture/mystical_agriculture_red_grapes.json new file mode 100644 index 00000000..2d865303 --- /dev/null +++ b/src/main/resources/data/growthcraft_cellar/recipes/mystical_agriculture/mystical_agriculture_red_grapes.json @@ -0,0 +1,30 @@ +{ + "type": "cucumber:shaped_no_mirror", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "mysticalagriculture" + }, + { + "type": "mysticalagriculture:crop_enabled", + "crop": "mysticalagriculture:dye" + } + ], + "pattern": [ + "B A", + "BA ", + " A " + ], + "key": { + "A": { + "item": "mysticalagriculture:dye_essence" + }, + "B": { + "item": "mysticalagriculture:nature_essence" + } + }, + "result": { + "item": "growthcraft_cellar:grape_red", + "count": 4 + } +} \ No newline at end of file diff --git a/src/main/resources/data/growthcraft_cellar/recipes/mystical_agriculture/mystical_agriculture_white_grapes.json b/src/main/resources/data/growthcraft_cellar/recipes/mystical_agriculture/mystical_agriculture_white_grapes.json new file mode 100644 index 00000000..e0d6193b --- /dev/null +++ b/src/main/resources/data/growthcraft_cellar/recipes/mystical_agriculture/mystical_agriculture_white_grapes.json @@ -0,0 +1,30 @@ +{ + "type": "cucumber:shaped_no_mirror", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "mysticalagriculture" + }, + { + "type": "mysticalagriculture:crop_enabled", + "crop": "mysticalagriculture:dye" + } + ], + "pattern": [ + "BAB", + "AAA", + "A A" + ], + "key": { + "A": { + "item": "mysticalagriculture:dye_essence" + }, + "B": { + "item": "mysticalagriculture:nature_essence" + } + }, + "result": { + "item": "growthcraft_cellar:grape_white", + "count": 4 + } +} \ No newline at end of file diff --git a/src/main/resources/data/growthcraft_cellar/recipes/mystical_agriculture/mystical_agriculture_yeast_bayanus.json b/src/main/resources/data/growthcraft_cellar/recipes/mystical_agriculture/mystical_agriculture_yeast_bayanus.json new file mode 100644 index 00000000..83baf61f --- /dev/null +++ b/src/main/resources/data/growthcraft_cellar/recipes/mystical_agriculture/mystical_agriculture_yeast_bayanus.json @@ -0,0 +1,33 @@ +{ + "type": "cucumber:shaped_no_mirror", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "mysticalagriculture" + }, + { + "type": "mysticalagriculture:crop_enabled", + "crop": "mysticalagriculture:nature" + } + ], + "pattern": [ + "A A", + " B ", + "DDD" + ], + "key": { + "A": { + "item": "mysticalagriculture:nature_essence" + }, + "B": { + "item": "mysticalagriculture:earth_essence" + }, + "D": { + "item": "mysticalagriculture:dirt_essence" + } + }, + "result": { + "item": "growthcraft_cellar:yeast_bayanus", + "count": 8 + } +} \ No newline at end of file diff --git a/src/main/resources/data/growthcraft_cellar/recipes/mystical_agriculture/mystical_agriculture_yeast_brewers.json b/src/main/resources/data/growthcraft_cellar/recipes/mystical_agriculture/mystical_agriculture_yeast_brewers.json new file mode 100644 index 00000000..32fc9108 --- /dev/null +++ b/src/main/resources/data/growthcraft_cellar/recipes/mystical_agriculture/mystical_agriculture_yeast_brewers.json @@ -0,0 +1,33 @@ +{ + "type": "cucumber:shaped_no_mirror", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "mysticalagriculture" + }, + { + "type": "mysticalagriculture:crop_enabled", + "crop": "mysticalagriculture:nature" + } + ], + "pattern": [ + "A ", + " B ", + "DDD" + ], + "key": { + "A": { + "item": "mysticalagriculture:nature_essence" + }, + "B": { + "item": "mysticalagriculture:earth_essence" + }, + "D": { + "item": "mysticalagriculture:dirt_essence" + } + }, + "result": { + "item": "growthcraft_cellar:yeast_brewers", + "count": 8 + } +} \ No newline at end of file diff --git a/src/main/resources/data/growthcraft_cellar/recipes/mystical_agriculture/mystical_agriculture_yeast_ethereal.json b/src/main/resources/data/growthcraft_cellar/recipes/mystical_agriculture/mystical_agriculture_yeast_ethereal.json new file mode 100644 index 00000000..bf457b04 --- /dev/null +++ b/src/main/resources/data/growthcraft_cellar/recipes/mystical_agriculture/mystical_agriculture_yeast_ethereal.json @@ -0,0 +1,36 @@ +{ + "type": "cucumber:shaped_no_mirror", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "mysticalagriculture" + }, + { + "type": "mysticalagriculture:crop_enabled", + "crop": "mysticalagriculture:nature" + } + ], + "pattern": [ + "AEA", + " B ", + "DDD" + ], + "key": { + "A": { + "item": "mysticalagriculture:nature_essence" + }, + "B": { + "item": "mysticalagriculture:earth_essence" + }, + "D": { + "item": "mysticalagriculture:dirt_essence" + }, + "E": { + "item": "mysticalagriculture:end_essence" + } + }, + "result": { + "item": "growthcraft_cellar:yeast_ethereal", + "count": 8 + } +} \ No newline at end of file diff --git a/src/main/resources/data/growthcraft_cellar/recipes/mystical_agriculture/mystical_agriculture_yeast_lager.json b/src/main/resources/data/growthcraft_cellar/recipes/mystical_agriculture/mystical_agriculture_yeast_lager.json new file mode 100644 index 00000000..3a6aeb19 --- /dev/null +++ b/src/main/resources/data/growthcraft_cellar/recipes/mystical_agriculture/mystical_agriculture_yeast_lager.json @@ -0,0 +1,33 @@ +{ + "type": "cucumber:shaped_no_mirror", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "mysticalagriculture" + }, + { + "type": "mysticalagriculture:crop_enabled", + "crop": "mysticalagriculture:nature" + } + ], + "pattern": [ + "AA ", + " B ", + "DDD" + ], + "key": { + "A": { + "item": "mysticalagriculture:nature_essence" + }, + "B": { + "item": "mysticalagriculture:earth_essence" + }, + "D": { + "item": "mysticalagriculture:dirt_essence" + } + }, + "result": { + "item": "growthcraft_cellar:yeast_lager", + "count": 8 + } +} \ No newline at end of file diff --git a/src/main/resources/data/growthcraft_cellar/recipes/mystical_agriculture/mystical_agriculture_yeast_seishu.json b/src/main/resources/data/growthcraft_cellar/recipes/mystical_agriculture/mystical_agriculture_yeast_seishu.json new file mode 100644 index 00000000..c4a6017f --- /dev/null +++ b/src/main/resources/data/growthcraft_cellar/recipes/mystical_agriculture/mystical_agriculture_yeast_seishu.json @@ -0,0 +1,33 @@ +{ + "type": "cucumber:shaped_no_mirror", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "mysticalagriculture" + }, + { + "type": "mysticalagriculture:crop_enabled", + "crop": "mysticalagriculture:nature" + } + ], + "pattern": [ + "AAA", + " B ", + "DDD" + ], + "key": { + "A": { + "item": "mysticalagriculture:nature_essence" + }, + "B": { + "item": "mysticalagriculture:earth_essence" + }, + "D": { + "item": "mysticalagriculture:dirt_essence" + } + }, + "result": { + "item": "growthcraft_cellar:yeast_seishu", + "count": 8 + } +} \ No newline at end of file diff --git a/src/main/resources/data/growthcraft_milk/recipes/mystical_agriculture/mystical_agriculture_bucket_of_milk.json b/src/main/resources/data/growthcraft_milk/recipes/mystical_agriculture/mystical_agriculture_bucket_of_milk.json new file mode 100644 index 00000000..95493807 --- /dev/null +++ b/src/main/resources/data/growthcraft_milk/recipes/mystical_agriculture/mystical_agriculture_bucket_of_milk.json @@ -0,0 +1,30 @@ +{ + "type": "cucumber:shaped_no_mirror", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "mysticalagriculture" + }, + { + "type": "mysticalagriculture:crop_enabled", + "crop": "mysticalagriculture:cow" + } + ], + "pattern": [ + " ", + "ICI", + " I " + ], + "key": { + "I": { + "item": "mysticalagriculture:iron_essence" + }, + "C": { + "item": "mysticalagriculture:cow_essence" + } + }, + "result": { + "item": "growthcraft_milk:milk_fluid_bucket", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/growthcraft_milk/recipes/mystical_agriculture/mystical_agriculture_starter_culture.json b/src/main/resources/data/growthcraft_milk/recipes/mystical_agriculture/mystical_agriculture_starter_culture.json new file mode 100644 index 00000000..8e9a9d53 --- /dev/null +++ b/src/main/resources/data/growthcraft_milk/recipes/mystical_agriculture/mystical_agriculture_starter_culture.json @@ -0,0 +1,36 @@ +{ + "type": "cucumber:shaped_no_mirror", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "mysticalagriculture" + }, + { + "type": "mysticalagriculture:crop_enabled", + "crop": "mysticalagriculture:nature" + } + ], + "pattern": [ + " ", + "ACA", + "FAI" + ], + "key": { + "A": { + "item": "mysticalagriculture:iron_essence" + }, + "C": { + "item": "mysticalagriculture:cow_essence" + }, + "F": { + "item": "mysticalagriculture:fire_essence" + }, + "I": { + "item": "mysticalagriculture:ice_essence" + } + }, + "result": { + "item": "growthcraft_milk:starter_culture", + "count": 8 + } +} \ No newline at end of file diff --git a/src/main/resources/data/growthcraft_milk/recipes/mystical_agriculture/mystical_agriculture_stomach.json b/src/main/resources/data/growthcraft_milk/recipes/mystical_agriculture/mystical_agriculture_stomach.json new file mode 100644 index 00000000..79aaa96b --- /dev/null +++ b/src/main/resources/data/growthcraft_milk/recipes/mystical_agriculture/mystical_agriculture_stomach.json @@ -0,0 +1,30 @@ +{ + "type": "cucumber:shaped_no_mirror", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "mysticalagriculture" + }, + { + "type": "mysticalagriculture:crop_enabled", + "crop": "mysticalagriculture:cow" + } + ], + "pattern": [ + "AAA", + " B ", + " " + ], + "key": { + "A": { + "item": "mysticalagriculture:cow_essence" + }, + "B": { + "item": "mysticalagriculture:iron_essence" + } + }, + "result": { + "item": "growthcraft_milk:stomach", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/growthcraft_rice/recipes/brew_kettle_rice_water_from_growthcraft_rice.json b/src/main/resources/data/growthcraft_rice/recipes/brew_kettle_rice_water_from_growthcraft_rice.json new file mode 100644 index 00000000..a8fc1b81 --- /dev/null +++ b/src/main/resources/data/growthcraft_rice/recipes/brew_kettle_rice_water_from_growthcraft_rice.json @@ -0,0 +1,23 @@ +{ + "type": "growthcraft_cellar:brew_kettle_recipe", + "requires_heat": true, + "requires_lid": "false", + "processing_time": 300, + "by_product_chance": 1, + "input_fluid": { + "fluid": "minecraft:water", + "amount": 125 + }, + "input_item": { + "item": "growthcraft_rice:rice", + "count": 1 + }, + "output_fluid": { + "fluid": "growthcraft_rice:rice_water_fluid_source", + "amount": 125 + }, + "by_product": { + "item": "minecraft:bone_meal", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/growthcraft_rice/recipes/culture_jar_starter_yeast_seishu_from_rice_water.json b/src/main/resources/data/growthcraft_rice/recipes/culture_jar_starter_yeast_seishu_from_rice_water.json new file mode 100644 index 00000000..7dc664a6 --- /dev/null +++ b/src/main/resources/data/growthcraft_rice/recipes/culture_jar_starter_yeast_seishu_from_rice_water.json @@ -0,0 +1,13 @@ +{ + "type": "growthcraft_cellar:culture_jar_starter_recipe", + "processing_time": 4800, + "requires_heat_source": true, + "input_fluid": { + "fluid": "growthcraft_rice:rice_water_fluid_source", + "amount": 1000 + }, + "output_item": { + "item": "growthcraft_rice:yeast_seishu", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/growthcraft_rice/recipes/culture_jar_yeast_seishu_from_rice_water.json b/src/main/resources/data/growthcraft_rice/recipes/culture_jar_yeast_seishu_from_rice_water.json new file mode 100644 index 00000000..cedd6eaf --- /dev/null +++ b/src/main/resources/data/growthcraft_rice/recipes/culture_jar_yeast_seishu_from_rice_water.json @@ -0,0 +1,13 @@ +{ + "type": "growthcraft_cellar:culture_jar_recipe", + "processing_time": 1200, + "requires_heat_source": true, + "input_fluid": { + "fluid": "growthcraft_rice:rice_water_fluid_source", + "amount": 250 + }, + "input_item": { + "item": "growthcraft_rice:yeast_seishu", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/growthcraft_rice/recipes/fermentation_barrel_rice_wine.json b/src/main/resources/data/growthcraft_rice/recipes/fermentation_barrel_rice_wine.json new file mode 100644 index 00000000..26673c5b --- /dev/null +++ b/src/main/resources/data/growthcraft_rice/recipes/fermentation_barrel_rice_wine.json @@ -0,0 +1,27 @@ +{ + "type": "growthcraft_cellar:fermentation_barrel_recipe", + "processing_time": 1200, + "ingredient_item": { + "item": "growthcraft_cellar:yeast_bayanus", + "count": 1 + }, + "ingredient_fluid": { + "fluid": "growthcraft_rice:rice_water_fluid_source", + "amount": 1000 + }, + "result": { + "fluid": "growthcraft_rice:rice_wine_fluid_source", + "amount": 1000 + }, + "effects": [ + { + "effect": "minecraft:strength", + "duration": 2400, + "amplifier": 1 + } + ], + "bottle": { + "item": "growthcraft_cellar:potion_wine" + }, + "color": "0xEAA6D2" +} \ No newline at end of file diff --git a/src/main/resources/data/growthcraft_rice/recipes/fermentation_barrel_sake.json b/src/main/resources/data/growthcraft_rice/recipes/fermentation_barrel_sake.json new file mode 100644 index 00000000..6b686cd7 --- /dev/null +++ b/src/main/resources/data/growthcraft_rice/recipes/fermentation_barrel_sake.json @@ -0,0 +1,27 @@ +{ + "type": "growthcraft_cellar:fermentation_barrel_recipe", + "processing_time": 1800, + "ingredient_item": { + "item": "growthcraft_rice:yeast_seishu", + "count": 1 + }, + "ingredient_fluid": { + "fluid": "growthcraft_rice:rice_water_fluid_source", + "amount": 1000 + }, + "result": { + "fluid": "growthcraft_rice:sake_fluid_source", + "amount": 1000 + }, + "effects": [ + { + "effect": "minecraft:strength", + "duration": 6000, + "amplifier": 2 + } + ], + "bottle": { + "item": "growthcraft_cellar:potion_wine" + }, + "color": "0xE0E2DC" +} \ No newline at end of file diff --git a/src/main/resources/data/growthcraft_rice/recipes/mystical_agriculture/mystical_agriculture_rice.json b/src/main/resources/data/growthcraft_rice/recipes/mystical_agriculture/mystical_agriculture_rice.json new file mode 100644 index 00000000..e742d82f --- /dev/null +++ b/src/main/resources/data/growthcraft_rice/recipes/mystical_agriculture/mystical_agriculture_rice.json @@ -0,0 +1,33 @@ +{ + "type": "cucumber:shaped_no_mirror", + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "mysticalagriculture" + }, + { + "type": "mysticalagriculture:crop_enabled", + "crop": "mysticalagriculture:nature" + } + ], + "pattern": [ + " ", + "WNW", + "DDD" + ], + "key": { + "N": { + "item": "mysticalagriculture:nature_essence" + }, + "W": { + "item": "mysticalagriculture:water_essence" + }, + "D": { + "item": "mysticalagriculture:dirt_essence" + } + }, + "result": { + "item": "growthcraft_rice:rice", + "count": 8 + } +} \ No newline at end of file