From e983069cae61f8e7664b59cce4c62b833dda9dd2 Mon Sep 17 00:00:00 2001 From: xbxbxb123 Date: Tue, 20 May 2025 21:50:24 -0700 Subject: [PATCH 1/2] added shiitake mushrooms to mushrooms tag --- src/main/resources/data/forge/tags/items/mushrooms.json | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/main/resources/data/forge/tags/items/mushrooms.json diff --git a/src/main/resources/data/forge/tags/items/mushrooms.json b/src/main/resources/data/forge/tags/items/mushrooms.json new file mode 100644 index 00000000..672df918 --- /dev/null +++ b/src/main/resources/data/forge/tags/items/mushrooms.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "natures_spirit:shiitake_mushroom" + ] +} \ No newline at end of file From 0d15af5c85ad732fe738a5eaf4dbcf680a299c99 Mon Sep 17 00:00:00 2001 From: xbxbxb123 Date: Tue, 20 May 2025 22:58:43 -0700 Subject: [PATCH 2/2] Some Create recipes and others --- .../crafting/materials/pink_sand_paper.json | 28 +++++++++++++++++++ .../create/recipes/crushing/rose_quartz.json | 27 ++++++++++++++++++ .../recipes/milling/pink_sandstone.json | 27 ++++++++++++++++++ .../create/recipes/washing/pink_sand.json | 26 +++++++++++++++++ .../natures_spirit/recipes/green_dye.json | 10 +++++++ .../recipes/stick_from_olive_branch.json | 13 +++++++++ 6 files changed, 131 insertions(+) create mode 100644 src/main/resources/data/create/recipes/crafting/materials/pink_sand_paper.json create mode 100644 src/main/resources/data/create/recipes/crushing/rose_quartz.json create mode 100644 src/main/resources/data/create/recipes/milling/pink_sandstone.json create mode 100644 src/main/resources/data/create/recipes/washing/pink_sand.json create mode 100644 src/main/resources/data/natures_spirit/recipes/green_dye.json create mode 100644 src/main/resources/data/natures_spirit/recipes/stick_from_olive_branch.json diff --git a/src/main/resources/data/create/recipes/crafting/materials/pink_sand_paper.json b/src/main/resources/data/create/recipes/crafting/materials/pink_sand_paper.json new file mode 100644 index 00000000..1f8f1810 --- /dev/null +++ b/src/main/resources/data/create/recipes/crafting/materials/pink_sand_paper.json @@ -0,0 +1,28 @@ +{ + "type": "forge:conditional", + "recipes": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "create" + } + ], + "recipe": { + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "item": "minecraft:paper" + }, + { + "item": "natures_spirit:pink_sand" + } + ], + "result": { + "item": "create:red_sand_paper" + } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/create/recipes/crushing/rose_quartz.json b/src/main/resources/data/create/recipes/crushing/rose_quartz.json new file mode 100644 index 00000000..f0e69804 --- /dev/null +++ b/src/main/resources/data/create/recipes/crushing/rose_quartz.json @@ -0,0 +1,27 @@ +{ + "type": "forge:conditional", + "recipes": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "create" + } + ], + "recipe": { + "type": "create:crushing", + "ingredients": [ + { + "item": "create:rose_quartz" + } + ], + "processingTime": 250, + "results": [ + { + "item": "natures_spirit:pink_sand" + } + ] + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/create/recipes/milling/pink_sandstone.json b/src/main/resources/data/create/recipes/milling/pink_sandstone.json new file mode 100644 index 00000000..6677870f --- /dev/null +++ b/src/main/resources/data/create/recipes/milling/pink_sandstone.json @@ -0,0 +1,27 @@ +{ + "type": "forge:conditional", + "recipes": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "create" + } + ], + "recipe": { + "type": "create:milling", + "ingredients": [ + { + "item": "natures_spirit:pink_sandstone" + } + ], + "processingTime": 150, + "results": [ + { + "item": "natures_spirit:pink_sand" + } + ] + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/create/recipes/washing/pink_sand.json b/src/main/resources/data/create/recipes/washing/pink_sand.json new file mode 100644 index 00000000..bd675363 --- /dev/null +++ b/src/main/resources/data/create/recipes/washing/pink_sand.json @@ -0,0 +1,26 @@ +{ + "type": "forge:conditional", + "recipes": [ + { + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "create" + } + ], + "recipe": { + "type": "create:splashing", + "ingredients": [ + { + "item": "natures_spirit:pink_sand" + } + ], + "results": [ + { + "item": "minecraft:redstone" + } + ] + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/natures_spirit/recipes/green_dye.json b/src/main/resources/data/natures_spirit/recipes/green_dye.json new file mode 100644 index 00000000..eb0985c3 --- /dev/null +++ b/src/main/resources/data/natures_spirit/recipes/green_dye.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 1.0, + "ingredient": { + "item": "natures_spirit:alluaudia_bundle" + }, + "result": "minecraft:green_dye" +} \ No newline at end of file diff --git a/src/main/resources/data/natures_spirit/recipes/stick_from_olive_branch.json b/src/main/resources/data/natures_spirit/recipes/stick_from_olive_branch.json new file mode 100644 index 00000000..82778244 --- /dev/null +++ b/src/main/resources/data/natures_spirit/recipes/stick_from_olive_branch.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "item": "natures_spirit:olive_branch" + } + ], + "result": { + "count": 4, + "item": "minecraft:stick" + } +} \ No newline at end of file