diff --git a/1.12/meta/update.json b/1.12/meta/update.json index 92ce6fa..ce83c79 100644 --- a/1.12/meta/update.json +++ b/1.12/meta/update.json @@ -1,6 +1,7 @@ { "homepage": "https://www.curseforge.com/minecraft/mc-mods/engineers-decor/", "1.12.2": { + "1.0.11-b3": "[M] Added missing standalone recipes for pipe valves, passive fluid accumulator, and waste incinerator.", "1.0.11-b2": "[F] Fixed Floor Grating issue, which could have caused a crash.\n[M] Lang update ru-ru (Shellyoung, PR #47).", "1.0.11-b1": "[M] Lang update ru-ru (Shellyoung, PR #45).\n[F] Fixed bounding box of the Steel Table.\n[M] Steel Floor Frating: Items fall through.", "1.0.10": "[R] Release based on v1.0.10-b2. Release-to-release changes: * Steel table added. * Steel floor grating added. * Treated wood side table added. * Exit Sign added. * Recipe fixes.", @@ -53,6 +54,6 @@ }, "promos": { "1.12.2-recommended": "1.0.10", - "1.12.2-latest": "1.0.11-b2" + "1.12.2-latest": "1.0.11-b3" } } \ No newline at end of file diff --git a/1.12/readme.md b/1.12/readme.md index 62f3867..f6cf9c1 100644 --- a/1.12/readme.md +++ b/1.12/readme.md @@ -10,7 +10,8 @@ Mod sources for Minecraft version 1.12.2. ---- ## Version history - ~ v1.0.11-b3 [M] [WIP] + - v1.0.11-b3 [M] Added missing standalone recipes for pipe valves, passive + fluid accumulator, and waste incinerator. - v1.0.11-b2 [F] Fixed Floor Grating issue, which could have caused a crash. [M] Lang update ru-ru (Shellyoung, PR #47). diff --git a/1.12/src/main/resources/assets/engineersdecor/recipes/standalone/passive_fluid_accumulator_recipe_standalone.json b/1.12/src/main/resources/assets/engineersdecor/recipes/standalone/passive_fluid_accumulator_recipe_standalone.json new file mode 100644 index 0000000..b8da4a6 --- /dev/null +++ b/1.12/src/main/resources/assets/engineersdecor/recipes/standalone/passive_fluid_accumulator_recipe_standalone.json @@ -0,0 +1,24 @@ +{ + "conditions": [ + { + "type": "engineersdecor:grc", + "result": "engineersdecor:passive_fluid_accumulator", + "required": ["engineersdecor:straight_pipe_valve"], + "missing": ["immersiveengineering:fluid_pipe", "immersiveengineering:mechanical_component"] + } + ], + "type": "minecraft:crafting_shaped", + "pattern": [ + "SPS", + "P P", + "SPS" + ], + "key": { + "P": { "item": "engineersdecor:straight_pipe_valve", "data": 0 }, + "S": { "item": "minecraft:iron_ingot", "data": 0 } + }, + "result": { + "item": "engineersdecor:passive_fluid_accumulator", + "count": 1 + } +} diff --git a/1.12/src/main/resources/assets/engineersdecor/recipes/standalone/small_waste_incinerator_standalone.json b/1.12/src/main/resources/assets/engineersdecor/recipes/standalone/small_waste_incinerator_standalone.json new file mode 100644 index 0000000..cdb464a --- /dev/null +++ b/1.12/src/main/resources/assets/engineersdecor/recipes/standalone/small_waste_incinerator_standalone.json @@ -0,0 +1,24 @@ +{ + "conditions": [ + { + "type": "engineersdecor:grc", + "result": "engineersdecor:small_waste_incinerator", + "missing": ["immersiveengineering:material"] + } + ], + "type": "minecraft:crafting_shaped", + "pattern": [ + "HPP", + "PHP", + "PLP" + ], + "key": { + "H": { "item": "minecraft:hopper", "data": 0 }, + "P": { "item": "minecraft:iron_ingot", "data": 0 }, + "L": { "item": "minecraft:lava_bucket", "data": 0 } + }, + "result": { + "item": "engineersdecor:small_waste_incinerator", + "count": 1 + } +} diff --git a/1.12/src/main/resources/assets/engineersdecor/recipes/standalone/straight_pipe_valve_recipe_standalone.json b/1.12/src/main/resources/assets/engineersdecor/recipes/standalone/straight_pipe_valve_recipe_standalone.json new file mode 100644 index 0000000..a533a58 --- /dev/null +++ b/1.12/src/main/resources/assets/engineersdecor/recipes/standalone/straight_pipe_valve_recipe_standalone.json @@ -0,0 +1,22 @@ +{ + "conditions": [ + { + "type": "engineersdecor:grc", + "result": "engineersdecor:straight_pipe_valve", + "required": ["engineersdecor:thick_steel_pole"], + "missing": ["immersiveengineering:fluid_pipe", "immersiveengineering:mechanical_component"] + } + ], + "type": "minecraft:crafting_shaped", + "pattern": [ + "PIP" + ], + "key": { + "P": { "item": "engineersdecor:thick_steel_pole", "data": 0 }, + "I": { "item": "minecraft:iron_ingot", "data": 0 } + }, + "result": { + "item": "engineersdecor:straight_pipe_valve", + "count": 1 + } +} diff --git a/1.12/src/main/resources/assets/engineersdecor/recipes/standalone/straight_pipe_valve_redstone_recipe_standalone.json b/1.12/src/main/resources/assets/engineersdecor/recipes/standalone/straight_pipe_valve_redstone_recipe_standalone.json new file mode 100644 index 0000000..a4acc67 --- /dev/null +++ b/1.12/src/main/resources/assets/engineersdecor/recipes/standalone/straight_pipe_valve_redstone_recipe_standalone.json @@ -0,0 +1,19 @@ +{ + "conditions": [ + { + "type": "engineersdecor:grc", + "result": "engineersdecor:straight_pipe_valve", + "required": ["engineersdecor:straight_pipe_valve"], + "missing": ["immersiveengineering:redstone_connector"] + } + ], + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { "item": "engineersdecor:straight_pipe_valve", "data": 0 }, + { "item": "minecraft:repeater", "data": 0 } + ], + "result": { + "item": "engineersdecor:straight_pipe_valve_redstone", + "count": 1 + } +} diff --git a/meta/update.json b/meta/update.json index 955cb2a..a4e85af 100644 --- a/meta/update.json +++ b/meta/update.json @@ -2,11 +2,12 @@ "homepage": "https://www.curseforge.com/minecraft/mc-mods/engineers-decor/", "promos": { "1.12.2-recommended": "1.0.10", - "1.12.2-latest": "1.0.11-b2", + "1.12.2-latest": "1.0.11-b3", "1.14.4-recommended": "", "1.14.4-latest": "1.0.11-b2" }, "1.12.2": { + "1.0.11-b3": "[M] Added missing standalone recipes for pipe valves, passive fluid accumulator, and waste incinerator.", "1.0.11-b2": "[F] Fixed Floor Grating issue, which could have caused a crash.\n[M] Lang update ru-ru (Shellyoung, PR #47).", "1.0.11-b1": "[M] Lang update ru-ru (Shellyoung, PR #45).\n[F] Fixed bounding box of the Steel Table.\n[M] Steel Floor Frating: Items fall through.", "1.0.10": "[R] Release based on v1.0.10-b2. Release-to-release changes: * Steel table added. * Steel floor grating added. * Treated wood side table added. * Exit Sign added. * Recipe fixes.",