From 9bc81ff8b647408219e5481d22a54422edf27a35 Mon Sep 17 00:00:00 2001 From: copygirl Date: Sun, 30 Oct 2022 15:34:38 +0100 Subject: [PATCH] Fix Create Stuff & Additions' engine recipes --- .../create_sa/recipes/heat_engine_recipe.json | 51 +++++++++++++++++++ .../recipes/hydraulic_engine_recipe.json | 51 +++++++++++++++++++ .../recipes/steam_engine_recipe.json | 51 +++++++++++++++++++ 3 files changed, 153 insertions(+) create mode 100644 kubejs/data/create_sa/recipes/heat_engine_recipe.json create mode 100644 kubejs/data/create_sa/recipes/hydraulic_engine_recipe.json create mode 100644 kubejs/data/create_sa/recipes/steam_engine_recipe.json diff --git a/kubejs/data/create_sa/recipes/heat_engine_recipe.json b/kubejs/data/create_sa/recipes/heat_engine_recipe.json new file mode 100644 index 0000000..2e47cab --- /dev/null +++ b/kubejs/data/create_sa/recipes/heat_engine_recipe.json @@ -0,0 +1,51 @@ +{ + "type": "create:sequenced_assembly", + "ingredient": { "item": "create:andesite_alloy" }, + "transitionalItem": { "item": "create_sa:incomplete_heat_engine" }, + "sequence": [ + { + "type": "create:deploying", + "ingredients": [ + { "item": "create_sa:incomplete_heat_engine" }, + { "item": "create:cogwheel" } + ], + "results": [{ "item": "create_sa:incomplete_heat_engine" }] + }, + { + "type": "create:deploying", + "ingredients": [ + { "item": "create_sa:incomplete_heat_engine" }, + { "item": "create:large_cogwheel" } + ], + "results": [{ "item": "create_sa:incomplete_heat_engine" }] + }, + { + "type": "create:deploying", + "ingredients": [ + { "item": "create_sa:incomplete_heat_engine" }, + { "tag": "forge:nuggets/zinc" } + ], + "results": [{ "item": "create_sa:incomplete_heat_engine" }] + }, + { + "type": "create:deploying", + "ingredients": [ + { "item": "create_sa:incomplete_heat_engine" }, + { "tag": "forge:nuggets/copper" } + ], + "results": [{ "item": "create_sa:incomplete_heat_engine" }] + } + ], + "loops": 4, + "results": [ + { "chance": 120, "item": "create_sa:heat_engine" }, + { "chance": 8, "item": "create:copper_sheet" }, + { "chance": 8, "item": "create:andesite_alloy" }, + { "chance": 5, "item": "create:cogwheel" }, + { "chance": 2, "item": "create:shaft" }, + { "chance": 2, "item": "create:crushed_zinc_ore" }, + { "chance": 2, "item": "create:copper_nugget" }, + { "chance": 1, "item": "minecraft:iron_ingot" }, + { "chance": 1, "item": "minecraft:compass" } + ] +} diff --git a/kubejs/data/create_sa/recipes/hydraulic_engine_recipe.json b/kubejs/data/create_sa/recipes/hydraulic_engine_recipe.json new file mode 100644 index 0000000..f6d68dc --- /dev/null +++ b/kubejs/data/create_sa/recipes/hydraulic_engine_recipe.json @@ -0,0 +1,51 @@ +{ + "type": "create:sequenced_assembly", + "ingredient": { "tag": "forge:plates/copper" }, + "transitionalItem": { "item": "create_sa:incomplete_hydraulic_engine" }, + "sequence": [ + { + "type": "create:deploying", + "ingredients": [ + { "item": "create_sa:incomplete_hydraulic_engine" }, + { "item": "create:cogwheel" } + ], + "results": [{ "item": "create_sa:incomplete_hydraulic_engine" }] + }, + { + "type": "create:deploying", + "ingredients": [ + { "item": "create_sa:incomplete_hydraulic_engine" }, + { "item": "create:large_cogwheel" } + ], + "results": [{ "item": "create_sa:incomplete_hydraulic_engine" }] + }, + { + "type": "create:deploying", + "ingredients": [ + { "item": "create_sa:incomplete_steam_engine" }, + { "item": "create:andesite_alloy" } + ], + "results": [{ "item": "create_sa:incomplete_hydraulic_engine" }] + }, + { + "type": "create:filling", + "ingredients": [ + { "item": "create_sa:incomplete_hydraulic_engine" }, + { "fluid": "minecraft:water", "amount": 250 } + ], + "results": [{ "item": "create_sa:incomplete_hydraulic_engine" }] + } + ], + "loops": 4, + "results": [ + { "chance": 120, "item": "create_sa:hydraulic_engine" }, + { "chance": 8, "item": "create:copper_sheet" }, + { "chance": 8, "item": "create:andesite_alloy" }, + { "chance": 5, "item": "create:cogwheel" }, + { "chance": 2, "item": "create:shaft" }, + { "chance": 2, "item": "create:crushed_copper_ore" }, + { "chance": 2, "item": "create:copper_nugget" }, + { "chance": 1, "item": "minecraft:iron_ingot" }, + { "chance": 1, "item": "minecraft:compass" } + ] +} diff --git a/kubejs/data/create_sa/recipes/steam_engine_recipe.json b/kubejs/data/create_sa/recipes/steam_engine_recipe.json new file mode 100644 index 0000000..5261031 --- /dev/null +++ b/kubejs/data/create_sa/recipes/steam_engine_recipe.json @@ -0,0 +1,51 @@ +{ + "type": "create:sequenced_assembly", + "ingredient": { "tag": "forge:plates/brass" }, + "transitionalItem": { "item": "create_sa:incomplete_steam_engine" }, + "sequence": [ + { + "type": "create:deploying", + "ingredients": [ + { "item": "create_sa:incomplete_steam_engine" }, + { "item": "create:cogwheel" } + ], + "results": [{ "item": "create_sa:incomplete_steam_engine" }] + }, + { + "type": "create:deploying", + "ingredients": [ + { "item": "create_sa:incomplete_steam_engine" }, + { "item": "create:large_cogwheel" } + ], + "results": [{ "item": "create_sa:incomplete_steam_engine" }] + }, + { + "type": "create:deploying", + "ingredients": [ + { "item": "create_sa:incomplete_steam_engine" }, + { "item": "create:propeller" } + ], + "results": [{ "item": "create_sa:incomplete_steam_engine" }] + }, + { + "type": "create:deploying", + "ingredients": [ + { "item": "create_sa:incomplete_steam_engine" }, + { "item": "create:andesite_alloy" } + ], + "results": [{ "item": "create_sa:incomplete_steam_engine" }] + } + ], + "loops": 4, + "results": [ + { "chance": 120, "item": "create_sa:steam_engine" }, + { "chance": 8, "item": "create:brass_sheet" }, + { "chance": 8, "item": "create:andesite_alloy" }, + { "chance": 5, "item": "create:cogwheel" }, + { "chance": 2, "item": "create:shaft" }, + { "chance": 2, "item": "create:brass_ingot" }, + { "chance": 2, "item": "create:brass_nugget" }, + { "chance": 1, "item": "minecraft:iron_ingot" }, + { "chance": 1, "item": "minecraft:compass" } + ] +}