-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(recipes): add new creative recipes for various mods
- Introduce recipes for AE2 Creative Energy Cell, Botania Creative Pool, and Creative Mana Tablet. - Update recipes for Draconic Evolution Creative Capacitor and Creative OP Capacitor. - Include new recipes for EIO Creative Power, Mekanism Creative Bin, Creative Chemical Tank, Creative Energy Cube, and Creative Fluid Tank. - Add infinity totem recipe with damage tag for consistency. BREAKING CHANGE: Some recipes now require additional ingredients from other mods, which may affect existing crafting patterns.
- Loading branch information
Showing
25 changed files
with
897 additions
and
234 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
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
55 changes: 55 additions & 0 deletions
55
src/generated/resources/data/avaritia/recipes/eio_creative_power.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,55 @@ | ||
{ | ||
"type": "forge:conditional", | ||
"recipes": [ | ||
{ | ||
"conditions": [ | ||
{ | ||
"type": "forge:mod_loaded", | ||
"modid": "ernderio" | ||
} | ||
], | ||
"recipe": { | ||
"type": "avaritia:shaped_extreme_craft", | ||
"category": "equipment", | ||
"key": { | ||
"C": { | ||
"item": "ernderio:ender_crystal" | ||
}, | ||
"E": { | ||
"item": "ernderio:sentient_ender" | ||
}, | ||
"I": { | ||
"item": "avaritia:infinity_ingot" | ||
}, | ||
"N": { | ||
"item": "avaritia:neutron_ingot" | ||
}, | ||
"V": { | ||
"item": "ernderio:vibrant_capacitor_bank" | ||
}, | ||
"W": { | ||
"item": "ernderio:weather_crystal" | ||
}, | ||
"Z": { | ||
"item": "ernderio:frank_n_zombie" | ||
} | ||
}, | ||
"pattern": [ | ||
"INIIIIINI", | ||
"NZEEEEEZN", | ||
"IECWWWCEI", | ||
"IEWZIZWEI", | ||
"IEWIVIWEI", | ||
"IEWZIZWEI", | ||
"IECWWWCEI", | ||
"NZEEEEEZN", | ||
"INIIIIINI" | ||
], | ||
"result": { | ||
"item": "ernderio:creative_power" | ||
}, | ||
"show_notification": true | ||
} | ||
} | ||
] | ||
} |
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
55 changes: 55 additions & 0 deletions
55
src/generated/resources/data/avaritia/recipes/mek_creative_bin.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,55 @@ | ||
{ | ||
"type": "forge:conditional", | ||
"recipes": [ | ||
{ | ||
"conditions": [ | ||
{ | ||
"type": "forge:mod_loaded", | ||
"modid": "mekanism" | ||
} | ||
], | ||
"recipe": { | ||
"type": "avaritia:shaped_extreme_craft", | ||
"category": "equipment", | ||
"key": { | ||
"A": { | ||
"item": "mekanism:fusion_reactor_frame" | ||
}, | ||
"B": { | ||
"item": "mekanism:ultimate_energy_cube" | ||
}, | ||
"C": { | ||
"item": "mekanism:ultimate_fluid_tank" | ||
}, | ||
"D": { | ||
"item": "mekanism:ultimate_chemical_tank" | ||
}, | ||
"E": { | ||
"item": "mekanism:ultimate_bin" | ||
}, | ||
"I": { | ||
"item": "avaritia:infinity_ingot" | ||
}, | ||
"S": { | ||
"item": "avaritia:infinity_catalyst" | ||
} | ||
}, | ||
"pattern": [ | ||
"AAAAAAAAA", | ||
"AEIIIIIEA", | ||
"AEIIIIIEA", | ||
"AEIIIIIEA", | ||
"AEEESEEEA", | ||
"AEEEEEEEA", | ||
"AEBCDCBEA", | ||
"AEBCDCBEA", | ||
"AAAAAAAAA" | ||
], | ||
"result": { | ||
"item": "mekanism:creative_bin" | ||
}, | ||
"show_notification": true | ||
} | ||
} | ||
] | ||
} |
Oops, something went wrong.