227 lines
7.4 KiB
JavaScript
227 lines
7.4 KiB
JavaScript
// This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - AllTheMods 10.
|
|
// 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.
|
|
|
|
ServerEvents.recipes(allthemods => {
|
|
|
|
//Air Essence
|
|
allthemods.shaped('kubejs:air_essence_block', [
|
|
'SSS',
|
|
'SSS',
|
|
'SSS'
|
|
], {
|
|
S: 'ars_nouveau:air_essence'
|
|
})
|
|
allthemods.shapeless('9x ars_nouveau:air_essence', [ // arg 1: output
|
|
'kubejs:air_essence_block'
|
|
])
|
|
|
|
//Earth Essence
|
|
allthemods.shaped('kubejs:earth_essence_block', [
|
|
'SSS',
|
|
'SSS',
|
|
'SSS'
|
|
], {
|
|
S: 'ars_nouveau:earth_essence'
|
|
})
|
|
allthemods.shapeless('9x ars_nouveau:earth_essence', [ // arg 1: output
|
|
'kubejs:earth_essence_block'
|
|
])
|
|
|
|
//Fire Essence
|
|
allthemods.shaped('kubejs:fire_essence_block', [
|
|
'SSS',
|
|
'SSS',
|
|
'SSS'
|
|
], {
|
|
S: 'ars_nouveau:fire_essence'
|
|
})
|
|
allthemods.shapeless('9x ars_nouveau:fire_essence', [ // arg 1: output
|
|
'kubejs:fire_essence_block'
|
|
])
|
|
|
|
//Water Essence
|
|
allthemods.shaped('kubejs:water_essence_block', [
|
|
'SSS',
|
|
'SSS',
|
|
'SSS'
|
|
], {
|
|
S: 'ars_nouveau:water_essence'
|
|
})
|
|
allthemods.shapeless('9x ars_nouveau:water_essence', [ // arg 1: output
|
|
'kubejs:water_essence_block'
|
|
])
|
|
|
|
function energizing(result, inputs, energy, id) {
|
|
let recipe = {
|
|
"type": "powah:energizing",
|
|
"energy": energy,
|
|
"ingredients": [],
|
|
"result": {
|
|
"count": result.count || 1,
|
|
"id": result.item
|
|
}
|
|
};
|
|
|
|
inputs.forEach(input => {
|
|
|
|
let ingredients = {}
|
|
|
|
if (input.tag) {
|
|
ingredients.tag = input.tag;
|
|
} else {
|
|
ingredients.item = input.item;
|
|
}
|
|
|
|
recipe.ingredients.push(ingredients);
|
|
});
|
|
|
|
allthemods.custom(recipe).id(`kubejs:energizing/${id}`);
|
|
}
|
|
|
|
//Vibranium - ATM Alloy
|
|
energizing(
|
|
{ item: 'allthemodium:vibranium_allthemodium_alloy_ingot' },
|
|
[
|
|
{ tag: 'c:ingots/allthemodium' }, { item: 'allthemodium:piglich_heart' },
|
|
{ item: 'allthecompressed:nitro_crystal_block_1x' },
|
|
{ item: 'allthemodium:piglich_heart' },
|
|
{ tag: 'c:ingots/vibranium' }],
|
|
1000000000,
|
|
'vibranium_allthemodium_alloy_ingot'
|
|
);
|
|
energizing(
|
|
{ item: 'allthemodium:vibranium_allthemodium_alloy_block' },
|
|
[
|
|
{ tag: 'c:storage_blocks/allthemodium' },
|
|
{ item: 'allthemodium:piglich_heart_block' },
|
|
{ item: 'allthecompressed:nitro_crystal_block_2x' },
|
|
{ item: 'allthemodium:piglich_heart_block' },
|
|
{ tag: 'c:storage_blocks/vibranium' }],
|
|
9000000000,
|
|
'vibranium_allthemodium_alloy_block'
|
|
);
|
|
for (let i = 3; i < 10; i++) {
|
|
energizing(
|
|
{ item: `allthecompressed:vibranium_allthemodium_alloy_block_${i-2}x` },
|
|
[
|
|
{ item: `allthecompressed:allthemodium_block_${i-2}x`},
|
|
{ item: `allthecompressed:piglich_heart_block_${i-2}x` },
|
|
{ item: `allthecompressed:nitro_crystal_block_${i}x` },
|
|
{ item: `allthecompressed:piglich_heart_block_${i-2}x` },
|
|
{ item: `allthecompressed:vibranium_block_${i-2}x` }],
|
|
9000000000 * Math.pow(3, i - 2),
|
|
`vibranium_allthemodium_alloy_block_${i-2}x`
|
|
);
|
|
}
|
|
|
|
function enchanting_apparatus(output, pedestalItems, reagent, nbt, sourceCost, id) {
|
|
let recipe = {
|
|
"type": "ars_nouveau:enchanting_apparatus",
|
|
"keepNbtOfReagent": nbt,
|
|
"pedestalItems": [],
|
|
"reagent": {},
|
|
"result": {
|
|
"count": output.count || 1,
|
|
"id": output.item
|
|
},
|
|
"sourceCost": sourceCost
|
|
};
|
|
|
|
if (reagent.tag) {
|
|
recipe.reagent.tag = reagent.tag;
|
|
} else {
|
|
recipe.reagent.item = reagent.item;
|
|
}
|
|
|
|
pedestalItems.forEach(input => {
|
|
|
|
let ingredients = {}
|
|
|
|
if (input.tag) {
|
|
ingredients.tag = input.tag;
|
|
} else {
|
|
ingredients.item = input.item;
|
|
}
|
|
|
|
recipe.pedestalItems.push(ingredients);
|
|
});
|
|
|
|
allthemods.custom(recipe).id(`kubejs:enchanting_apparatus/${id}`);
|
|
}
|
|
|
|
//Unobtainium - ATM Alloy
|
|
enchanting_apparatus(
|
|
{ item: 'allthemodium:unobtainium_allthemodium_alloy_ingot' },
|
|
[
|
|
{ item: 'allthemodium:piglich_heart' },
|
|
{ item: 'ars_nouveau:air_essence' },
|
|
{ tag: 'c:ingots/allthemodium' },
|
|
{ item: 'ars_nouveau:earth_essence' },
|
|
{ item: 'allthemodium:piglich_heart' },
|
|
{ item: 'ars_nouveau:fire_essence' },
|
|
{ tag: 'c:ingots/unobtainium' },
|
|
{ item: 'ars_nouveau:water_essence' }],
|
|
{ item: 'ars_nouveau:source_gem' },
|
|
false,
|
|
10000,
|
|
'unobtainium_allthemodium_alloy_ingot'
|
|
);
|
|
enchanting_apparatus(
|
|
{ item: 'allthemodium:unobtainium_allthemodium_alloy_block' },
|
|
[
|
|
{ item: 'allthemodium:piglich_heart_block' },
|
|
{ item: 'kubejs:air_essence_block' },
|
|
{ tag: 'c:storage_blocks/allthemodium' },
|
|
{ item: 'kubejs:earth_essence_block' },
|
|
{ item: 'allthemodium:piglich_heart_block' },
|
|
{ item: 'kubejs:fire_essence_block' },
|
|
{ tag: 'c:storage_blocks/unobtainium' },
|
|
{ item: 'kubejs:water_essence_block' }],
|
|
{ item: 'ars_nouveau:source_gem_block' },
|
|
false,
|
|
90000,
|
|
'unobtainium_allthemodium_alloy_block'
|
|
);
|
|
|
|
// input[], input_fluid, processing_time, output, outputfluid
|
|
let dissolution_chamber = allthemods.recipes.industrialforegoing.dissolution_chamber
|
|
|
|
//Unobtainium - Vibranium Alloy
|
|
|
|
dissolution_chamber(
|
|
[
|
|
'industrialforegoing:pink_slime',
|
|
'#c:ingots/vibranium',
|
|
'industrialforegoing:pink_slime',
|
|
'allthemodium:piglich_heart',
|
|
'allthemodium:piglich_heart',
|
|
'industrialforegoing:pink_slime',
|
|
'#c:ingots/unobtainium',
|
|
'industrialforegoing:pink_slime'
|
|
],
|
|
"100x allthemodium:soul_lava",
|
|
200,
|
|
'allthemodium:unobtainium_vibranium_alloy_ingot'
|
|
)
|
|
|
|
dissolution_chamber(
|
|
[
|
|
'industrialforegoing:pink_slime_block',
|
|
'#c:storage_blocks/vibranium',
|
|
'industrialforegoing:pink_slime_block',
|
|
'allthemodium:piglich_heart_block',
|
|
'allthemodium:piglich_heart_block',
|
|
'industrialforegoing:pink_slime_block',
|
|
'#c:storage_blocks/unobtainium',
|
|
'industrialforegoing:pink_slime_block'
|
|
],
|
|
"900x allthemodium:soul_lava",
|
|
200,
|
|
'allthemodium:unobtainium_vibranium_alloy_block'
|
|
)
|
|
|
|
})
|
|
|
|
// This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - AllTheMods 10.
|
|
// 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.
|