added recipes for buoys and ship helms

This commit is contained in:
illuc 2026-01-23 15:08:11 +02:00
parent 66b4cc861f
commit fcac39f2a2

View file

@ -21,5 +21,34 @@ function registerValkyrienSailsRecipes(event) {
C: '#forge:cloth', C: '#forge:cloth',
B: '#tfc:glass_bottles' B: '#tfc:glass_bottles'
}).id('neuralgia:dedication_bottle') }).id('neuralgia:dedication_bottle')
event.shaped('4x vs_sails:buoy_block', [
'LHL',
'H H',
'LHL'
], {
H: 'firmaciv:large_waterproof_hide',
L: '#tfc:lumber'
}).id('neuralgia:buoy_block')
// HELM
event.shaped('vs_sails:oak_helm', [
'L L',
' L ',
'LLL'
], {
L: '#tfc:lumber',
C: 'gtceu:small_wood_gear'
}).id('neuralgia:oak_helm')
event.shaped('vs_sails:oak_helm_wheel', [
'SLS',
'LCL',
'SLS'
], {
C: 'gtceu:wood_gear',
L: '#tfc:lumber',
S: '#forge:rods/wooden'
}).id('neuralgia:oak_helm_wheel')
} }