add auto craft card recipe (#1997)

Signed-off-by: GameStar <56610486+BlueBoat29@users.noreply.github.com>
This commit is contained in:
GameStar 2025-10-09 12:58:26 -05:00 committed by GitHub
parent 21935dccf6
commit 0020bf80c4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -160,6 +160,16 @@ const registerAE2Recipes = (event) => {
D: '#forge:gems/fluix'
}).id('tfg:crafting/speed_card')
//Auto Crafting Card
event.shaped('ae2:auto_complete_card', [
'AB',
'BC'
], {
A: 'ae2:advanced_card',
B: 'ae2:engineering_processor',
C: 'ae2:calculation_processor'
}).id('tfg:crafting/auto_complete_card')
// Void Card
event.shapeless('ae2:void_card', ['ae2:basic_card', 'ae2:calculation_processor'])
.id('tfg:crafting/void_card')