add some more species things

This commit is contained in:
Pyritie 2025-12-25 11:19:33 +00:00
parent 1031f3931e
commit 6d95f87218
21 changed files with 206 additions and 10 deletions

View file

@ -99,4 +99,59 @@ function registerSpeciesRecipes(event) {
B: 'species:kinetic_core',
C: 'tacz:target'
}).id('tfg:shaped/deflector_dummy')
event.recipes.tfc.sewing('species:wicked_mask',
[
1, 0, 0, 1, 0, 0, 1,
1, 0, 0, 1, 0, 0, 1,
1, 0, 0, 1, 0, 0, 1,
0, 0, 0, 1, 0, 0, 1,
0, 0, 0, 1, 0, 0, 1
],
[
1, 1, 1, 1, 0, 0, 0, 0,
1, -1, -1, 1, 0, -1, -1, 0,
1, 1, 1, 1, 0, 0, 0, 0,
1, 1, -1, -1, -1, -1, 0, 0
]).id('tfg:sewing/wicked_mask')
event.recipes.gtceu.assembler('tfg:wicked_mask')
.itemInputs('2x #tfc:sewing_light_cloth', '2x #tfc:sewing_dark_cloth', '3x #forge:string')
.itemOutputs('species:wicked_mask')
.EUt(GTValues.VA[GTValues.ULV])
.duration(200)
event.recipes.firmalife.mixing_bowl()
.outputItem('2x species:wicked_treat')
.itemIngredients(['#tfg:medicine', 'minecraft:bone_meal', 'minecraft:bone_meal'])
.id('tfg:mixing_bowl/wicked_treat')
event.recipes.gtceu.mixer('tfg:wicked_treat')
.itemInputs('#tfg:medicine', '2x minecraft:bone_meal')
.itemOutputs('2x species:wicked_treat')
.EUt(GTValues.VA[GTValues.ULV])
.duration(200)
event.shaped('species:smoke_bomb', [
' A ',
'BCB',
'EDE'
], {
A: '#forge:string',
B: 'minecraft:paper',
C: '#tfg:invisibility_ingredients',
D: 'gtceu:sticky_resin',
E: '#tfc:powders'
}).id('tfg:shaped/smoke_bomb')
event.shaped('2x species:smoke_bomb', [
' B ',
'BCB',
' D '
], {
A: '#forge:string',
B: 'minecraft:paper',
C: '#tfg:invisibility_ingredients',
D: 'tfg:dry_ice',
}).id('tfg:shaped/smoke_bomb_dry_ice')
}