Skip to content

Commit

Permalink
Start fixing compat recipes
Browse files Browse the repository at this point in the history
  • Loading branch information
nitrodynamite18 committed Feb 5, 2025
1 parent b55cdb2 commit fc554a1
Show file tree
Hide file tree
Showing 14 changed files with 60 additions and 67 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,14 @@
],
"result": [
{
"item": "deeperdarker:echo_planks"
"item": {
"count": 1,
"id": "deeperdarker:echo_planks"
}
}
],
"tool": {
"type": "farmersdelight:tool_action",
"action": "axe_dig"
},
"neoforge:conditions": [
{
"type": "neoforge:mod_loaded",
"modid": "farmersdelight"
}
]
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,14 @@
],
"result": [
{
"item": "deeperdarker:echo_planks"
"item": {
"count": 1,
"id": "deeperdarker:echo_planks"
}
}
],
"tool": {
"type": "farmersdelight:tool_action",
"action": "axe_dig"
},
"neoforge:conditions": [
{
"type": "neoforge:mod_loaded",
"modid": "farmersdelight"
}
]
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,21 @@
],
"result": [
{
"item": "deeperdarker:stripped_echo_log"
"item": {
"count": 1,
"id": "deeperdarker:stripped_echo_log"
}
},
{
"item": "farmersdelight:tree_bark"
"item": {
"count": 1,
"id": "farmersdelight:tree_bark"
}
}
],
"sound": "minecraft:item.axe.strip",
"tool": {
"type": "farmersdelight:tool_action",
"action": "axe_strip"
},
"neoforge:conditions": [
{
"type": "neoforge:mod_loaded",
"modid": "farmersdelight"
}
]
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,14 @@
],
"result": [
{
"item": "deeperdarker:echo_planks"
"item": {
"count": 1,
"id": "deeperdarker:echo_planks"
}
}
],
"tool": {
"type": "farmersdelight:tool_action",
"action": "axe_dig"
},
"neoforge:conditions": [
{
"type": "neoforge:mod_loaded",
"modid": "farmersdelight"
}
]
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,14 @@
],
"result": [
{
"item": "deeperdarker:echo_planks"
"item": {
"count": 1,
"id": "deeperdarker:echo_planks"
}
}
],
"tool": {
"type": "farmersdelight:tool_action",
"action": "axe_dig"
},
"neoforge:conditions": [
{
"type": "neoforge:mod_loaded",
"modid": "farmersdelight"
}
]
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,21 @@
],
"result": [
{
"item": "deeperdarker:stripped_echo_wood"
"item": {
"count": 1,
"id": "deeperdarker:stripped_echo_wood"
}
},
{
"item": "farmersdelight:tree_bark"
"item": {
"count": 1,
"id": "farmersdelight:tree_bark"
}
}
],
"sound": "minecraft:item.axe.strip",
"tool": {
"type": "farmersdelight:tool_action",
"action": "axe_strip"
},
"neoforge:conditions": [
{
"type": "neoforge:mod_loaded",
"modid": "farmersdelight"
}
]
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"count": 1,
"item": "deeperdarker:echo_boat"
},
"mainOutput": {
"main_output": {
"count": 5,
"id": "deeperdarker:echo_planks"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
"count": 1,
"item": "deeperdarker:echo_chest_boat"
},
"mainOutput": {
"main_output": {
"count": 1,
"id": "deeperdarker:echo_boat"
},
"secondaryChance": 1.0,
"secondaryOutput": {
"secondary_chance": 1.0,
"secondary_output": {
"count": 1,
"id": "minecraft:chest"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"count": 1,
"item": "deeperdarker:echo_door"
},
"mainOutput": {
"main_output": {
"count": 2,
"id": "deeperdarker:echo_planks"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
"count": 1,
"item": "deeperdarker:echo_fence_gate"
},
"mainOutput": {
"main_output": {
"count": 2,
"id": "deeperdarker:echo_planks"
},
"secondaryChance": 1.0,
"secondaryOutput": {
"secondary_chance": 1.0,
"secondary_output": {
"count": 4,
"id": "minecraft:stick"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
"count": 1,
"item": "deeperdarker:echo_hanging_sign"
},
"mainOutput": {
"main_output": {
"count": 2,
"id": "deeperdarker:echo_planks"
},
"secondaryChance": 0.5,
"secondaryOutput": {
"secondary_chance": 0.5,
"secondary_output": {
"count": 1,
"id": "mekanism:sawdust"
},
Expand Down
6 changes: 3 additions & 3 deletions src/main/resources/data/mekanism/recipe/sawing/log/echo.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
"count": 1,
"tag": "deeperdarker:echo_logs"
},
"mainOutput": {
"main_output": {
"count": 6,
"id": "deeperdarker:echo_planks"
},
"secondaryChance": 0.25,
"secondaryOutput": {
"secondary_chance": 0.25,
"secondary_output": {
"count": 1,
"id": "mekanism:sawdust"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,15 @@
"count": 1,
"item": "deeperdarker:echo_pressure_plate"
},
"mainOutput": {
"count": 2,
"main_output": {
"count": 1,
"id": "deeperdarker:echo_planks"
},
"secondary_chance": 0.25,
"secondary_output": {
"count": 2,
"id": "mekanism:sawdust"
},
"neoforge:conditions": [
{
"type": "neoforge:mod_loaded",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"count": 1,
"item": "deeperdarker:echo_trapdoor"
},
"mainOutput": {
"main_output": {
"count": 3,
"id": "deeperdarker:echo_planks"
},
Expand Down

0 comments on commit fc554a1

Please sign in to comment.