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

152 lines
5.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:500
// Written by EnigmaQuip as a post almost unified recipe generation script for missing recipes
ServerEvents.recipes(allthemods => {
if (global.devLogging) {
console.log('Finishing Unifying on Plates')
}
let plateCount = {
create: 0,
ftbic: 0,
ie: 0,
thermal: 0,
adastra: 0
}
global.auTags.plates.forEach(material => {
let plate = global.itemFromTag('plates', material)
if (plate.isEmpty()) {
console.log(`${material} does not have a plate 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.Create_Loaded) {
// Check if create press recipe exists and add it if not
let count = allthemods.recipeStream({ type: 'create:pressing' }).mapToInt(recipe => {
let hasMatch = false
recipe.json.get('results').forEach(item => {
if (plate.specialEquals(Item.of(item), true)) {
hasMatch = true
}
})
if (hasMatch) { return 1 }
return 0
}).sum()
if (count == 0) {
allthemods.custom({
type: 'create:pressing',
ingredients: [ingotTag.toJson()],
results: [plate.withCount(1).toJson()]
}).id(`allthemods:create/pressing/${material}_ingot`)
plateCount.create++
}
}
if (global.loaded.FTBIC_Loaded) {
// Check if ftbic rolling recipe exists and add it if not
let count = allthemods.recipeStream({ type: 'ftbic:rolling' }).mapToInt(recipe => {
let hasMatch = false
recipe.json.get('outputItems').forEach(item => {
if (plate.specialEquals(Item.of(item), true)) {
hasMatch = true
}
})
if (hasMatch) { return 1 }
return 0
}).sum()
if (count == 0) {
allthemods.custom({
type: 'ftbic:rolling',
inputItems: [{ "count": 1, "ingredient": ingotTag.toJson() }],
outputItems: [plate.withCount(1).toJson()]
}).id(`allthemods:ftbic/rolling/ingots/${material}_to_${material}_plate`)
plateCount.ftbic++
}
}
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 (plate.equalsIgnoringCount(Item.of(result.get('base_ingredient')))) { return 1 }
} else if (plate.equalsIgnoringCount(Item.of(result))) { return 1 }
return 0
}).sum()
if (count == 0) {
allthemods.custom({
type: 'immersiveengineering:metal_press',
mold: 'immersiveengineering:mold_plate',
input: ingotTag.toJson(),
result: plate.toJson(),
energy: 2400
}).id(`allthemods:immersiveengineering/metalpress/plate_${material}`)
plateCount.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 (plate.specialEquals(Item.of(item), true)) {
hasMatch = true
}
})
if (hasMatch) { return 1 }
return 0
}).sum()
if (count == 0) {
allthemods.custom({
type: 'thermal:press',
ingredient: ingotTag.toJson(),
result: [plate.toJson()],
}).id(`allthemods:thermal/machines/press/press_${material}_ingot_to_plate`)
plateCount.thermal++
}
}
// ad astra compressor
if (global.loaded.AdAstra_Loaded) {
let count = allthemods.recipeStream({ type: 'ad_astra:compressing' }).mapToInt(recipe => {
if (plate.equalsIgnoringCount(Item.of(recipe.json.get('result').get('id')))) { return 1 }
return 0
}).sum()
if (count == 0) {
allthemods.custom({
type: 'ad_astra:compressing',
cookingtime: 100,
energy: 20,
ingredient: ingotTag.toJson(),
result: {
count: plate.count,
id: plate.id
}
}).id(`allthemods:ad_astra/compressing/${material}_plate_from_compressing_${material}_ingot`)
plateCount.adastra++
}
}
})
if (global.devLogging) {
console.log(`Added Plate Recipes - Create: ${plateCount.create}, FTBIC: ${plateCount.ftbic}, IE: ${plateCount.ie}, Thermal: ${plateCount.thermal}, Ad Astra: ${plateCount.adastra}`)
// Added Plate Recipes - Create: 21, FTBIC: 27, IE: 13, Thermal: 11, Ad Astra: 32
}
})
// 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.