Is there a way to include a >= statement in NBT data in a recipe?
Forge v43.2.13
KubeJS v1902.6.1-build.364
Code:
e.shaped('thermal:dynamo_gourmand', [
' F ',
'RMR',
'ISI'
], {
I: '#forge:ingots/tin',
R: '#forge:ingots/iron',
F: 'thermal:rf_coil',
S: Item.of('spirit:soul_crystal', '{StoredEntity:{Souls:4}}').weakNBT(),
M: 'excon:complex_mechanism'
})
Goal: Have a recipe that takes soul crystals with greater than or equal to 4 souls.
Currently the recipe works if the gen contains exactly 4 souls, but I'm struggling to find a way to include logic in the NBT.
Any help is greatly appreciated. I've been searching other support tickets, checking javascript forums, and trying things from the wiki for a good hour now so I'm at a bit of a loss.