1.12: Added missing standalone recipes.
This commit is contained in:
parent
73427832a4
commit
ad837bbf27
7 changed files with 95 additions and 3 deletions
|
@ -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"
|
||||
}
|
||||
}
|
|
@ -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).
|
||||
|
|
|
@ -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
|
||||
}
|
||||
}
|
|
@ -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
|
||||
}
|
||||
}
|
|
@ -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
|
||||
}
|
||||
}
|
|
@ -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
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue