-
Notifications
You must be signed in to change notification settings - Fork 681
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rework Storage Disassembly system to be based on Custom Recipes / Impl …
…#6934 (#8207) Implement in-world upgrades and downgrades of crafting units, and make the crafting unit / storage cell disassembly system data-driven.
- Loading branch information
Showing
46 changed files
with
1,055 additions
and
208 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
src/generated/resources/data/ae2/recipe/cell_upgrade/fluid_storage_cell_16k.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"type": "ae2:storage_cell_disassembly", | ||
"cell": "ae2:fluid_storage_cell_16k", | ||
"cell_disassembly_items": [ | ||
{ | ||
"count": 1, | ||
"id": "ae2:fluid_cell_housing" | ||
}, | ||
{ | ||
"count": 1, | ||
"id": "ae2:cell_component_16k" | ||
} | ||
] | ||
} |
14 changes: 14 additions & 0 deletions
14
src/generated/resources/data/ae2/recipe/cell_upgrade/fluid_storage_cell_1k.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"type": "ae2:storage_cell_disassembly", | ||
"cell": "ae2:fluid_storage_cell_1k", | ||
"cell_disassembly_items": [ | ||
{ | ||
"count": 1, | ||
"id": "ae2:fluid_cell_housing" | ||
}, | ||
{ | ||
"count": 1, | ||
"id": "ae2:cell_component_1k" | ||
} | ||
] | ||
} |
14 changes: 14 additions & 0 deletions
14
src/generated/resources/data/ae2/recipe/cell_upgrade/fluid_storage_cell_256k.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"type": "ae2:storage_cell_disassembly", | ||
"cell": "ae2:fluid_storage_cell_256k", | ||
"cell_disassembly_items": [ | ||
{ | ||
"count": 1, | ||
"id": "ae2:fluid_cell_housing" | ||
}, | ||
{ | ||
"count": 1, | ||
"id": "ae2:cell_component_256k" | ||
} | ||
] | ||
} |
14 changes: 14 additions & 0 deletions
14
src/generated/resources/data/ae2/recipe/cell_upgrade/fluid_storage_cell_4k.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"type": "ae2:storage_cell_disassembly", | ||
"cell": "ae2:fluid_storage_cell_4k", | ||
"cell_disassembly_items": [ | ||
{ | ||
"count": 1, | ||
"id": "ae2:fluid_cell_housing" | ||
}, | ||
{ | ||
"count": 1, | ||
"id": "ae2:cell_component_4k" | ||
} | ||
] | ||
} |
14 changes: 14 additions & 0 deletions
14
src/generated/resources/data/ae2/recipe/cell_upgrade/fluid_storage_cell_64k.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"type": "ae2:storage_cell_disassembly", | ||
"cell": "ae2:fluid_storage_cell_64k", | ||
"cell_disassembly_items": [ | ||
{ | ||
"count": 1, | ||
"id": "ae2:fluid_cell_housing" | ||
}, | ||
{ | ||
"count": 1, | ||
"id": "ae2:cell_component_64k" | ||
} | ||
] | ||
} |
14 changes: 14 additions & 0 deletions
14
src/generated/resources/data/ae2/recipe/cell_upgrade/item_storage_cell_16k.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"type": "ae2:storage_cell_disassembly", | ||
"cell": "ae2:item_storage_cell_16k", | ||
"cell_disassembly_items": [ | ||
{ | ||
"count": 1, | ||
"id": "ae2:item_cell_housing" | ||
}, | ||
{ | ||
"count": 1, | ||
"id": "ae2:cell_component_16k" | ||
} | ||
] | ||
} |
14 changes: 14 additions & 0 deletions
14
src/generated/resources/data/ae2/recipe/cell_upgrade/item_storage_cell_1k.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"type": "ae2:storage_cell_disassembly", | ||
"cell": "ae2:item_storage_cell_1k", | ||
"cell_disassembly_items": [ | ||
{ | ||
"count": 1, | ||
"id": "ae2:item_cell_housing" | ||
}, | ||
{ | ||
"count": 1, | ||
"id": "ae2:cell_component_1k" | ||
} | ||
] | ||
} |
14 changes: 14 additions & 0 deletions
14
src/generated/resources/data/ae2/recipe/cell_upgrade/item_storage_cell_256k.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"type": "ae2:storage_cell_disassembly", | ||
"cell": "ae2:item_storage_cell_256k", | ||
"cell_disassembly_items": [ | ||
{ | ||
"count": 1, | ||
"id": "ae2:item_cell_housing" | ||
}, | ||
{ | ||
"count": 1, | ||
"id": "ae2:cell_component_256k" | ||
} | ||
] | ||
} |
14 changes: 14 additions & 0 deletions
14
src/generated/resources/data/ae2/recipe/cell_upgrade/item_storage_cell_4k.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"type": "ae2:storage_cell_disassembly", | ||
"cell": "ae2:item_storage_cell_4k", | ||
"cell_disassembly_items": [ | ||
{ | ||
"count": 1, | ||
"id": "ae2:item_cell_housing" | ||
}, | ||
{ | ||
"count": 1, | ||
"id": "ae2:cell_component_4k" | ||
} | ||
] | ||
} |
14 changes: 14 additions & 0 deletions
14
src/generated/resources/data/ae2/recipe/cell_upgrade/item_storage_cell_64k.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"type": "ae2:storage_cell_disassembly", | ||
"cell": "ae2:item_storage_cell_64k", | ||
"cell_disassembly_items": [ | ||
{ | ||
"count": 1, | ||
"id": "ae2:item_cell_housing" | ||
}, | ||
{ | ||
"count": 1, | ||
"id": "ae2:cell_component_64k" | ||
} | ||
] | ||
} |
22 changes: 22 additions & 0 deletions
22
src/generated/resources/data/ae2/recipe/cell_upgrade/portable_fluid_cell_16k.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"type": "ae2:storage_cell_disassembly", | ||
"cell": "ae2:portable_fluid_cell_16k", | ||
"cell_disassembly_items": [ | ||
{ | ||
"count": 1, | ||
"id": "ae2:chest" | ||
}, | ||
{ | ||
"count": 1, | ||
"id": "ae2:energy_cell" | ||
}, | ||
{ | ||
"count": 1, | ||
"id": "ae2:fluid_cell_housing" | ||
}, | ||
{ | ||
"count": 1, | ||
"id": "ae2:cell_component_16k" | ||
} | ||
] | ||
} |
22 changes: 22 additions & 0 deletions
22
src/generated/resources/data/ae2/recipe/cell_upgrade/portable_fluid_cell_1k.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"type": "ae2:storage_cell_disassembly", | ||
"cell": "ae2:portable_fluid_cell_1k", | ||
"cell_disassembly_items": [ | ||
{ | ||
"count": 1, | ||
"id": "ae2:chest" | ||
}, | ||
{ | ||
"count": 1, | ||
"id": "ae2:energy_cell" | ||
}, | ||
{ | ||
"count": 1, | ||
"id": "ae2:fluid_cell_housing" | ||
}, | ||
{ | ||
"count": 1, | ||
"id": "ae2:cell_component_1k" | ||
} | ||
] | ||
} |
22 changes: 22 additions & 0 deletions
22
src/generated/resources/data/ae2/recipe/cell_upgrade/portable_fluid_cell_256k.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"type": "ae2:storage_cell_disassembly", | ||
"cell": "ae2:portable_fluid_cell_256k", | ||
"cell_disassembly_items": [ | ||
{ | ||
"count": 1, | ||
"id": "ae2:chest" | ||
}, | ||
{ | ||
"count": 1, | ||
"id": "ae2:energy_cell" | ||
}, | ||
{ | ||
"count": 1, | ||
"id": "ae2:fluid_cell_housing" | ||
}, | ||
{ | ||
"count": 1, | ||
"id": "ae2:cell_component_256k" | ||
} | ||
] | ||
} |
22 changes: 22 additions & 0 deletions
22
src/generated/resources/data/ae2/recipe/cell_upgrade/portable_fluid_cell_4k.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"type": "ae2:storage_cell_disassembly", | ||
"cell": "ae2:portable_fluid_cell_4k", | ||
"cell_disassembly_items": [ | ||
{ | ||
"count": 1, | ||
"id": "ae2:chest" | ||
}, | ||
{ | ||
"count": 1, | ||
"id": "ae2:energy_cell" | ||
}, | ||
{ | ||
"count": 1, | ||
"id": "ae2:fluid_cell_housing" | ||
}, | ||
{ | ||
"count": 1, | ||
"id": "ae2:cell_component_4k" | ||
} | ||
] | ||
} |
22 changes: 22 additions & 0 deletions
22
src/generated/resources/data/ae2/recipe/cell_upgrade/portable_fluid_cell_64k.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"type": "ae2:storage_cell_disassembly", | ||
"cell": "ae2:portable_fluid_cell_64k", | ||
"cell_disassembly_items": [ | ||
{ | ||
"count": 1, | ||
"id": "ae2:chest" | ||
}, | ||
{ | ||
"count": 1, | ||
"id": "ae2:energy_cell" | ||
}, | ||
{ | ||
"count": 1, | ||
"id": "ae2:fluid_cell_housing" | ||
}, | ||
{ | ||
"count": 1, | ||
"id": "ae2:cell_component_64k" | ||
} | ||
] | ||
} |
22 changes: 22 additions & 0 deletions
22
src/generated/resources/data/ae2/recipe/cell_upgrade/portable_item_cell_16k.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"type": "ae2:storage_cell_disassembly", | ||
"cell": "ae2:portable_item_cell_16k", | ||
"cell_disassembly_items": [ | ||
{ | ||
"count": 1, | ||
"id": "ae2:chest" | ||
}, | ||
{ | ||
"count": 1, | ||
"id": "ae2:energy_cell" | ||
}, | ||
{ | ||
"count": 1, | ||
"id": "ae2:item_cell_housing" | ||
}, | ||
{ | ||
"count": 1, | ||
"id": "ae2:cell_component_16k" | ||
} | ||
] | ||
} |
22 changes: 22 additions & 0 deletions
22
src/generated/resources/data/ae2/recipe/cell_upgrade/portable_item_cell_1k.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"type": "ae2:storage_cell_disassembly", | ||
"cell": "ae2:portable_item_cell_1k", | ||
"cell_disassembly_items": [ | ||
{ | ||
"count": 1, | ||
"id": "ae2:chest" | ||
}, | ||
{ | ||
"count": 1, | ||
"id": "ae2:energy_cell" | ||
}, | ||
{ | ||
"count": 1, | ||
"id": "ae2:item_cell_housing" | ||
}, | ||
{ | ||
"count": 1, | ||
"id": "ae2:cell_component_1k" | ||
} | ||
] | ||
} |
22 changes: 22 additions & 0 deletions
22
src/generated/resources/data/ae2/recipe/cell_upgrade/portable_item_cell_256k.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"type": "ae2:storage_cell_disassembly", | ||
"cell": "ae2:portable_item_cell_256k", | ||
"cell_disassembly_items": [ | ||
{ | ||
"count": 1, | ||
"id": "ae2:chest" | ||
}, | ||
{ | ||
"count": 1, | ||
"id": "ae2:energy_cell" | ||
}, | ||
{ | ||
"count": 1, | ||
"id": "ae2:item_cell_housing" | ||
}, | ||
{ | ||
"count": 1, | ||
"id": "ae2:cell_component_256k" | ||
} | ||
] | ||
} |
22 changes: 22 additions & 0 deletions
22
src/generated/resources/data/ae2/recipe/cell_upgrade/portable_item_cell_4k.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"type": "ae2:storage_cell_disassembly", | ||
"cell": "ae2:portable_item_cell_4k", | ||
"cell_disassembly_items": [ | ||
{ | ||
"count": 1, | ||
"id": "ae2:chest" | ||
}, | ||
{ | ||
"count": 1, | ||
"id": "ae2:energy_cell" | ||
}, | ||
{ | ||
"count": 1, | ||
"id": "ae2:item_cell_housing" | ||
}, | ||
{ | ||
"count": 1, | ||
"id": "ae2:cell_component_4k" | ||
} | ||
] | ||
} |
Oops, something went wrong.