-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bug: Fixed issue #730, added recipes for the Wired Fuze and Fixed Can…
…non Mount - Added common CBC tag for copper ingots with EMI translation
- Loading branch information
1 parent
7fd6a48
commit 3750a52
Showing
19 changed files
with
279 additions
and
0 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
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
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
33 changes: 33 additions & 0 deletions
33
...nerated/resources/data/createbigcannons/advancements/recipes/misc/fixed_cannon_mount.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,33 @@ | ||
{ | ||
"parent": "minecraft:recipes/root", | ||
"criteria": { | ||
"has_gunpowder": { | ||
"conditions": { | ||
"items": [ | ||
{ | ||
"tag": "createbigcannons:gunpowder" | ||
} | ||
] | ||
}, | ||
"trigger": "minecraft:inventory_changed" | ||
}, | ||
"has_the_recipe": { | ||
"conditions": { | ||
"recipe": "createbigcannons:fixed_cannon_mount" | ||
}, | ||
"trigger": "minecraft:recipe_unlocked" | ||
} | ||
}, | ||
"requirements": [ | ||
[ | ||
"has_gunpowder", | ||
"has_the_recipe" | ||
] | ||
], | ||
"rewards": { | ||
"recipes": [ | ||
"createbigcannons:fixed_cannon_mount" | ||
] | ||
}, | ||
"sends_telemetry_event": false | ||
} |
33 changes: 33 additions & 0 deletions
33
...c/src/generated/resources/data/createbigcannons/advancements/recipes/misc/wired_fuze.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,33 @@ | ||
{ | ||
"parent": "minecraft:recipes/root", | ||
"criteria": { | ||
"has_redstone": { | ||
"conditions": { | ||
"items": [ | ||
{ | ||
"tag": "createbigcannons:dusts_redstone" | ||
} | ||
] | ||
}, | ||
"trigger": "minecraft:inventory_changed" | ||
}, | ||
"has_the_recipe": { | ||
"conditions": { | ||
"recipe": "createbigcannons:wired_fuze" | ||
}, | ||
"trigger": "minecraft:recipe_unlocked" | ||
} | ||
}, | ||
"requirements": [ | ||
[ | ||
"has_redstone", | ||
"has_the_recipe" | ||
] | ||
], | ||
"rewards": { | ||
"recipes": [ | ||
"createbigcannons:wired_fuze" | ||
] | ||
}, | ||
"sends_telemetry_event": false | ||
} |
23 changes: 23 additions & 0 deletions
23
fabric/src/generated/resources/data/createbigcannons/recipes/fixed_cannon_mount.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,23 @@ | ||
{ | ||
"type": "minecraft:crafting_shaped", | ||
"category": "misc", | ||
"key": { | ||
"C": { | ||
"item": "create:andesite_casing" | ||
}, | ||
"G": { | ||
"tag": "createbigcannons:gunpowder" | ||
}, | ||
"I": { | ||
"tag": "createbigcannons:sheet_iron" | ||
} | ||
}, | ||
"pattern": [ | ||
" I ", | ||
"GCG" | ||
], | ||
"result": { | ||
"item": "createbigcannons:fixed_cannon_mount" | ||
}, | ||
"show_notification": true | ||
} |
20 changes: 20 additions & 0 deletions
20
fabric/src/generated/resources/data/createbigcannons/recipes/wired_fuze.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,20 @@ | ||
{ | ||
"type": "minecraft:crafting_shaped", | ||
"category": "misc", | ||
"key": { | ||
"I": { | ||
"tag": "createbigcannons:ingot_copper" | ||
}, | ||
"W": { | ||
"tag": "createbigcannons:dusts_redstone" | ||
} | ||
}, | ||
"pattern": [ | ||
"WIW" | ||
], | ||
"result": { | ||
"count": 4, | ||
"item": "createbigcannons:wired_fuze" | ||
}, | ||
"show_notification": true | ||
} |
17 changes: 17 additions & 0 deletions
17
fabric/src/generated/resources/data/createbigcannons/tags/items/ingot_copper.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,17 @@ | ||
{ | ||
"replace": false, | ||
"values": [ | ||
{ | ||
"id": "#forge:ingots/copper", | ||
"required": false | ||
}, | ||
{ | ||
"id": "#c:ingots/copper", | ||
"required": false | ||
}, | ||
{ | ||
"id": "#c:copper_ingots", | ||
"required": false | ||
} | ||
] | ||
} |
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
33 changes: 33 additions & 0 deletions
33
...nerated/resources/data/createbigcannons/advancements/recipes/misc/fixed_cannon_mount.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,33 @@ | ||
{ | ||
"parent": "minecraft:recipes/root", | ||
"criteria": { | ||
"has_gunpowder": { | ||
"conditions": { | ||
"items": [ | ||
{ | ||
"tag": "createbigcannons:gunpowder" | ||
} | ||
] | ||
}, | ||
"trigger": "minecraft:inventory_changed" | ||
}, | ||
"has_the_recipe": { | ||
"conditions": { | ||
"recipe": "createbigcannons:fixed_cannon_mount" | ||
}, | ||
"trigger": "minecraft:recipe_unlocked" | ||
} | ||
}, | ||
"requirements": [ | ||
[ | ||
"has_gunpowder", | ||
"has_the_recipe" | ||
] | ||
], | ||
"rewards": { | ||
"recipes": [ | ||
"createbigcannons:fixed_cannon_mount" | ||
] | ||
}, | ||
"sends_telemetry_event": false | ||
} |
33 changes: 33 additions & 0 deletions
33
...e/src/generated/resources/data/createbigcannons/advancements/recipes/misc/wired_fuze.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,33 @@ | ||
{ | ||
"parent": "minecraft:recipes/root", | ||
"criteria": { | ||
"has_redstone": { | ||
"conditions": { | ||
"items": [ | ||
{ | ||
"tag": "createbigcannons:dusts_redstone" | ||
} | ||
] | ||
}, | ||
"trigger": "minecraft:inventory_changed" | ||
}, | ||
"has_the_recipe": { | ||
"conditions": { | ||
"recipe": "createbigcannons:wired_fuze" | ||
}, | ||
"trigger": "minecraft:recipe_unlocked" | ||
} | ||
}, | ||
"requirements": [ | ||
[ | ||
"has_redstone", | ||
"has_the_recipe" | ||
] | ||
], | ||
"rewards": { | ||
"recipes": [ | ||
"createbigcannons:wired_fuze" | ||
] | ||
}, | ||
"sends_telemetry_event": false | ||
} |
23 changes: 23 additions & 0 deletions
23
forge/src/generated/resources/data/createbigcannons/recipes/fixed_cannon_mount.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,23 @@ | ||
{ | ||
"type": "minecraft:crafting_shaped", | ||
"category": "misc", | ||
"key": { | ||
"C": { | ||
"item": "create:andesite_casing" | ||
}, | ||
"G": { | ||
"tag": "createbigcannons:gunpowder" | ||
}, | ||
"I": { | ||
"tag": "createbigcannons:sheet_iron" | ||
} | ||
}, | ||
"pattern": [ | ||
" I ", | ||
"GCG" | ||
], | ||
"result": { | ||
"item": "createbigcannons:fixed_cannon_mount" | ||
}, | ||
"show_notification": true | ||
} |
20 changes: 20 additions & 0 deletions
20
forge/src/generated/resources/data/createbigcannons/recipes/wired_fuze.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,20 @@ | ||
{ | ||
"type": "minecraft:crafting_shaped", | ||
"category": "misc", | ||
"key": { | ||
"I": { | ||
"tag": "createbigcannons:ingot_copper" | ||
}, | ||
"W": { | ||
"tag": "createbigcannons:dusts_redstone" | ||
} | ||
}, | ||
"pattern": [ | ||
"WIW" | ||
], | ||
"result": { | ||
"count": 4, | ||
"item": "createbigcannons:wired_fuze" | ||
}, | ||
"show_notification": true | ||
} |
17 changes: 17 additions & 0 deletions
17
forge/src/generated/resources/data/createbigcannons/tags/items/ingot_copper.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,17 @@ | ||
{ | ||
"replace": false, | ||
"values": [ | ||
{ | ||
"id": "#forge:ingots/copper", | ||
"required": false | ||
}, | ||
{ | ||
"id": "#c:ingots/copper", | ||
"required": false | ||
}, | ||
{ | ||
"id": "#c:copper_ingots", | ||
"required": false | ||
} | ||
] | ||
} |
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
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