ATM9-Vocality/kubejs/server_scripts/postUnify/nuggets.js
2024-06-13 23:34:56 -05:00

94 lines
3.4 KiB
JavaScript

// This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - AllTheMods 9.
// As all AllTheMods packs are licensed under All Rights Reserved, this file is not allowed to be used in any public packs not released by the AllTheMods Team, without explicit permission.
//priority:650
// Written by EnigmaQuip as a post almost unified recipe generation script for missing recipes
// Missing tags for unify
ServerEvents.tags('item', allthemods => {
['falsite', 'ventium', 'horizonite'].forEach(metal => {
allthemods.add(`forge:nuggets/${metal}`, `blue_skies:${metal}_nugget`)
})
})
ServerEvents.recipes(allthemods => {
if (global.devLogging) {
console.log('Finishing Unifying on Nuggets')
}
let nuggetCount = {
ie: 0,
thermal: 0
}
global.auTags.nuggets.forEach(material => {
let nugget = global.itemFromTag('nuggets', material)
if (nugget.isEmpty()) {
console.log(`${material} does not have a nugget tag entry`)
return
}
let ingotTag = Ingredient.of(`#forge:ingots/${material}`)
if (ingotTag.getFirst().isEmpty()) {
// check for gem
ingotTag = Ingredient.of(`#forge:gems/${material}`)
if (ingotTag.getFirst().isEmpty()) { return }
}
if (global.loaded.IE_Loaded) {
// Check if ie metal press recipe exists and add it if not
let count = allthemods.recipeStream({ type: 'immersiveengineering:metal_press' }).mapToInt(recipe => {
let result = recipe.json.get('result')
if (result.has('base_ingredient')) {
if (nugget.equalsIgnoringCount(Item.of(result.get('base_ingredient')))) { return 1 }
} else if (nugget.equalsIgnoringCount(Item.of(result))) { return 1 }
return 0
}).sum()
if (count == 0) {
allthemods.custom({
type: 'immersiveengineering:metal_press',
mold: 'immersiveengineering:mold_unpacking',
input: ingotTag.toJson(),
result: nugget.withCount(9).toJson(),
energy: 2400
}).id(`allthemods:immersiveengineering/metalpress/unpacking/nugget_${material}`)
nuggetCount.ie++
}
}
if (global.loaded.Thermal_Loaded) {
// Check if thermal multiservo press recipe exists and add it if not
let count = allthemods.recipeStream({ type: 'thermal:press' }).mapToInt(recipe => {
let hasMatch = false
recipe.json.get('result').forEach(item => {
if (nugget.specialEquals(Item.of(item), true)) {
hasMatch = true
}
})
if (hasMatch) { return 1 }
return 0
}).sum()
if (count == 0) {
allthemods.custom({
type: 'thermal:press',
ingredients: [
ingotTag.toJson(),
Ingredient.of('thermal:press_unpacking_die').toJson(),
],
result: [nugget.withCount(9).toJson()],
}).id(`allthemods:thermal/machines/press/unpacking/press_${material}_nugget_unpacking`)
nuggetCount.thermal++
}
}
})
if (global.devLogging) {
console.log(`Added Nugget Recipes - IE: ${nuggetCount.ie}, Thermal: ${nuggetCount.thermal}`)
// Added Nugget Recipes - IE: 45, Thermal: 24
}
})
// This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - AllTheMods 9.
// As all AllTheMods packs are licensed under All Rights Reserved, this file is not allowed to be used in any public packs not released by the AllTheMods Team, without explicit permission.