-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added missing recipe for the stock exporter
- Loading branch information
Showing
7 changed files
with
74 additions
and
6 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
4 changes: 2 additions & 2 deletions
4
src/generated/resources/.cache/89b86ab0e66f527166d98df92ddbcf5416ed58f6
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
// 1.21.1 2024-09-28T22:02:19.793515 Language | ||
51ffe0566d8ed348184d1de5471b329c91ed6e91 assets/advanced_ae/lang/en_us.json | ||
// 1.21.1 2024-09-29T02:57:22.5476988 Language | ||
57374ae59aee4a0da1f41789309ea7e62320b518 assets/advanced_ae/lang/en_us.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
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
32 changes: 32 additions & 0 deletions
32
src/generated/resources/data/advanced_ae/advancement/recipes/misc/stock_export_bus.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,32 @@ | ||
{ | ||
"parent": "minecraft:recipes/root", | ||
"criteria": { | ||
"hasItem": { | ||
"conditions": { | ||
"items": [ | ||
{ | ||
"items": "ae2:export_bus" | ||
} | ||
] | ||
}, | ||
"trigger": "minecraft:inventory_changed" | ||
}, | ||
"has_the_recipe": { | ||
"conditions": { | ||
"recipe": "advanced_ae:stock_export_bus" | ||
}, | ||
"trigger": "minecraft:recipe_unlocked" | ||
} | ||
}, | ||
"requirements": [ | ||
[ | ||
"has_the_recipe", | ||
"hasItem" | ||
] | ||
], | ||
"rewards": { | ||
"recipes": [ | ||
"advanced_ae:stock_export_bus" | ||
] | ||
} | ||
} |
24 changes: 24 additions & 0 deletions
24
src/generated/resources/data/advanced_ae/recipe/stock_export_bus.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,24 @@ | ||
{ | ||
"type": "minecraft:crafting_shaped", | ||
"category": "misc", | ||
"key": { | ||
"C": { | ||
"item": "ae2:calculation_processor" | ||
}, | ||
"E": { | ||
"item": "ae2:export_bus" | ||
}, | ||
"L": { | ||
"item": "ae2:logic_processor" | ||
} | ||
}, | ||
"pattern": [ | ||
" ", | ||
"CEL", | ||
" " | ||
], | ||
"result": { | ||
"count": 1, | ||
"id": "advanced_ae:stock_export_bus_part" | ||
} | ||
} |
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