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/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 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