90 lines
3.4 KiB
JavaScript
90 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:550
|
|
// Written by EnigmaQuip as a post almost unified recipe generation script for missing recipes
|
|
|
|
// Missing tags for unify
|
|
ServerEvents.tags('item', allthemods => {
|
|
global.blueskies.forEach(metal => {
|
|
allthemods.add(`forge:raw_materials/${metal}`, `blue_skies:raw_${metal}`)
|
|
})
|
|
})
|
|
|
|
ServerEvents.recipes(allthemods => {
|
|
if (global.devLogging) {
|
|
console.log('Finishing Unifying on Raw Materials')
|
|
}
|
|
|
|
let raw_materialCount = {
|
|
ie: 0,
|
|
thermal: 0
|
|
}
|
|
|
|
global.auTags.raw_materials.forEach(material => {
|
|
let raw_material = global.itemFromTag('raw_materials', material)
|
|
if (raw_material.isEmpty()) {
|
|
console.log(`${material} does not have a raw_material tag entry`)
|
|
return
|
|
}
|
|
|
|
let rawblockTag = Ingredient.of(`#forge:storage_blocks/raw_${material}`)
|
|
if (rawblockTag.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 (raw_material.equalsIgnoringCount(Item.of(result.get('base_ingredient')))) { return 1 }
|
|
} else if (raw_material.equalsIgnoringCount(Item.of(result))) { return 1 }
|
|
return 0
|
|
}).sum()
|
|
|
|
if (count == 0) {
|
|
allthemods.custom({
|
|
type: 'immersiveengineering:metal_press',
|
|
mold: 'immersiveengineering:mold_unpacking',
|
|
input: rawblockTag.toJson(),
|
|
result: raw_material.withCount(9).toJson(),
|
|
energy: 2400
|
|
}).id(`allthemods:immersiveengineering/metalpress/raw_material_${material}`)
|
|
raw_materialCount.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 (raw_material.specialEquals(Item.of(item), true)) {
|
|
hasMatch = true
|
|
}
|
|
})
|
|
if (hasMatch) { return 1 }
|
|
return 0
|
|
}).sum()
|
|
|
|
if (count == 0) {
|
|
allthemods.custom({
|
|
type: 'thermal:press',
|
|
ingredients: [
|
|
rawblockTag.toJson(),
|
|
Ingredient.of('thermal:press_unpacking_die').toJson(),
|
|
],
|
|
result: [raw_material.withCount(9).toJson()],
|
|
}).id(`allthemods:thermal/machines/press/unpacking/press_raw_${material}_unpacking`)
|
|
raw_materialCount.thermal++
|
|
}
|
|
}
|
|
})
|
|
|
|
if (global.devLogging) {
|
|
console.log(`Added Raw Material Recipes - IE: ${raw_materialCount.ie}, Thermal: ${raw_materialCount.thermal}`)
|
|
// Added Raw Material Recipes - IE: 26, Thermal: 16
|
|
}
|
|
})
|
|
|
|
// 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.
|