Version 5.4
This commit is contained in:
14
minecraft/kubejs/server_scripts/modpack/atm_alloy_tools.js
Normal file
14
minecraft/kubejs/server_scripts/modpack/atm_alloy_tools.js
Normal file
@@ -0,0 +1,14 @@
|
||||
// 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 => {
|
||||
|
||||
allthemods.replaceInput(
|
||||
{ id: 'modern_industrialization:upgrade/packer/quantum/sword' },
|
||||
'minecraft:netherite_sword',
|
||||
'allthemodium:alloy_paxel'
|
||||
)
|
||||
})
|
||||
|
||||
// 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.
|
||||
226
minecraft/kubejs/server_scripts/modpack/atm_alloys.js
Normal file
226
minecraft/kubejs/server_scripts/modpack/atm_alloys.js
Normal file
@@ -0,0 +1,226 @@
|
||||
// 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.
|
||||
55
minecraft/kubejs/server_scripts/modpack/atm_star.js
Normal file
55
minecraft/kubejs/server_scripts/modpack/atm_star.js
Normal file
@@ -0,0 +1,55 @@
|
||||
// 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 => {
|
||||
|
||||
//Patric Star - Create
|
||||
allthemods.custom({
|
||||
"type": "create:mechanical_crafting",
|
||||
"accept_mirrored": false,
|
||||
"category": "misc",
|
||||
"key": {
|
||||
"A": {
|
||||
"item": "minecraft:magenta_concrete"
|
||||
},
|
||||
"B": {
|
||||
"item": "minecraft:pink_concrete"
|
||||
},
|
||||
"C": {
|
||||
"item": "minecraft:pink_concrete_powder"
|
||||
},
|
||||
"D": {
|
||||
"item": "minecraft:green_concrete"
|
||||
},
|
||||
"E": {
|
||||
"item": "minecraft:green_concrete_powder"
|
||||
},
|
||||
"F": {
|
||||
"item": "minecraft:lime_concrete"
|
||||
},
|
||||
"G": {
|
||||
"item": "minecraft:magenta_concrete_powder"
|
||||
}
|
||||
},
|
||||
"pattern": [
|
||||
" B ",
|
||||
" BCA ",
|
||||
"BBBGCABBB",
|
||||
"ACGCGGGCA",
|
||||
" AAGGGBA ",
|
||||
" EDDDE ",
|
||||
" EFEDEFE ",
|
||||
"BEDD DDEB",
|
||||
"AAA AAA"
|
||||
],
|
||||
"result": {
|
||||
"count": 1,
|
||||
"id": "allthetweaks:patrick_star"
|
||||
},
|
||||
"show_notification": false
|
||||
}).id("allthetweaks:allthetweaks/patrick_star")
|
||||
|
||||
})
|
||||
|
||||
// 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.
|
||||
374
minecraft/kubejs/server_scripts/modpack/atm_star_creative.js
Normal file
374
minecraft/kubejs/server_scripts/modpack/atm_star_creative.js
Normal file
@@ -0,0 +1,374 @@
|
||||
// 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 => {
|
||||
|
||||
|
||||
//AE2
|
||||
|
||||
allthemods.custom(
|
||||
{
|
||||
type: 'powah:energizing',
|
||||
energy: 2147483647,
|
||||
ingredients: [
|
||||
Ingredient.of('megacells:mega_energy_cell').toJson(),
|
||||
Ingredient.of('megacells:mega_energy_cell').toJson(),
|
||||
Ingredient.of('allthetweaks:atm_star').toJson(),
|
||||
Ingredient.of('megacells:mega_energy_cell').toJson(),
|
||||
Ingredient.of('megacells:mega_energy_cell').toJson()
|
||||
],
|
||||
result: {
|
||||
count: 1,
|
||||
id: 'ae2:creative_energy_cell'
|
||||
}
|
||||
}
|
||||
).id('allthemods:energizing/ae2_creative_energy_cell')
|
||||
|
||||
//Ars Noveau
|
||||
|
||||
allthemods.recipes.kubejs.shaped('allthearcanistgear:creative_spell_book',
|
||||
[
|
||||
'BSG',
|
||||
'GGE',
|
||||
'EER'
|
||||
],
|
||||
{
|
||||
B: 'ars_nouveau:archmage_spell_book',
|
||||
S: 'allthetweaks:atm_star',
|
||||
G: 'ars_nouveau:source_gem_block',
|
||||
E: 'minecraft:ender_eye',
|
||||
R: 'occultism:soul_gem'
|
||||
}
|
||||
)
|
||||
|
||||
allthemods.custom(
|
||||
{
|
||||
type: 'ars_nouveau:enchanting_apparatus',
|
||||
keepNbtOfReagent: false,
|
||||
pedestalItems: [
|
||||
Ingredient.of('ars_nouveau:source_gem_block').toJson(),
|
||||
Ingredient.of('allthemodium:allthemodium_source_jar[ars_nouveau:block_fill_contents=100000]').toJson(),
|
||||
Ingredient.of('ars_nouveau:source_gem_block').toJson(),
|
||||
Ingredient.of('allthemodium:allthemodium_source_jar[ars_nouveau:block_fill_contents=100000]').toJson(),
|
||||
Ingredient.of('ars_nouveau:source_gem_block').toJson(),
|
||||
Ingredient.of('allthemodium:allthemodium_source_jar[ars_nouveau:block_fill_contents=100000]').toJson(),
|
||||
Ingredient.of('ars_nouveau:source_gem_block').toJson(),
|
||||
Ingredient.of('allthemodium:allthemodium_source_jar[ars_nouveau:block_fill_contents=100000]').toJson()
|
||||
],
|
||||
reagent: [
|
||||
Ingredient.of('allthetweaks:atm_star').toJson()
|
||||
],
|
||||
result: {
|
||||
count: 1,
|
||||
id: 'ars_nouveau:creative_source_jar'
|
||||
},
|
||||
sourceCost: 0
|
||||
}
|
||||
).id('allthemods:enchanting_apparatus/creative_source_jar')
|
||||
|
||||
//EvilCraft
|
||||
|
||||
allthemods.recipes.kubejs.shaped('evilcraft:creative_blood_drop',
|
||||
[
|
||||
'BCB',
|
||||
'DAE',
|
||||
'BFB'
|
||||
],
|
||||
{
|
||||
A: 'allthetweaks:atm_star',
|
||||
B: 'evilcraft:promise_tier_3',
|
||||
C: 'evilcraft:flesh_rejuvenated[cyclopscore:fluid_content={amount:10000,id:"evilcraft:blood"}]',
|
||||
D: 'evilcraft:mace_of_distortion[cyclopscore:fluid_content={amount:4000,id:"evilcraft:blood"}]',
|
||||
E: 'evilcraft:necromancer_staff[cyclopscore:fluid_content={amount:10000,id:"evilcraft:blood"}]',
|
||||
F: 'evilcraft:broom[cyclopscore:fluid_content={amount:10000,id:"evilcraft:blood"}]',
|
||||
}
|
||||
)
|
||||
//Integrated Dynamics
|
||||
|
||||
allthemods.custom(
|
||||
{
|
||||
type: 'powah:energizing',
|
||||
energy: 2147483647,
|
||||
ingredients: [
|
||||
Ingredient.of('integrateddynamics:energy_battery').toJson(),
|
||||
Ingredient.of('integrateddynamics:energy_battery').toJson(),
|
||||
Ingredient.of('allthetweaks:atm_star').toJson(),
|
||||
Ingredient.of('integrateddynamics:energy_battery').toJson(),
|
||||
Ingredient.of('integrateddynamics:energy_battery').toJson()
|
||||
],
|
||||
result: {
|
||||
count: 1,
|
||||
id: 'integrateddynamics:energy_battery_creative'
|
||||
}
|
||||
}
|
||||
).id('allthemods:energizing/integrateddynamics_energy_battery_creative')
|
||||
|
||||
//Iron Jetpacks
|
||||
|
||||
allthemods.recipes.kubejs.shaped('ironjetpacks:cell[ironjetpacks:jetpack_id="ironjetpacks:creative",rarity="epic"]',
|
||||
[
|
||||
' A ',
|
||||
'BCB',
|
||||
' A '
|
||||
],
|
||||
{
|
||||
A: '#c:storage_blocks/redstone',
|
||||
B: 'allthemodium:unobtainium_block',
|
||||
C: 'powah:battery_nitro'
|
||||
}
|
||||
).id('allthemods:ironjetpacks_creative_cell')
|
||||
|
||||
allthemods.recipes.kubejs.shaped('ironjetpacks:thruster[ironjetpacks:jetpack_id="ironjetpacks:creative",rarity="epic"]',
|
||||
[
|
||||
'ABA',
|
||||
'BCB',
|
||||
'ADA'
|
||||
],
|
||||
{
|
||||
A: 'allthemodium:unobtainium_block',
|
||||
B: 'powah:nitro_crystal_block',
|
||||
C: 'ironjetpacks:cell[ironjetpacks:jetpack_id="ironjetpacks:creative"]',
|
||||
D: 'ironfurnaces:unobtainium_furnace'
|
||||
}
|
||||
).id('allthemods:ironjetpacks_creative_thruster')
|
||||
|
||||
allthemods.recipes.kubejs.shaped('ironjetpacks:capacitor[ironjetpacks:jetpack_id="ironjetpacks:creative",rarity="epic"]',
|
||||
[
|
||||
'ACA',
|
||||
'BDB',
|
||||
'AEA'
|
||||
],
|
||||
{
|
||||
A: 'allthemodium:unobtainium_block',
|
||||
B: 'mekanism:sps_casing',
|
||||
C: 'powah:reactor_nitro',
|
||||
D: 'mekanism:ultimate_induction_cell',
|
||||
E: 'powah:reactor_nitro'
|
||||
}
|
||||
).id('allthemods:ironjetpacks_creative_capacator')
|
||||
|
||||
allthemods.recipes.kubejs.shaped('ironjetpacks:jetpack[ironjetpacks:jetpack_id="ironjetpacks:creative",rarity="epic"]',
|
||||
[
|
||||
'ACA',
|
||||
'BFB',
|
||||
'DED'
|
||||
],
|
||||
{
|
||||
A: 'mysticalagradditions:creative_essence',
|
||||
B: 'allthemodium:vibranium_allthemodium_alloy_block',
|
||||
C: 'ironjetpacks:capacitor[ironjetpacks:jetpack_id="ironjetpacks:creative"]',
|
||||
D: 'ironjetpacks:thruster[ironjetpacks:jetpack_id="ironjetpacks:creative"]',
|
||||
E: 'allthetweaks:atm_star',
|
||||
F: 'ironjetpacks:jetpack[ironjetpacks:jetpack_id="ironjetpacks:unobtainium"]'
|
||||
}
|
||||
).id('allthemods:ironjetpacks_creative_jetpack')
|
||||
|
||||
//Mekanism
|
||||
|
||||
allthemods.recipes.kubejs.shaped('mekanism:creative_chemical_tank',
|
||||
[
|
||||
'TUT',
|
||||
'USU',
|
||||
'TUT'
|
||||
],
|
||||
{
|
||||
T: 'mekanism:ultimate_chemical_tank',
|
||||
U: 'allthemodium:unobtainium_ingot',
|
||||
S: 'allthetweaks:atm_star_block',
|
||||
}
|
||||
).id('allthemods:mekanism/creative_chemical_tank')
|
||||
|
||||
allthemods.recipes.kubejs.shaped('mekanism:creative_fluid_tank',
|
||||
[
|
||||
'TUT',
|
||||
'USU',
|
||||
'TUT'
|
||||
],
|
||||
{
|
||||
T: 'mekanism:ultimate_fluid_tank',
|
||||
U: 'allthemodium:unobtainium_ingot',
|
||||
S: 'allthetweaks:atm_star_block',
|
||||
}
|
||||
).id('allthemods:mekanism/creative_fluid_tank')
|
||||
|
||||
allthemods.recipes.kubejs.shaped('mekanism:creative_energy_cube',
|
||||
[
|
||||
'ATA',
|
||||
'UCU',
|
||||
'ATA'
|
||||
],
|
||||
{
|
||||
A: 'mekanism:alloy_atomic',
|
||||
T: 'mekanism:energy_tablet',
|
||||
U: 'allthemodium:unobtainium_block',
|
||||
C: 'mekanism:ultimate_energy_cube'
|
||||
}
|
||||
).id('allthemods:mekanism/creative_energy_cube')
|
||||
|
||||
allthemods.custom(
|
||||
{
|
||||
type: 'powah:energizing',
|
||||
energy: 2147483647,
|
||||
ingredients: [
|
||||
Ingredient.of('mekanism:creative_energy_cube',).toJson(),
|
||||
Ingredient.of('mekanism:creative_energy_cube',).toJson(),
|
||||
Ingredient.of('allthetweaks:atm_star').toJson(),
|
||||
Ingredient.of('mekanism:creative_energy_cube',).toJson(),
|
||||
Ingredient.of('mekanism:creative_energy_cube',).toJson()
|
||||
],
|
||||
result:
|
||||
Item.of(
|
||||
"mekanism:creative_energy_cube[mekanism:energy={energy_containers:[L;9223372036854775807L]}]"
|
||||
).toJson()
|
||||
}
|
||||
).id('allthemods:energizing/mekanism_creative_energy_cube')
|
||||
|
||||
//Powah
|
||||
|
||||
allthemods.custom(
|
||||
{
|
||||
type: 'powah:energizing',
|
||||
energy: 2147483647,
|
||||
ingredients: [
|
||||
Ingredient.of('powah:energy_cell_nitro').toJson(),
|
||||
Ingredient.of('powah:energy_cell_nitro').toJson(),
|
||||
Ingredient.of('allthetweaks:atm_star').toJson(),
|
||||
Ingredient.of('powah:energy_cell_nitro').toJson(),
|
||||
Ingredient.of('powah:energy_cell_nitro').toJson()
|
||||
],
|
||||
result: Item.of('powah:energy_cell_creative').toJson()
|
||||
}
|
||||
).id('allthemods:energizing/powah_creative_energy_cell')
|
||||
|
||||
//PNC
|
||||
|
||||
let pressureChamber = (psi, output, outcount, inputs) => {
|
||||
allthemods.custom(
|
||||
{
|
||||
type: 'pneumaticcraft:pressure_chamber',
|
||||
inputs:
|
||||
inputs
|
||||
,
|
||||
pressure: psi,
|
||||
results: [
|
||||
{
|
||||
count: outcount,
|
||||
id: output
|
||||
}
|
||||
]
|
||||
}
|
||||
).id(`allthemods:pressure/${output.replace(':', '/')}`)
|
||||
}
|
||||
|
||||
pressureChamber(4.9, 'pneumaticcraft:creative_compressor', 1,
|
||||
[
|
||||
{count: 64, item:'pneumaticcraft:advanced_pressure_tube'},
|
||||
{count: 1, item: 'pneumaticcraft:electrostatic_compressor'},
|
||||
{count: 64, item:'pneumaticcraft:advanced_pressure_tube'},
|
||||
{count: 1, item: 'pneumaticcraft:flux_compressor'},
|
||||
{count: 1, item: 'allthetweaks:atm_star'},
|
||||
{count: 1, item: 'pneumaticcraft:advanced_air_compressor'},
|
||||
{count: 64, item:'pneumaticcraft:advanced_pressure_tube'},
|
||||
{count: 1, item: 'pneumaticcraft:advanced_liquid_compressor'},
|
||||
{count: 64, item:'pneumaticcraft:advanced_pressure_tube'}
|
||||
]
|
||||
)
|
||||
|
||||
pressureChamber(4.9, 'pneumaticcraft:creative_compressed_iron_block', 1,
|
||||
[
|
||||
{count: 64, item:'pneumaticcraft:compressed_iron_block'},
|
||||
{count: 64, item:'pneumaticcraft:compressed_iron_block'},
|
||||
{count: 64, item:'pneumaticcraft:compressed_iron_block'},
|
||||
{count: 64, item:'pneumaticcraft:compressed_iron_block'},
|
||||
{count: 1, item: 'allthetweaks:atm_star'},
|
||||
{count: 64, item:'pneumaticcraft:compressed_iron_block'},
|
||||
{count: 64, item:'pneumaticcraft:compressed_iron_block'},
|
||||
{count: 64, item:'pneumaticcraft:compressed_iron_block'},
|
||||
{count: 64, item:'pneumaticcraft:compressed_iron_block'}
|
||||
]
|
||||
)
|
||||
//Railcraft
|
||||
|
||||
allthemods.recipes.kubejs.shaped('railcraft:creative_locomotive',
|
||||
[
|
||||
'EF ',
|
||||
'CAC',
|
||||
'BDB'
|
||||
],
|
||||
{
|
||||
A: 'allthetweaks:atm_star_shard',
|
||||
B: 'allthemodium:unobtainium_gear',
|
||||
C: 'railcraft:charge_motor',
|
||||
D: 'minecraft:minecart',
|
||||
E: 'minecraft:redstone_lamp',
|
||||
F: 'minecraft:netherite_ingot'
|
||||
}
|
||||
)
|
||||
|
||||
// Create
|
||||
allthemods.custom({
|
||||
"type": "create:mechanical_crafting",
|
||||
"accept_mirrored": false,
|
||||
"category": "misc",
|
||||
"key": {
|
||||
"A": {
|
||||
"item": 'pamhc2foodextended:lemondrizzlecakeitem'
|
||||
},
|
||||
"B": {
|
||||
"item": 'pamhc2foodcore:pumpkincheesecakeitem'
|
||||
},
|
||||
"C": {
|
||||
"item": 'pamhc2foodextended:fruitcakeitem'
|
||||
},
|
||||
"D": {
|
||||
"item": 'pamhc2foodextended:chocolatesprinklecakeitem'
|
||||
},
|
||||
"E": {
|
||||
"item": 'pamhc2foodextended:holidaycakeitem'
|
||||
},
|
||||
"F": {
|
||||
"item": 'pamhc2foodextended:mochicakeitem'
|
||||
},
|
||||
"G": {
|
||||
"item": 'pamhc2foodcore:chocolatecakeitem'
|
||||
},
|
||||
"H": {
|
||||
"item": 'allthetweaks:atm_star'
|
||||
},
|
||||
"I": {
|
||||
"item": 'pamhc2foodcore:carrotcakeitem'
|
||||
},
|
||||
"J": {
|
||||
"item": 'pamhc2foodcore:cheesecakeitem'
|
||||
},
|
||||
"K": {
|
||||
"item": 'pamhc2foodextended:pineappleupsidedowncakeitem'
|
||||
},
|
||||
"L": {
|
||||
"item": 'create_enchantment_industry:experience_cake'
|
||||
},
|
||||
"M": {
|
||||
"item": 'createaddition:honey_cake'
|
||||
},
|
||||
"N": {
|
||||
"item": 'createaddition:chocolate_cake'
|
||||
},
|
||||
"O": {
|
||||
"item": 'create:blaze_cake'
|
||||
}
|
||||
},
|
||||
"pattern": [
|
||||
"ABCDE",
|
||||
"FGHIJ",
|
||||
"KLMNO"
|
||||
],
|
||||
"result": {
|
||||
"count": 1,
|
||||
"id": 'create:creative_blaze_cake'
|
||||
},
|
||||
"show_notification": false
|
||||
}).id("allthemods:create/creative_blaze_cake")
|
||||
})
|
||||
|
||||
// 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.
|
||||
114
minecraft/kubejs/server_scripts/modpack/att_items.js
Normal file
114
minecraft/kubejs/server_scripts/modpack/att_items.js
Normal file
@@ -0,0 +1,114 @@
|
||||
// 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 => {
|
||||
// Dragon Soul
|
||||
allthemods.shaped('allthetweaks:dragon_soul', ['CDA', 'SNI', 'BGE'], {
|
||||
C: 'apothic_enchanting:infused_breath',
|
||||
D: 'occultism:soul_gem',
|
||||
A: Ingredient.of('justdirethings:creaturecatcher[justdirethings:entitytype="occultism:dragon_familiar"]').or('occultism:spawn_egg/familiar_dragon'),
|
||||
S: 'productivetrees:socotra_dragon_sapling',
|
||||
N: ['hostilenetworks:data_model[hostilenetworks:data_model="hostilenetworks:ender_dragon",hostilenetworks:data=1255]', 'hostilenetworks:data_model[hostilenetworks:data_model="hostilenetworks:ender_dragon",hostilenetworks:data=1254]'],
|
||||
I: 'allthemodium:piglich_heart_block',
|
||||
B: 'productivebees:spawn_egg_configurable_bee[entity_data={id:"productivebees:configurable_bee",type:"productivebees:soul_lava"}]',
|
||||
G: 'cataclysm:abyssal_sacrifice',
|
||||
E: Platform.isLoaded("eternal_starlight") ? 'eternal_starlight:chain_of_souls' : 'ftbquests:missing_item[ftbquests:missing_item="eternal_starlight:chain_of_souls"]'
|
||||
}).id('allthemods:allthetweaks/dragon_soul')
|
||||
|
||||
// Improbable Probability Device
|
||||
allthemods.shaped('allthetweaks:improbable_probability_device', ['ABA', 'CGC', 'FDF'], {
|
||||
A: 'mekanism:pellet_antimatter',
|
||||
B: 'ae2:singularity',
|
||||
C: Ingredient.of(['megacells:portable_item_cell_256m', 'modern_industrialization:blastproof_casing']),
|
||||
D: 'pneumaticcraft:aerial_interface',
|
||||
F: 'ironfurnaces:million_furnace',
|
||||
G: 'irons_spellbooks:lightning_upgrade_orb'
|
||||
}).id('allthemods:allthetweaks/improbable_probability_device')
|
||||
|
||||
// Dimensional Seed Recipe
|
||||
allthemods.shaped('allthetweaks:dimensional_seed', ['ABC', 'DEF', 'GHI'], {
|
||||
A: 'allthecompressed:netherrack_6x',
|
||||
B: 'allthecompressed:dirt_6x',
|
||||
C: 'allthecompressed:obsidian_5x',
|
||||
D: 'allthetweaks:mini_exit',
|
||||
E: 'allthetweaks:mini_nether',
|
||||
F: 'allthetweaks:mini_end',
|
||||
G: 'allthecompressed:end_stone_5x',
|
||||
H: 'allthecompressed:emerald_block_4x',
|
||||
I: 'allthecompressed:diamond_block_4x'
|
||||
}).id('allthemods:allthetweaks/dimensional_seed')
|
||||
|
||||
// Withers Compass
|
||||
allthemods.shaped('allthetweaks:withers_compass', ['ABC', 'DEF', 'GHI'], {
|
||||
A: 'productivebees:configurable_comb[productivebees:bee_type="productivebees:withered"]',
|
||||
B: 'industrialforegoing:wither_builder',
|
||||
C: 'deeperdarker:heart_of_the_deep',
|
||||
D: 'generatorgalore:netherstar_generator_64x',
|
||||
E: 'irons_spellbooks:scroll[irons_spellbooks:spell_container={data:[{id:"irons_spellbooks:wither_skull",index:0,level:10,locked:1b}],maxSpells:1,mustEquip:0b,spellWheel:0b}]',
|
||||
F: 'mysticalagriculture:witherproof_bricks',
|
||||
G: 'minecraft:tipped_arrow[potion_contents={potion:"apothic_attributes:long_wither"}]',
|
||||
H: 'ars_nouveau:glyph_wither',
|
||||
I: 'mysticalagradditions:nether_star_crux'
|
||||
}).id('allthemods:allthetweaks/withers_compass')
|
||||
|
||||
// Philosopher's Fuel
|
||||
allthemods.shaped('allthetweaks:philosophers_fuel', ['ABC', 'DEF', 'GHI'], {
|
||||
A: 'generatorgalore:ender_generator',
|
||||
B: 'ironfurnaces:rainbow_coal' ,
|
||||
C: 'bigreactors:insanite_block' ,
|
||||
D: Ingredient.of(['modern_industrialization:uranium_fuel_rod_quad','create:blaze_burner']),
|
||||
E: 'mysticalagradditions:insanium_coal_block',
|
||||
F: 'forbidden_arcanus:smelter_prism',
|
||||
G: 'mysticalagriculture:awakened_supremium_ingot_block',
|
||||
H: 'generatorgalore:magmatic_generator_64x',
|
||||
I: 'evilcraft:dark_tank[cyclopscore:fluid_content={amount:16000,id:"justdirethings:refined_t4_fluid_source"}]'
|
||||
}).id('allthemods:allthetweaks/philosophers_fuel')
|
||||
|
||||
// Nexium Emitter
|
||||
allthemods.shaped('allthetweaks:nexium_emitter', ['A B', ' CF', 'GED'], {
|
||||
A: 'powah:player_transmitter_nitro',
|
||||
B: 'ae2wtlib:wireless_universal_terminal[ae2wtlib:has_ex_pattern_access_terminal={},ae2wtlib:has_pattern_encoding_terminal={},ae2wtlib:has_crafting_terminal={},ae2wtlib:has_pattern_access_terminal={},ae2:stored_energy=6400000.0d]',
|
||||
F: [Item.of('mekanism:module_gravitational_modulating_unit')],
|
||||
D: Ingredient.of(['modern_industrialization:large_advanced_motor',"create:mechanical_arm"]),
|
||||
E: 'immersiveengineering:tesla_coil',
|
||||
C: 'advanced_ae:quantum_multi_threader',
|
||||
G: 'aeinfinitybooster:infinity_card'
|
||||
}).id('allthemods:allthetweaks/nexium_emitter')
|
||||
|
||||
// Oblivion Shard
|
||||
allthemods.shaped('allthetweaks:oblivion_shard', ['DAB', 'ECF', 'BGD'], {
|
||||
A: 'forbidden_arcanus:eternal_stella',
|
||||
C: 'evilcraft:mace_of_destruction[cyclopscore:fluid_content={amount:4000,id:"evilcraft:blood"}]',
|
||||
B: 'evilcraft:piercing_vengeance_focus',
|
||||
D: 'stevescarts:module_galgadorian_drill',
|
||||
E: 'cataclysm:meat_shredder',
|
||||
G: 'twilightforest:snow_queen_trophy',
|
||||
F: 'cataclysm:void_forge'
|
||||
}).id('allthemods:allthetweaks/oblivion_shard')
|
||||
|
||||
|
||||
// Pulsating Black Hole
|
||||
allthemods.shaped('allthetweaks:pulsating_black_hole', ['ABC', 'DEF', 'GHI'], {
|
||||
A: 'oritech:nuke',
|
||||
B: 'ae2:quantum_ring' ,
|
||||
C: 'pneumaticcraft:micromissiles' ,
|
||||
D: 'justdirethings:paradoxmachine',
|
||||
E: 'pocketstorage:psu_4',
|
||||
F: 'occultism:stable_wormhole',
|
||||
G: 'rootsclassic:crystal_staff',
|
||||
H: 'industrialforegoing:mycelial_explosive',
|
||||
I: 'evilcraft:lightning_bomb'
|
||||
}).id('allthemods:pressure/allthetweaks/pulsating_black_hole')
|
||||
|
||||
// Creative Essence
|
||||
allthemods.shaped('mysticalagradditions:creative_essence', ['CAC', 'ABA', 'CAC'], {
|
||||
A: 'mysticalagradditions:insanium_block',
|
||||
C: 'mysticalagradditions:insanium_gemstone_block',
|
||||
B: 'mysticalagriculture:master_infusion_crystal'
|
||||
}).id('allthemods:allthetweaks/creative_essence')
|
||||
|
||||
})
|
||||
|
||||
|
||||
// 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.
|
||||
37
minecraft/kubejs/server_scripts/modpack/mini_portals.js
Normal file
37
minecraft/kubejs/server_scripts/modpack/mini_portals.js
Normal file
@@ -0,0 +1,37 @@
|
||||
// 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 => {
|
||||
|
||||
// Mini Nether
|
||||
allthemods.shaped('allthetweaks:mini_nether', ['ADA', 'BCB', 'AEA'], {
|
||||
A: 'minecraft:obsidian',
|
||||
B: 'minecraft:nether_star',
|
||||
C: 'apothic_enchanting:sightshelf_t2',
|
||||
D: 'minecraft:wither_skeleton_skull',
|
||||
E: 'minecraft:warped_nylium'
|
||||
|
||||
}).id('allthemods:allthetweaks/mini_nether')
|
||||
|
||||
// Mini End
|
||||
allthemods.shaped('allthetweaks:mini_end', ['ABA', 'BCB', 'ABA'], {
|
||||
A: 'apothic_enchanting:endshelf',
|
||||
B: 'minecraft:ender_eye',
|
||||
C: 'apothic_enchanting:draconic_endshelf'
|
||||
|
||||
}).id('allthemods:allthetweaks/mini_end')
|
||||
|
||||
// Mini Exit
|
||||
allthemods.shaped('allthetweaks:mini_exit', ['ABA', 'DCD', 'ADA'], {
|
||||
A: 'minecraft:dragon_egg',
|
||||
B: 'apothic_enchanting:infused_breath',
|
||||
C: 'apothic_enchanting:soul_touched_sculkshelf',
|
||||
D: 'minecraft:end_crystal'
|
||||
|
||||
}).id('allthemods:allthetweaks/mini_exit')
|
||||
|
||||
|
||||
})
|
||||
|
||||
// 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.
|
||||
143
minecraft/kubejs/server_scripts/modpack/miningDim.js
Normal file
143
minecraft/kubejs/server_scripts/modpack/miningDim.js
Normal file
@@ -0,0 +1,143 @@
|
||||
// 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.
|
||||
|
||||
var miningDimOres = [
|
||||
{path: 'runic_stone', id:'allthemodium:runic_stone', min:65, max:250,size:4, count:1, stoneReplaces:"forbidden_arcanus:runic_stone", deepslateReplaces:"forbidden_arcanus:runic_deepslate", endStoneReplaces:null, netherrackReplaces:null},
|
||||
{path: 'arcane_crystal_ore', id:'allthemodium:arcane_crystal_ore', min:65, max:250,size:4, count:1, stoneReplaces:"forbidden_arcanus:arcane_crystal_ore", deepslateReplaces:"forbidden_arcanus:deepslate_arcane_crystal_ore", endStoneReplaces:null, netherrackReplaces:null},
|
||||
{path: 'dark_ore', id:'allthemodium:dark_ore', min:65, max:129,size:2, count:1, stoneReplaces:"evilcraft:dark_ore", deepslateReplaces:"evilcraft:dark_ore_deepslate", endStoneReplaces:null, netherrackReplaces:null},
|
||||
{path: 'uraninite_ore', id:'allthemodium:uraninite_ore', min:65, max:250,size:8, count:8, stoneReplaces:"powah:uraninite_ore", deepslateReplaces:"powah:deepslate_uraninite_ore", endStoneReplaces:null, netherrackReplaces:null},
|
||||
{path: 'inferium_ore', id:'allthemodium:inferium_ore', min:65, max:250,size:8, count:16, stoneReplaces:"mysticalagriculture:inferium_ore", deepslateReplaces:"mysticalagriculture:deepslate_inferium_ore", endStoneReplaces:null, netherrackReplaces:null},
|
||||
{path: 'aggra_inferium_ore', id:'allthemodium:aggra_inferium_ore', min:-63, max:63, size:8, count:16, stoneReplaces:null, deepslateReplaces:null, endStoneReplaces:"mysticalagradditions:end_inferium_ore", netherrackReplaces:"mysticalagradditions:nether_inferium_ore"},
|
||||
{path: 'aggra_prosperity_ore', id:'allthemodium:aggra_prosperity_ore', min:-63, max:63, size:8, count:8, stoneReplaces:null, deepslateReplaces:null, endStoneReplaces:"mysticalagradditions:end_prosperity_ore", netherrackReplaces:"mysticalagradditions:nether_prosperity_ore"},
|
||||
{path: 'prosperity_ore', id:'allthemodium:prosperity_ore', min:65, max:250,size:8, count:8, stoneReplaces:"mysticalagriculture:prosperity_ore", deepslateReplaces:"mysticalagriculture:deepslate_prosperity_ore", endStoneReplaces:null, netherrackReplaces:null},
|
||||
{path: 'soulium_ore', id:'allthemodium:soulium_ore', min:-63, max:250,size:6, count:3, stoneReplaces:"mysticalagriculture:soulium_ore", deepslateReplaces:"mysticalagriculture:soulium_ore", endStoneReplaces:"mysticalagriculture:soulium_ore", netherrackReplaces:"mysticalagriculture:soulium_ore"},
|
||||
{path: 'mithril_ore', id:'allthemodium:mithril_ore', min:65, max:250,size:2, count:1, stoneReplaces:"irons_spellbooks:mithril_ore", deepslateReplaces:"irons_spellbooks:deepslate_mithril_ore", endStoneReplaces:null, netherrackReplaces:null},
|
||||
{path: 'antimony_ore', id:'allthemodium:antimony_ore', min:65, max:250,size:5, count:20, stoneReplaces:"modern_industrialization:antimony_ore", deepslateReplaces:"modern_industrialization:deepslate_antimony_ore", endStoneReplaces:null, netherrackReplaces:null},
|
||||
{path: 'iridium_ore', id:'allthemodium:iridium_ore', min:65, max:146,size:1, count:10, stoneReplaces:"modern_industrialization:iridium_ore", deepslateReplaces:null, endStoneReplaces:null, netherrackReplaces:null},
|
||||
{path: 'lignite_coal_ore', id:'allthemodium:lignite_coal_ore', min:65, max:250,size:17,count:25, stoneReplaces:"modern_industrialization:lignite_coal_ore", deepslateReplaces:"modern_industrialization:deepslate_lignite_coal_ore", endStoneReplaces:null, netherrackReplaces:null},
|
||||
{path: 'monazite_ore', id:'allthemodium:monazite_ore', min:65, max:154,size:3, count:10, stoneReplaces:"modern_industrialization:monazite_ore", deepslateReplaces:"modern_industrialization:deepslate_monazite_ore", endStoneReplaces:null, netherrackReplaces:null},
|
||||
{path: 'tungsten_ore', id:'allthemodium:tungsten_ore', min:65, max:154,size:5, count:6, stoneReplaces:"modern_industrialization:tungsten_ore", deepslateReplaces:"modern_industrialization:deepslate_tungsten_ore", endStoneReplaces:null, netherrackReplaces:null},
|
||||
{path: 'titanium_ore', id:'allthemodium:titanium_ore', min:65, max:250,size:6, count:2, stoneReplaces:"theurgy:sal_ammoniac_ore", deepslateReplaces:"theurgy:deepslate_sal_ammoniac_ore", endStoneReplaces:null, netherrackReplaces:null},
|
||||
{path: 'xychorium_ore_blue', id:'allthemodium:xychorium_ore_blue', min:65, max:250,size:5, count:2, stoneReplaces:"xycraft_world:xychorium_ore_stone_blue", deepslateReplaces:"xycraft_world:xychorium_ore_deepslate_blue", endStoneReplaces:null, netherrackReplaces:null},
|
||||
{path: 'xychorium_ore_red', id:'allthemodium:xychorium_ore_red', min:65, max:250,size:5, count:2, stoneReplaces:"xycraft_world:xychorium_ore_stone_red", deepslateReplaces:"xycraft_world:xychorium_ore_deepslate_red", endStoneReplaces:null, netherrackReplaces:null},
|
||||
{path: 'xychorium_ore_dark', id:'allthemodium:xychorium_ore_dark', min:65, max:250,size:5, count:2, stoneReplaces:"xycraft_world:xychorium_ore_stone_dark", deepslateReplaces:"xycraft_world:xychorium_ore_deepslate_dark", endStoneReplaces:null, netherrackReplaces:null},
|
||||
{path: 'xychorium_ore_green', id:'allthemodium:xychorium_ore_green', min:65, max:250,size:5, count:2, stoneReplaces:"xycraft_world:xychorium_ore_stone_green", deepslateReplaces:"xycraft_world:xychorium_ore_deepslate_green", endStoneReplaces:null, netherrackReplaces:null},
|
||||
{path: 'xychorium_ore_light', id:'allthemodium:xychorium_ore_light', min:65, max:250,size:5, count:2, stoneReplaces:"xycraft_world:xychorium_ore_stone_light", deepslateReplaces:"xycraft_world:xychorium_ore_deepslate_light", endStoneReplaces:null, netherrackReplaces:null},
|
||||
{path: 'black_quartz_ore', id:'allthemodium:black_quartz_ore', min:65, max:250,size:6, count:8, stoneReplaces:"actuallyadditions:black_quartz_ore", deepslateReplaces:null, endStoneReplaces:null, netherrackReplaces:null},
|
||||
{path: 'sulfur_ore', id:'allthemodium:sulfur_ore', min:-63, max:250,size:8, count:3, stoneReplaces:"alltheores:sulfur_ore", deepslateReplaces:"alltheores:deepslate_sulfur_ore", endStoneReplaces:"alltheores:end_sulfur_ore", netherrackReplaces:"alltheores:nether_sulfur_ore"},
|
||||
{path: 'fluorite_ore', id:'allthemodium:fluorite_ore', min:-63, max:250,size:8, count:3, stoneReplaces:"alltheores:fluorite_ore", deepslateReplaces:"alltheores:deepslate_fluorite_ore", endStoneReplaces:"alltheores:end_fluorite_ore", netherrackReplaces:"alltheores:nether_fluorite_ore"},
|
||||
{path: 'cinnabar_ore', id:'allthemodium:cinnabar_ore', min:-63, max:250,size:8, count:2, stoneReplaces:"alltheores:cinnabar_ore", deepslateReplaces:"alltheores:deepslate_cinnabar_ore", endStoneReplaces:"alltheores:end_cinnabar_ore", netherrackReplaces:"alltheores:nether_cinnabar_ore"},
|
||||
{path: 'salt_ore', id:'allthemodium:salt_ore', min:-63, max:250,size:6, count:8, stoneReplaces:"alltheores:salt_ore", deepslateReplaces:"alltheores:deepslate_salt_ore", endStoneReplaces:"alltheores:end_salt_ore", netherrackReplaces:"alltheores:nether_salt_ore"},
|
||||
{path: 'sal_ammoniac_ore', id:'allthemodium:sal_ammoniac_ore', min:65, max:250,size:8, count:3, stoneReplaces:"modern_industrialization:titanium_ore", deepslateReplaces:null, endStoneReplaces:null, netherrackReplaces:null},
|
||||
{path: 'stella_arcanum', id:'allthemodium:stella_arcanum', min:-63, max:250,size:2, count:1, stoneReplaces:"forbidden_arcanus:stella_arcanum", deepslateReplaces:"forbidden_arcanus:stella_arcanum", endStoneReplaces:"forbidden_arcanus:stella_arcanum", netherrackReplaces:"forbidden_arcanus:stella_arcanum"},
|
||||
{path: 'dimensionalshard', id:'allthemodium:dimensionalshard', min:-63, max:250,size:12,count:2, stoneReplaces:"rftoolsbase:dimensionalshard_overworld", deepslateReplaces:null, endStoneReplaces:"rftoolsbase:dimensionalshard_end", netherrackReplaces:"rftoolsbase:dimensionalshard_nether"},
|
||||
{path: 'crimson_iron_ore', id:'allthemodium:crimson_iron_ore', min:-63, max:63, size:8, count:3, stoneReplaces:null, deepslateReplaces:null, endStoneReplaces:null, netherrackReplaces:"silentgear:crimson_iron_ore"},
|
||||
{path: 'azure_silver_ore', id:'allthemodium:azure_silver_ore', min:-63, max:63, size:8, count:3, stoneReplaces:null, deepslateReplaces:null, endStoneReplaces:"silentgear:azure_silver_ore", netherrackReplaces:null},
|
||||
{path: 'draconium_ore', id:'allthemodium:draconium_ore', min:-63, max:250,size:4,count:8, stoneReplaces:"draconicevolution:overworld_draconium_ore", deepslateReplaces:null, endStoneReplaces:null, netherrackReplaces:null}
|
||||
]
|
||||
|
||||
ServerEvents.generateData('after_mods', allthemods => {
|
||||
let addMiningDimOre = (path, id, min, max, size, count, stoneReplaces, deepslateReplaces, endStoneReplaces, netherrackReplaces) => {
|
||||
|
||||
let jsonPlaced = JsonIO.toObject({
|
||||
"feature": id,
|
||||
"placement": [
|
||||
{
|
||||
"count": count,
|
||||
"type": "minecraft:count"
|
||||
},
|
||||
{
|
||||
"type": "minecraft:in_square"
|
||||
},
|
||||
{
|
||||
"height": {
|
||||
"min_inclusive": {
|
||||
"absolute": min
|
||||
},
|
||||
"max_inclusive": {
|
||||
"absolute": max
|
||||
},
|
||||
"type": "minecraft:trapezoid"
|
||||
},
|
||||
"type": "minecraft:height_range"
|
||||
},
|
||||
{
|
||||
"type": "minecraft:biome"
|
||||
}
|
||||
]
|
||||
})
|
||||
let jsonConfigured = JsonIO.toObject({
|
||||
type: "minecraft:ore",
|
||||
config: {
|
||||
"size": size,
|
||||
"discard_chance_on_air_exposure": 0.0,
|
||||
"targets": []
|
||||
}
|
||||
})
|
||||
|
||||
let jsonForge = JsonIO.toObject({
|
||||
type: "neoforge:add_features",
|
||||
biomes: "#allthemodium:mining_features/mining_biomes",
|
||||
"features": [id],
|
||||
"step": "underground_ores"
|
||||
})
|
||||
if(stoneReplaces!==null){
|
||||
jsonConfigured.config.targets.push(
|
||||
JsonIO.toObject({
|
||||
"target": {
|
||||
"predicate_type": "minecraft:tag_match",
|
||||
"tag": "minecraft:stone_ore_replaceables"
|
||||
},
|
||||
"state": {
|
||||
"Name": stoneReplaces
|
||||
}
|
||||
}))
|
||||
}
|
||||
if(deepslateReplaces!==null){
|
||||
jsonConfigured.config.targets.push(
|
||||
JsonIO.toObject({
|
||||
"target": {
|
||||
"predicate_type": "minecraft:tag_match",
|
||||
"tag": "minecraft:deepslate_ore_replaceables"
|
||||
},
|
||||
"state": {
|
||||
"Name": deepslateReplaces
|
||||
}
|
||||
}))
|
||||
}
|
||||
if(endStoneReplaces!==null){
|
||||
jsonConfigured.config.targets.push(
|
||||
JsonIO.toObject({
|
||||
"target": {
|
||||
"predicate_type": "minecraft:block_match",
|
||||
"block": "minecraft:end_stone"
|
||||
},
|
||||
"state": {
|
||||
"Name": endStoneReplaces
|
||||
}
|
||||
})
|
||||
)
|
||||
}
|
||||
if(netherrackReplaces!==null){
|
||||
jsonConfigured.config.targets.push(
|
||||
JsonIO.toObject({
|
||||
"target": {
|
||||
"predicate_type": "minecraft:block_match",
|
||||
"block": "minecraft:netherrack"
|
||||
},
|
||||
"state": {
|
||||
"Name": netherrackReplaces
|
||||
}
|
||||
}))
|
||||
}
|
||||
allthemods.json(`allthemodium:worldgen/placed_feature/${path}.json`, jsonPlaced)
|
||||
allthemods.json(`allthemodium:worldgen/configured_feature/${path}.json`, jsonConfigured)
|
||||
allthemods.json(`allthemodium:neoforge/biome_modifier/allthemodium/dim_ores/${path}.json`, jsonForge)
|
||||
}
|
||||
miningDimOres.forEach(ore=>{
|
||||
addMiningDimOre(ore.path,ore.id, ore.min, ore.max, ore.size, ore.count, ore.stoneReplaces, ore.deepslateReplaces, ore.endStoneReplaces, ore.netherrackReplaces);
|
||||
})
|
||||
})
|
||||
|
||||
// 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.
|
||||
@@ -0,0 +1,430 @@
|
||||
ServerEvents.recipes(allthemods => {
|
||||
|
||||
allthemods.shapeless('modern_industrialization:runic_fluid_input_hatch', 'modern_industrialization:runic_fluid_output_hatch')
|
||||
allthemods.shapeless('modern_industrialization:runic_fluid_output_hatch', 'modern_industrialization:runic_fluid_input_hatch')
|
||||
|
||||
allthemods.shapeless('modern_industrialization:runic_item_input_hatch', 'modern_industrialization:runic_item_output_hatch')
|
||||
allthemods.shapeless('modern_industrialization:runic_item_output_hatch', 'modern_industrialization:runic_item_input_hatch')
|
||||
|
||||
if (Platform.isLoaded('modular_machinery_reborn')) {
|
||||
allthemods.shapeless('modern_industrialization:auto_forge', `modular_machinery_reborn:controller[modular_machinery_reborn:machine="atm:auto_hepheastus_forge"]`)
|
||||
allthemods.shapeless('modern_industrialization:star_altar', `modular_machinery_reborn:controller[modular_machinery_reborn:machine="atm:runic_star_altar"]`)
|
||||
allthemods.shapeless('modern_industrialization:runic_crucible', `modular_machinery_reborn:controller[modular_machinery_reborn:machine="atm:runic_crucible"]`)
|
||||
allthemods.shapeless('modern_industrialization:runic_enchanter', `modular_machinery_reborn:controller[modular_machinery_reborn:machine="atm:runic_enchanter"]`)
|
||||
|
||||
allthemods.shapeless('modern_industrialization:runic_item_input_hatch', 'modular_machinery_reborn:inputbus_ludicrous')
|
||||
allthemods.shapeless('modern_industrialization:runic_item_output_hatch', 'modular_machinery_reborn:outputbus_ludicrous')
|
||||
|
||||
allthemods.shapeless('modern_industrialization:runic_fluid_input_hatch', 'modular_machinery_reborn:fluidoutputhatch_vacuum')
|
||||
allthemods.shapeless('modern_industrialization:runic_fluid_output_hatch', 'modular_machinery_reborn:fluidinputhatch_vacuum')
|
||||
|
||||
allthemods.shapeless('modern_industrialization:runic_energy_input_hatch', 'modular_machinery_reborn:energyinputhatch_ultimate')
|
||||
}
|
||||
|
||||
let runic_controllers = [
|
||||
{
|
||||
id: 'modern_industrialization:auto_forge',
|
||||
aureal: 50000,
|
||||
blood: 50000,
|
||||
souls: 1000,
|
||||
xp: 25000,
|
||||
main: 'forbidden_arcanus:hephaestus_forge_tier_5',
|
||||
secondary: 'alltheores:enderium_gear'
|
||||
},
|
||||
{
|
||||
id: 'modern_industrialization:runic_crucible',
|
||||
aureal: 100000,
|
||||
blood: 25000,
|
||||
souls: 1000,
|
||||
xp: 10000,
|
||||
main: 'ars_nouveau:enchanting_apparatus',
|
||||
secondary: 'ars_nouveau:arcane_core'
|
||||
},
|
||||
{
|
||||
id: 'modern_industrialization:runic_enchanter',
|
||||
aureal: 100000,
|
||||
blood: 1000,
|
||||
souls: 1000,
|
||||
xp: 50000,
|
||||
main: 'minecraft:enchanting_table',
|
||||
secondary: 'apothic_enchanting:treasure_shelf'
|
||||
}
|
||||
]
|
||||
|
||||
if (Platform.isLoaded("eternal_starlight")) {
|
||||
runic_controllers.push({
|
||||
id: 'modern_industrialization:star_altar',
|
||||
aureal: 200000,
|
||||
blood: 1000000,
|
||||
souls: 10000,
|
||||
xp: 75000,
|
||||
main: 'eternal_starlight:loot_bag[eternal_starlight:loot_table="eternal_starlight:bosses/lunar_monstrosity"]',
|
||||
secondary: 'alltheores:enderium_gear'
|
||||
})
|
||||
}
|
||||
|
||||
for (let item of runic_controllers) {
|
||||
allthemods.recipes.modern_industrialization.auto_forge(512, 300)
|
||||
.fluidIn(`${item.aureal}x kubejs:liquid_aureal`)
|
||||
.fluidIn(`${item.souls}x kubejs:liquid_souls`)
|
||||
.fluidIn(`${item.blood}x evilcraft:blood`)
|
||||
.fluidIn(`${item.xp}x #c:experience`)
|
||||
.itemIn('forbidden_arcanus:mundabitur_dust')
|
||||
.itemIn(item.main)
|
||||
.itemIn('enderio:z_logic_controller')
|
||||
.itemIn(item.secondary)
|
||||
.itemIn('forbidden_arcanus:polished_darkstone')
|
||||
.itemIn(item.secondary)
|
||||
.itemIn('enderio:z_logic_controller')
|
||||
.itemIn('forbidden_arcanus:quantum_injector')
|
||||
.itemIn('forbidden_arcanus:mundabitur_dust')
|
||||
.itemOut(item.id)
|
||||
}
|
||||
|
||||
let runic_parts = [
|
||||
{
|
||||
id: 'modern_industrialization:runic_item_input_hatch',
|
||||
aureal: 2500,
|
||||
blood: 1000,
|
||||
souls: 5000,
|
||||
xp: 5000,
|
||||
top: 'actuallyadditions:laser_relay_item',
|
||||
bottom: 'forbidden_arcanus:quantum_injector',
|
||||
middle: 'forbidden_arcanus:polished_darkstone'
|
||||
},
|
||||
{
|
||||
id: 'modern_industrialization:runic_item_output_hatch',
|
||||
aureal: 2500,
|
||||
blood: 1000,
|
||||
souls: 5000,
|
||||
xp: 5000,
|
||||
top: 'forbidden_arcanus:quantum_injector',
|
||||
bottom: 'actuallyadditions:laser_relay_item',
|
||||
middle: 'forbidden_arcanus:chiseled_polished_darkstone'
|
||||
},
|
||||
{
|
||||
id: 'modern_industrialization:runic_fluid_input_hatch',
|
||||
aureal: 2500,
|
||||
blood: 1000,
|
||||
souls: 5000,
|
||||
xp: 5000,
|
||||
top: 'actuallyadditions:laser_relay_fluids',
|
||||
bottom: 'forbidden_arcanus:quantum_injector',
|
||||
middle: 'forbidden_arcanus:polished_darkstone'
|
||||
},
|
||||
{
|
||||
id: 'modern_industrialization:runic_fluid_output_hatch',
|
||||
aureal: 2500,
|
||||
blood: 1000,
|
||||
souls: 5000,
|
||||
xp: 5000,
|
||||
top: 'forbidden_arcanus:quantum_injector',
|
||||
bottom: 'actuallyadditions:laser_relay_fluids',
|
||||
middle: 'forbidden_arcanus:chiseled_polished_darkstone'
|
||||
},
|
||||
{
|
||||
id: 'modern_industrialization:runic_energy_input_hatch',
|
||||
aureal: 2500,
|
||||
blood: 1000,
|
||||
souls: 5000,
|
||||
xp: 5000,
|
||||
top: 'actuallyadditions:laser_relay',
|
||||
bottom: 'forbidden_arcanus:quantum_injector',
|
||||
middle: 'forbidden_arcanus:polished_darkstone'
|
||||
}
|
||||
]
|
||||
|
||||
for (let item of runic_parts) {
|
||||
allthemods.recipes.modern_industrialization.auto_forge(512, 150)
|
||||
.fluidIn(`${item.aureal}x kubejs:liquid_aureal`)
|
||||
.fluidIn(`${item.souls}x kubejs:liquid_souls`)
|
||||
.fluidIn(`${item.blood}x evilcraft:blood`)
|
||||
.fluidIn(`${item.xp}x #c:experience`)
|
||||
.itemIn('forbidden_arcanus:mundabitur_dust')
|
||||
.itemIn(item.top)
|
||||
.itemIn('mekanism:ultimate_control_circuit')
|
||||
.itemIn('alltheores:enderium_gear')
|
||||
.itemIn(item.middle)
|
||||
.itemIn('alltheores:enderium_gear')
|
||||
.itemIn('mekanism:ultimate_control_circuit')
|
||||
.itemIn(item.bottom)
|
||||
.itemIn('forbidden_arcanus:mundabitur_dust')
|
||||
.itemOut(item.id)
|
||||
}
|
||||
|
||||
allthemods.recipes.modern_industrialization.auto_forge(512, 300)
|
||||
.fluidIn(`5000x kubejs:liquid_aureal`)
|
||||
.fluidIn(`2500x kubejs:liquid_souls`)
|
||||
.fluidIn(`7500x evilcraft:blood`)
|
||||
.fluidIn(`10000x #c:experience`)
|
||||
.itemIn('mekanism:ultimate_control_circuit')
|
||||
.itemIn('enderio:sentient_ender')
|
||||
.itemIn('enderio:z_logic_controller')
|
||||
.itemIn('alltheores:enderium_gear')
|
||||
.itemIn('forbidden_arcanus:arcane_crystal')
|
||||
.itemIn('alltheores:enderium_gear')
|
||||
.itemIn('enderio:z_logic_controller')
|
||||
.itemIn('forbidden_arcanus:mundabitur_dust')
|
||||
.itemIn('mekanism:ultimate_control_circuit')
|
||||
.itemOut(`forbidden_arcanus:corrupted_arcane_crystal`)
|
||||
|
||||
allthemods.remove({id: 'forbidden_arcanus:corrupted_arcane_crystal_block_from_corrupted_arcane_crystal'})
|
||||
allthemods.remove({id: 'forbidden_arcanus:corrupted_arcane_crystal_from_corrupted_arcane_crystal_block'})
|
||||
})
|
||||
|
||||
ServerEvents.generateData('after_mods', allthemods => {
|
||||
let heph_recipes = [
|
||||
//auto forge
|
||||
{
|
||||
id: 'auto_forge',
|
||||
input: 'forbidden_arcanus:polished_darkstone',
|
||||
result: 'modern_industrialization:auto_forge',
|
||||
aureal: 5000,
|
||||
blood: 5000,
|
||||
souls: 100,
|
||||
xp: 2500,
|
||||
in_1: 'forbidden_arcanus:hephaestus_forge_tier_5',
|
||||
in_2: 'enderio:z_logic_controller',
|
||||
in_3: 'alltheores:enderium_gear',
|
||||
in_4: 'forbidden_arcanus:mundabitur_dust',
|
||||
in_5: 'forbidden_arcanus:quantum_injector',
|
||||
in_6: 'enderio:z_logic_controller',
|
||||
in_7: 'alltheores:enderium_gear',
|
||||
in_8: 'forbidden_arcanus:mundabitur_dust'
|
||||
},
|
||||
//runic crucible
|
||||
{
|
||||
id: 'runic_crucible',
|
||||
input: 'forbidden_arcanus:polished_darkstone',
|
||||
result: 'modern_industrialization:runic_crucible',
|
||||
aureal: 10000,
|
||||
blood: 2500,
|
||||
souls: 100,
|
||||
xp: 1000,
|
||||
in_1: 'ars_nouveau:enchanting_apparatus',
|
||||
in_2: 'enderio:z_logic_controller',
|
||||
in_3: 'ars_nouveau:arcane_core',
|
||||
in_4: 'forbidden_arcanus:mundabitur_dust',
|
||||
in_5: 'forbidden_arcanus:quantum_injector',
|
||||
in_6: 'enderio:z_logic_controller',
|
||||
in_7: 'ars_nouveau:arcane_core',
|
||||
in_8: 'forbidden_arcanus:mundabitur_dust'
|
||||
},
|
||||
//runic enchanter
|
||||
{
|
||||
id: 'runic_enchanter',
|
||||
input: 'forbidden_arcanus:polished_darkstone',
|
||||
result: 'modern_industrialization:runic_enchanter',
|
||||
aureal: 10000,
|
||||
blood: 100,
|
||||
souls: 100,
|
||||
xp: 5000,
|
||||
in_1: 'minecraft:enchanting_table',
|
||||
in_2: 'enderio:z_logic_controller',
|
||||
in_3: 'apothic_enchanting:treasure_shelf',
|
||||
in_4: 'forbidden_arcanus:mundabitur_dust',
|
||||
in_5: 'forbidden_arcanus:quantum_injector',
|
||||
in_6: 'enderio:z_logic_controller',
|
||||
in_7: 'apothic_enchanting:treasure_shelf',
|
||||
in_8: 'forbidden_arcanus:mundabitur_dust'
|
||||
},
|
||||
//item input
|
||||
{
|
||||
id: 'item_in',
|
||||
input: 'forbidden_arcanus:polished_darkstone',
|
||||
result: 'modern_industrialization:runic_item_input_hatch',
|
||||
aureal: 250,
|
||||
blood: 100,
|
||||
souls: 500,
|
||||
xp: 500,
|
||||
in_1: 'actuallyadditions:laser_relay_item',
|
||||
in_2: 'mekanism:ultimate_control_circuit',
|
||||
in_3: 'alltheores:enderium_gear',
|
||||
in_4: 'forbidden_arcanus:mundabitur_dust',
|
||||
in_5: 'forbidden_arcanus:quantum_injector',
|
||||
in_6: 'mekanism:ultimate_control_circuit',
|
||||
in_7: 'alltheores:enderium_gear',
|
||||
in_8: 'forbidden_arcanus:mundabitur_dust'
|
||||
},
|
||||
//item output
|
||||
{
|
||||
id: 'item_output',
|
||||
input: 'forbidden_arcanus:chiseled_polished_darkstone',
|
||||
result: 'modern_industrialization:runic_item_output_hatch',
|
||||
aureal: 250,
|
||||
blood: 100,
|
||||
souls: 500,
|
||||
xp: 500,
|
||||
in_1: 'forbidden_arcanus:quantum_injector',
|
||||
in_2: 'mekanism:ultimate_control_circuit',
|
||||
in_3: 'alltheores:enderium_gear',
|
||||
in_4: 'forbidden_arcanus:mundabitur_dust',
|
||||
in_5: 'actuallyadditions:laser_relay_item',
|
||||
in_6: 'mekanism:ultimate_control_circuit',
|
||||
in_7: 'alltheores:enderium_gear',
|
||||
in_8: 'forbidden_arcanus:mundabitur_dust'
|
||||
},
|
||||
//fluid input
|
||||
{
|
||||
id: 'fluid_input',
|
||||
input: 'forbidden_arcanus:polished_darkstone',
|
||||
result: 'modern_industrialization:runic_fluid_input_hatch',
|
||||
aureal: 250,
|
||||
blood: 100,
|
||||
souls: 500,
|
||||
xp: 500,
|
||||
in_1: 'actuallyadditions:laser_relay_fluids',
|
||||
in_2: 'mekanism:ultimate_control_circuit',
|
||||
in_3: 'alltheores:enderium_gear',
|
||||
in_4: 'forbidden_arcanus:mundabitur_dust',
|
||||
in_5: 'forbidden_arcanus:quantum_injector',
|
||||
in_6: 'mekanism:ultimate_control_circuit',
|
||||
in_7: 'alltheores:enderium_gear',
|
||||
in_8: 'forbidden_arcanus:mundabitur_dust'
|
||||
},
|
||||
//fluid output
|
||||
{
|
||||
id: 'fluid_output',
|
||||
input: 'forbidden_arcanus:chiseled_polished_darkstone',
|
||||
result: 'modern_industrialization:runic_fluid_output_hatch',
|
||||
aureal: 250,
|
||||
blood: 100,
|
||||
souls: 500,
|
||||
xp: 500,
|
||||
in_1: 'forbidden_arcanus:quantum_injector',
|
||||
in_2: 'mekanism:ultimate_control_circuit',
|
||||
in_3: 'alltheores:enderium_gear',
|
||||
in_4: 'forbidden_arcanus:mundabitur_dust',
|
||||
in_5: 'actuallyadditions:laser_relay_fluids',
|
||||
in_6: 'mekanism:ultimate_control_circuit',
|
||||
in_7: 'alltheores:enderium_gear',
|
||||
in_8: 'forbidden_arcanus:mundabitur_dust'
|
||||
},
|
||||
//energy input
|
||||
{
|
||||
id: 'energy_input',
|
||||
input: 'forbidden_arcanus:polished_darkstone',
|
||||
result: 'modern_industrialization:runic_energy_input_hatch',
|
||||
aureal: 250,
|
||||
blood: 100,
|
||||
souls: 500,
|
||||
xp: 500,
|
||||
in_1: 'actuallyadditions:laser_relay',
|
||||
in_2: 'mekanism:ultimate_control_circuit',
|
||||
in_3: 'alltheores:enderium_gear',
|
||||
in_4: 'forbidden_arcanus:mundabitur_dust',
|
||||
in_5: 'forbidden_arcanus:quantum_injector',
|
||||
in_6: 'mekanism:ultimate_control_circuit',
|
||||
in_7: 'alltheores:enderium_gear',
|
||||
in_8: 'forbidden_arcanus:mundabitur_dust'
|
||||
}
|
||||
]
|
||||
|
||||
for (let item of heph_recipes) {
|
||||
allthemods.json(`atm:forbidden_arcanus/hephaestus_forge/ritual/mi_${item.id}.json`,
|
||||
{
|
||||
enhancers: [
|
||||
'forbidden_arcanus:artisan_relic',
|
||||
'forbidden_arcanus:elementarium',
|
||||
'forbidden_arcanus:divine_pact'
|
||||
],
|
||||
essences: {
|
||||
aureal: item.aureal,
|
||||
blood: item.blood,
|
||||
souls: item.souls,
|
||||
experience: item.xp
|
||||
},
|
||||
forge_tier: 5,
|
||||
inputs: [
|
||||
{ amount: 1, ingredient: Ingredient.of(item.in_1).toJson() },
|
||||
{ amount: 1, ingredient: Ingredient.of(item.in_2).toJson() },
|
||||
{ amount: 1, ingredient: Ingredient.of(item.in_3).toJson() },
|
||||
{ amount: 1, ingredient: Ingredient.of(item.in_4).toJson() },
|
||||
{ amount: 1, ingredient: Ingredient.of(item.in_5).toJson() },
|
||||
{ amount: 1, ingredient: Ingredient.of(item.in_6).toJson() },
|
||||
{ amount: 1, ingredient: Ingredient.of(item.in_7).toJson() },
|
||||
{ amount: 1, ingredient: Ingredient.of(item.in_8).toJson() }
|
||||
],
|
||||
magic_circle: 'forbidden_arcanus:create_item',
|
||||
main_ingredient: {
|
||||
item: item.input
|
||||
},
|
||||
result: {
|
||||
type: 'forbidden_arcanus:create_item',
|
||||
result_item: Item.of(`${item.result}`).toJson()
|
||||
}
|
||||
}
|
||||
)
|
||||
}
|
||||
|
||||
allthemods.json(`atm:forbidden_arcanus/hephaestus_forge/ritual/mi_star_altar.json`,
|
||||
{
|
||||
enhancers: [
|
||||
'forbidden_arcanus:artisan_relic',
|
||||
'forbidden_arcanus:elementarium',
|
||||
'forbidden_arcanus:divine_pact',
|
||||
'forbidden_arcanus:maledictus_pact'
|
||||
],
|
||||
essences: {
|
||||
aureal: 5000,
|
||||
blood: 5000,
|
||||
souls: 100,
|
||||
experience: 2500
|
||||
},
|
||||
forge_tier: 5,
|
||||
inputs: [
|
||||
{ amount: 1, ingredient: Ingredient.of(Platform.isLoaded("eternal_starlight") ? 'eternal_starlight:loot_bag[eternal_starlight:loot_table="eternal_starlight:bosses/lunar_monstrosity"]' : 'ftbquests:missing_item[ftbquests:missing_item="eternal_starlight:loot_bag"]').toJson() },
|
||||
{ amount: 1, ingredient: Ingredient.of('enderio:z_logic_controller').toJson() },
|
||||
{ amount: 1, ingredient: Ingredient.of('alltheores:enderium_gear').toJson() },
|
||||
{ amount: 1, ingredient: Ingredient.of('forbidden_arcanus:mundabitur_dust').toJson() },
|
||||
{ amount: 1, ingredient: Ingredient.of('forbidden_arcanus:quantum_injector').toJson() },
|
||||
{ amount: 1, ingredient: Ingredient.of('enderio:z_logic_controller').toJson() },
|
||||
{ amount: 1, ingredient: Ingredient.of('alltheores:enderium_gear').toJson() },
|
||||
{ amount: 1, ingredient: Ingredient.of('forbidden_arcanus:mundabitur_dust').toJson() }
|
||||
],
|
||||
magic_circle: 'forbidden_arcanus:create_item',
|
||||
main_ingredient: {
|
||||
item: 'forbidden_arcanus:polished_darkstone'
|
||||
},
|
||||
result: {
|
||||
type: 'forbidden_arcanus:create_item',
|
||||
result_item: Item.of('modern_industrialization:star_altar').toJson()
|
||||
}
|
||||
}
|
||||
)
|
||||
|
||||
allthemods.json(`atm:forbidden_arcanus/hephaestus_forge/ritual/mi_runic_crystal.json`,
|
||||
{
|
||||
enhancers: [
|
||||
'forbidden_arcanus:artisan_relic',
|
||||
'forbidden_arcanus:elementarium',
|
||||
'forbidden_arcanus:divine_pact'
|
||||
],
|
||||
essences: {
|
||||
aureal: 500,
|
||||
blood: 750,
|
||||
souls: 100,
|
||||
experience: 1000
|
||||
},
|
||||
forge_tier: 5,
|
||||
inputs: [
|
||||
{ amount: 1, ingredient: Ingredient.of('enderio:sentient_ender').toJson() },
|
||||
{ amount: 1, ingredient: Ingredient.of('enderio:z_logic_controller').toJson() },
|
||||
{ amount: 1, ingredient: Ingredient.of('alltheores:enderium_gear').toJson() },
|
||||
{ amount: 1, ingredient: Ingredient.of('mekanism:ultimate_control_circuit').toJson() },
|
||||
{ amount: 1, ingredient: Ingredient.of('forbidden_arcanus:mundabitur_dust').toJson() },
|
||||
{ amount: 1, ingredient: Ingredient.of('enderio:z_logic_controller').toJson() },
|
||||
{ amount: 1, ingredient: Ingredient.of('alltheores:enderium_gear').toJson() },
|
||||
{ amount: 1, ingredient: Ingredient.of('mekanism:ultimate_control_circuit').toJson() }
|
||||
],
|
||||
magic_circle: 'forbidden_arcanus:create_item',
|
||||
main_ingredient: {
|
||||
item: 'forbidden_arcanus:arcane_crystal'
|
||||
},
|
||||
result: {
|
||||
type: 'forbidden_arcanus:create_item',
|
||||
result_item: Item.of(`forbidden_arcanus:corrupted_arcane_crystal`).toJson()
|
||||
}
|
||||
}
|
||||
)
|
||||
})
|
||||
@@ -0,0 +1,321 @@
|
||||
ServerEvents.recipes(allthemods => {
|
||||
|
||||
if (Platform.isLoaded('modular_machinery_reborn')) {
|
||||
allthemods.recipes.modern_industrialization.auto_forge(1024, 100)
|
||||
.fluidIn('5000x kubejs:liquid_aureal')
|
||||
.fluidIn('1000x kubejs:liquid_souls')
|
||||
.fluidIn('5000x evilcraft:blood')
|
||||
.fluidIn('1000x #c:experience')
|
||||
.itemIn('enderio:end_steel_ingot')
|
||||
.itemIn('forbidden_arcanus:deorum_ingot')
|
||||
.itemIn('forbidden_arcanus:deorum_ingot')
|
||||
.itemIn('enderio:end_steel_ingot')
|
||||
.itemIn('allthemodium:allthemodium_ingot')
|
||||
.itemIn('forbidden_arcanus:deorum_ingot')
|
||||
.itemIn('enderio:end_steel_ingot')
|
||||
.itemIn('enderio:end_steel_ingot')
|
||||
.itemIn('forbidden_arcanus:deorum_ingot')
|
||||
.itemOut('24x modular_machinery_reborn:modularium')
|
||||
|
||||
allthemods.recipes.modern_industrialization.auto_forge(1024, 100)
|
||||
.fluidIn('5000x kubejs:liquid_aureal')
|
||||
.fluidIn('1000x kubejs:liquid_souls')
|
||||
.fluidIn('5000x evilcraft:blood')
|
||||
.fluidIn('1000x #c:experience')
|
||||
.itemIn('enderio:end_steel_ingot')
|
||||
.itemIn('forbidden_arcanus:deorum_ingot')
|
||||
.itemIn('forbidden_arcanus:deorum_ingot')
|
||||
.itemIn('enderio:end_steel_ingot')
|
||||
.itemIn('allthemodium:vibranium_ingot')
|
||||
.itemIn('forbidden_arcanus:deorum_ingot')
|
||||
.itemIn('enderio:end_steel_ingot')
|
||||
.itemIn('enderio:end_steel_ingot')
|
||||
.itemIn('forbidden_arcanus:deorum_ingot')
|
||||
.itemOut('32x modular_machinery_reborn:modularium')
|
||||
|
||||
allthemods.recipes.modern_industrialization.auto_forge(1024, 100)
|
||||
.fluidIn('5000x kubejs:liquid_aureal')
|
||||
.fluidIn('1000x kubejs:liquid_souls')
|
||||
.fluidIn('5000x evilcraft:blood')
|
||||
.fluidIn('1000x #c:experience')
|
||||
.itemIn('enderio:end_steel_ingot')
|
||||
.itemIn('forbidden_arcanus:deorum_ingot')
|
||||
.itemIn('forbidden_arcanus:deorum_ingot')
|
||||
.itemIn('enderio:end_steel_ingot')
|
||||
.itemIn('allthemodium:unobtainium_ingot')
|
||||
.itemIn('forbidden_arcanus:deorum_ingot')
|
||||
.itemIn('enderio:end_steel_ingot')
|
||||
.itemIn('enderio:end_steel_ingot')
|
||||
.itemIn('forbidden_arcanus:deorum_ingot')
|
||||
.itemOut('48x modular_machinery_reborn:modularium')
|
||||
} else {
|
||||
allthemods.recipes.modern_industrialization.auto_forge(1024, 100)
|
||||
.fluidIn('5000x kubejs:liquid_aureal')
|
||||
.fluidIn('1000x kubejs:liquid_souls')
|
||||
.fluidIn('5000x evilcraft:blood')
|
||||
.fluidIn('1000x #c:experience')
|
||||
.itemIn('enderio:end_steel_ingot')
|
||||
.itemIn('forbidden_arcanus:deorum_ingot')
|
||||
.itemIn('forbidden_arcanus:deorum_ingot')
|
||||
.itemIn('enderio:end_steel_ingot')
|
||||
.itemIn('allthemodium:allthemodium_ingot')
|
||||
.itemIn('forbidden_arcanus:deorum_ingot')
|
||||
.itemIn('enderio:end_steel_ingot')
|
||||
.itemIn('enderio:end_steel_ingot')
|
||||
.itemIn('forbidden_arcanus:deorum_ingot')
|
||||
.itemOut('24x kubejs:modularium')
|
||||
|
||||
allthemods.recipes.modern_industrialization.auto_forge(1024, 100)
|
||||
.fluidIn('5000x kubejs:liquid_aureal')
|
||||
.fluidIn('1000x kubejs:liquid_souls')
|
||||
.fluidIn('5000x evilcraft:blood')
|
||||
.fluidIn('1000x #c:experience')
|
||||
.itemIn('enderio:end_steel_ingot')
|
||||
.itemIn('forbidden_arcanus:deorum_ingot')
|
||||
.itemIn('forbidden_arcanus:deorum_ingot')
|
||||
.itemIn('enderio:end_steel_ingot')
|
||||
.itemIn('allthemodium:vibranium_ingot')
|
||||
.itemIn('forbidden_arcanus:deorum_ingot')
|
||||
.itemIn('enderio:end_steel_ingot')
|
||||
.itemIn('enderio:end_steel_ingot')
|
||||
.itemIn('forbidden_arcanus:deorum_ingot')
|
||||
.itemOut('32x kubejs:modularium')
|
||||
|
||||
allthemods.recipes.modern_industrialization.auto_forge(1024, 100)
|
||||
.fluidIn('5000x kubejs:liquid_aureal')
|
||||
.fluidIn('1000x kubejs:liquid_souls')
|
||||
.fluidIn('5000x evilcraft:blood')
|
||||
.fluidIn('1000x #c:experience')
|
||||
.itemIn('enderio:end_steel_ingot')
|
||||
.itemIn('forbidden_arcanus:deorum_ingot')
|
||||
.itemIn('forbidden_arcanus:deorum_ingot')
|
||||
.itemIn('enderio:end_steel_ingot')
|
||||
.itemIn('allthemodium:unobtainium_ingot')
|
||||
.itemIn('forbidden_arcanus:deorum_ingot')
|
||||
.itemIn('enderio:end_steel_ingot')
|
||||
.itemIn('enderio:end_steel_ingot')
|
||||
.itemIn('forbidden_arcanus:deorum_ingot')
|
||||
.itemOut('48x kubejs:modularium')
|
||||
}
|
||||
|
||||
allthemods.recipes.modern_industrialization.auto_forge(1024, 100)
|
||||
.fluidIn('1000x kubejs:liquid_aureal')
|
||||
.fluidIn('80x kubejs:liquid_souls')
|
||||
.fluidIn('20000x evilcraft:blood')
|
||||
.itemIn('minecraft:heart_of_the_sea')
|
||||
.itemIn('2x minecraft:prismarine_shard')
|
||||
.itemIn('2x minecraft:turtle_scute')
|
||||
.itemIn('2x minecraft:lapis_lazuli')
|
||||
.itemOut('forbidden_arcanus:sea_prism')
|
||||
|
||||
allthemods.recipes.modern_industrialization.auto_forge(1024, 100)
|
||||
.fluidIn('2000x kubejs:liquid_aureal')
|
||||
.fluidIn('400x kubejs:liquid_souls')
|
||||
.fluidIn('12500x evilcraft:blood')
|
||||
.itemIn('forbidden_arcanus:arcane_crystal_block')
|
||||
.itemIn('2x minecraft:coal')
|
||||
.itemIn('3x minecraft:blaze_powder')
|
||||
.itemOut('forbidden_arcanus:smelter_prism')
|
||||
|
||||
allthemods.recipes.modern_industrialization.auto_forge(1024, 100)
|
||||
.fluidIn('3000x kubejs:liquid_aureal')
|
||||
.fluidIn('90x kubejs:liquid_souls')
|
||||
.fluidIn('15000x evilcraft:blood')
|
||||
.itemIn('minecraft:diamond_block')
|
||||
.itemIn('2x minecraft:flint')
|
||||
.itemIn('2x minecraft:dripstone_block')
|
||||
.itemIn('2x minecraft:pointed_dripstone')
|
||||
.itemOut('forbidden_arcanus:terrastomp_prism')
|
||||
|
||||
allthemods.recipes.modern_industrialization.auto_forge(1024, 100)
|
||||
.fluidIn('10000x kubejs:liquid_aureal')
|
||||
.fluidIn('30x kubejs:liquid_souls')
|
||||
.fluidIn('22500x evilcraft:blood')
|
||||
.itemIn('minecraft:white_wool')
|
||||
.itemIn('forbidden_arcanus:bat_wing')
|
||||
.itemIn('2x minecraft:feather')
|
||||
.itemIn('3x minecraft:phantom_membrane')
|
||||
.itemOut('forbidden_arcanus:whirlwind_prism')
|
||||
|
||||
allthemods.recipes.modern_industrialization.auto_forge(1024, 100)
|
||||
.fluidIn('15000x kubejs:liquid_aureal')
|
||||
.fluidIn('200x kubejs:liquid_souls')
|
||||
.fluidIn('3750x evilcraft:blood')
|
||||
.fluidIn('2200x #c:experience')
|
||||
.itemIn('minecraft:quartz')
|
||||
.itemIn('forbidden_arcanus:soul')
|
||||
.itemIn('forbidden_arcanus:corrupt_soul')
|
||||
.itemIn('forbidden_arcanus:enchanted_soul')
|
||||
.itemIn('2x minecraft:amethyst_shard')
|
||||
.itemIn('3x forbidden_arcanus:ender_pearl_fragment')
|
||||
.itemOut('forbidden_arcanus:soul_binding_crystal')
|
||||
|
||||
allthemods.recipes.modern_industrialization.auto_forge(1024, 100)
|
||||
.fluidIn('50000x kubejs:liquid_aureal')
|
||||
.fluidIn('500x kubejs:liquid_souls')
|
||||
.fluidIn('30000x evilcraft:blood')
|
||||
.fluidIn('10600x #c:experience')
|
||||
.itemIn('forbidden_arcanus:mundabitur_dust')
|
||||
.itemIn('4x forbidden_arcanus:quantum_core')
|
||||
.itemOut('forbidden_arcanus:quantum_injector')
|
||||
|
||||
allthemods.recipes.modern_industrialization.auto_forge(1024, 100)
|
||||
.fluidIn('1000x kubejs:liquid_aureal')
|
||||
.fluidIn('320x kubejs:liquid_souls')
|
||||
.fluidIn('10000x evilcraft:blood')
|
||||
.fluidIn('3000x #c:experience')
|
||||
.itemIn('forbidden_arcanus:silver_dragon_scale')
|
||||
.itemIn('allthemodium:unobtainium_vibranium_alloy_ingot')
|
||||
.itemIn('forbidden_arcanus:golden_dragon_scale')
|
||||
.itemIn('forbidden_arcanus:eternal_stella')
|
||||
.itemIn('allthemodium:unobtainium_shovel')
|
||||
.itemIn('forbidden_arcanus:eternal_stella')
|
||||
.itemIn('allthemodium:vibranium_allthemodium_alloy_ingot')
|
||||
.itemIn('forbidden_arcanus:aquatic_dragon_scale')
|
||||
.itemIn('allthemodium:unobtainium_allthemodium_alloy_ingot')
|
||||
.itemOut('allthemodium:alloy_shovel')
|
||||
|
||||
allthemods.recipes.modern_industrialization.auto_forge(1024, 100)
|
||||
.fluidIn('1000x kubejs:liquid_aureal')
|
||||
.fluidIn('320x kubejs:liquid_souls')
|
||||
.fluidIn('10000x evilcraft:blood')
|
||||
.fluidIn('3000x #c:experience')
|
||||
.itemIn('forbidden_arcanus:silver_dragon_scale')
|
||||
.itemIn('allthemodium:unobtainium_vibranium_alloy_ingot')
|
||||
.itemIn('forbidden_arcanus:golden_dragon_scale')
|
||||
.itemIn('forbidden_arcanus:eternal_stella')
|
||||
.itemIn('allthemodium:unobtainium_pickaxe')
|
||||
.itemIn('forbidden_arcanus:eternal_stella')
|
||||
.itemIn('allthemodium:vibranium_allthemodium_alloy_ingot')
|
||||
.itemIn('forbidden_arcanus:aquatic_dragon_scale')
|
||||
.itemIn('allthemodium:unobtainium_allthemodium_alloy_ingot')
|
||||
.itemOut('allthemodium:alloy_pick')
|
||||
|
||||
allthemods.recipes.modern_industrialization.auto_forge(1024, 100)
|
||||
.fluidIn('1000x kubejs:liquid_aureal')
|
||||
.fluidIn('320x kubejs:liquid_souls')
|
||||
.fluidIn('10000x evilcraft:blood')
|
||||
.fluidIn('3000x #c:experience')
|
||||
.itemIn('forbidden_arcanus:silver_dragon_scale')
|
||||
.itemIn('allthemodium:unobtainium_vibranium_alloy_ingot')
|
||||
.itemIn('forbidden_arcanus:golden_dragon_scale')
|
||||
.itemIn('forbidden_arcanus:eternal_stella')
|
||||
.itemIn('allthemodium:unobtainium_sword')
|
||||
.itemIn('forbidden_arcanus:eternal_stella')
|
||||
.itemIn('allthemodium:vibranium_allthemodium_alloy_ingot')
|
||||
.itemIn('forbidden_arcanus:aquatic_dragon_scale')
|
||||
.itemIn('allthemodium:unobtainium_allthemodium_alloy_ingot')
|
||||
.itemOut('allthemodium:alloy_sword')
|
||||
|
||||
allthemods.recipes.modern_industrialization.auto_forge(1024, 100)
|
||||
.fluidIn('1000x kubejs:liquid_aureal')
|
||||
.fluidIn('320x kubejs:liquid_souls')
|
||||
.fluidIn('10000x evilcraft:blood')
|
||||
.fluidIn('3000x #c:experience')
|
||||
.itemIn('forbidden_arcanus:silver_dragon_scale')
|
||||
.itemIn('allthemodium:unobtainium_vibranium_alloy_ingot')
|
||||
.itemIn('forbidden_arcanus:golden_dragon_scale')
|
||||
.itemIn('forbidden_arcanus:eternal_stella')
|
||||
.itemIn('allthemodium:unobtainium_axe')
|
||||
.itemIn('forbidden_arcanus:eternal_stella')
|
||||
.itemIn('allthemodium:vibranium_allthemodium_alloy_ingot')
|
||||
.itemIn('forbidden_arcanus:aquatic_dragon_scale')
|
||||
.itemIn('allthemodium:unobtainium_allthemodium_alloy_ingot')
|
||||
.itemOut('allthemodium:alloy_axe')
|
||||
|
||||
allthemods.recipes.modern_industrialization.auto_forge(1024, 100)
|
||||
.fluidIn('1000x kubejs:liquid_aureal')
|
||||
.fluidIn('640x kubejs:liquid_souls')
|
||||
.fluidIn('20000x evilcraft:blood')
|
||||
.fluidIn('6000x #c:experience')
|
||||
.itemIn('forbidden_arcanus:smelter_prism')
|
||||
.itemIn('allthemodium:alloy_sword')
|
||||
.itemIn('forbidden_arcanus:terrastomp_prism')
|
||||
.itemIn('allthemodium:alloy_shovel')
|
||||
.itemIn('mysticalagradditions:awakened_supremium_paxel')
|
||||
.itemIn('allthemodium:alloy_pick')
|
||||
.itemIn('forbidden_arcanus:whirlwind_prism')
|
||||
.itemIn('allthemodium:alloy_axe')
|
||||
.itemIn('forbidden_arcanus:sea_prism')
|
||||
.itemOut('allthemodium:alloy_paxel')
|
||||
|
||||
allthemods.recipes.modern_industrialization.auto_forge(1024, 100)
|
||||
.fluidIn('820x kubejs:liquid_aureal')
|
||||
.fluidIn('10x kubejs:liquid_souls')
|
||||
.fluidIn('10000x evilcraft:blood')
|
||||
.itemIn('3x forbidden_arcanus:xpetrified_orb')
|
||||
.itemIn('forbidden_arcanus:stellarite_piece')
|
||||
.itemIn('minecraft:diamond')
|
||||
.itemOut('forbidden_arcanus:eternal_stella')
|
||||
|
||||
allthemods.recipes.modern_industrialization.auto_forge(1024, 100)
|
||||
.fluidIn('1000x kubejs:liquid_aureal')
|
||||
.fluidIn('20x kubejs:liquid_souls')
|
||||
.fluidIn('12500x evilcraft:blood')
|
||||
.itemIn('2x minecraft:clay_ball')
|
||||
.itemIn('2x forbidden_arcanus:wax')
|
||||
.itemIn('2x minecraft:slime_ball')
|
||||
.itemIn('minecraft:iron_ingot')
|
||||
.itemIn('minecraft:lodestone')
|
||||
.itemOut('forbidden_arcanus:ferrognetic_mixture')
|
||||
|
||||
allthemods.recipes.modern_industrialization.auto_forge(1024, 100)
|
||||
.fluidIn('2000x kubejs:liquid_aureal')
|
||||
.fluidIn('50x kubejs:liquid_souls')
|
||||
.fluidIn('12000x evilcraft:blood')
|
||||
.fluidIn('1550x #c:experience')
|
||||
.itemIn('4x forbidden_arcanus:spawner_scrap')
|
||||
.itemIn('forbidden_arcanus:quantum_core')
|
||||
.itemOut('forbidden_arcanus:quantum_catcher')
|
||||
|
||||
allthemods.recipes.modern_industrialization.auto_forge(1024, 100)
|
||||
.fluidIn('5000x kubejs:liquid_aureal')
|
||||
.fluidIn('100x kubejs:liquid_souls')
|
||||
.fluidIn('75000x evilcraft:blood')
|
||||
.fluidIn('12000x #c:experience')
|
||||
.itemIn('minecraft:nether_star')
|
||||
.itemIn('3x forbidden_arcanus:stellarite_piece')
|
||||
.itemIn('forbidden_arcanus:quantum_catcher')
|
||||
.itemOut('forbidden_arcanus:boss_catcher')
|
||||
|
||||
allthemods.recipes.modern_industrialization.auto_forge(1024, 100)
|
||||
.fluidIn('5000x kubejs:liquid_aureal')
|
||||
.fluidIn('100x kubejs:liquid_souls')
|
||||
.fluidIn('60000x evilcraft:blood')
|
||||
.itemIn('4x forbidden_arcanus:arcane_crystal')
|
||||
.itemIn('4x forbidden_arcanus:spawner_scrap')
|
||||
.itemIn('forbidden_arcanus:edelwood_planks')
|
||||
.itemIn('forbidden_arcanus:hephaestus_forge_tier_1')
|
||||
.itemOut('forbidden_arcanus:hephaestus_forge_tier_2')
|
||||
|
||||
allthemods.recipes.modern_industrialization.auto_forge(1024, 100)
|
||||
.fluidIn('10000x kubejs:liquid_aureal')
|
||||
.fluidIn('500x kubejs:liquid_souls')
|
||||
.fluidIn('90000x evilcraft:blood')
|
||||
.itemIn('4x forbidden_arcanus:arcane_crystal')
|
||||
.itemIn('4x forbidden_arcanus:deorum_ingot')
|
||||
.itemIn('forbidden_arcanus:chiseled_polished_darkstone')
|
||||
.itemIn('forbidden_arcanus:hephaestus_forge_tier_2')
|
||||
.itemOut('forbidden_arcanus:hephaestus_forge_tier_3')
|
||||
|
||||
allthemods.recipes.modern_industrialization.auto_forge(1024, 100)
|
||||
.fluidIn('20000x kubejs:liquid_aureal')
|
||||
.fluidIn('1000x kubejs:liquid_souls')
|
||||
.fluidIn('120000x evilcraft:blood')
|
||||
.itemIn('4x forbidden_arcanus:stellarite_piece')
|
||||
.itemIn('4x forbidden_arcanus:rune')
|
||||
.itemIn('forbidden_arcanus:chiseled_polished_darkstone')
|
||||
.itemIn('forbidden_arcanus:hephaestus_forge_tier_3')
|
||||
.itemOut('forbidden_arcanus:hephaestus_forge_tier_4')
|
||||
|
||||
allthemods.recipes.modern_industrialization.auto_forge(1024, 100)
|
||||
.fluidIn('50000x kubejs:liquid_aureal')
|
||||
.fluidIn('5000x kubejs:liquid_souls')
|
||||
.fluidIn('200000x evilcraft:blood')
|
||||
.itemIn('4x minecraft:sculk_catalyst')
|
||||
.itemIn('2x forbidden_arcanus:dark_nether_star')
|
||||
.itemIn('2x forbidden_arcanus:dragon_scale')
|
||||
.itemIn('forbidden_arcanus:stellarite_block')
|
||||
.itemIn('forbidden_arcanus:hephaestus_forge_tier_4')
|
||||
.itemOut('forbidden_arcanus:hephaestus_forge_tier_5')
|
||||
})
|
||||
@@ -0,0 +1,34 @@
|
||||
ServerEvents.recipes(allthemods => {
|
||||
allthemods.recipes.modern_industrialization.runic_crucible(32, 100)
|
||||
.itemIn('2x forbidden_arcanus:arcane_crystal_dust')
|
||||
.fluidIn("1000x starbunclemania:source_fluid")
|
||||
.fluidIn("250x minecraft:water")
|
||||
.fluidOut('250x kubejs:liquid_aureal')
|
||||
|
||||
allthemods.recipes.modern_industrialization.runic_crucible(32, 100)
|
||||
.itemIn('forbidden_arcanus:soul')
|
||||
.fluidIn("2000x starbunclemania:source_fluid")
|
||||
.fluidIn('500x kubejs:unrefined_liquid_souls')
|
||||
.fluidOut('500x kubejs:liquid_souls')
|
||||
|
||||
allthemods.recipes.modern_industrialization.runic_crucible(32, 100)
|
||||
.itemIn('forbidden_arcanus:soul')
|
||||
.itemIn('reliquary:holy_hand_grenade')
|
||||
.fluidIn("2500x starbunclemania:source_fluid")
|
||||
.fluidIn('1000x kubejs:liquid_aureal')
|
||||
.itemOut('forbidden_arcanus:enchanted_soul')
|
||||
|
||||
allthemods.recipes.modern_industrialization.runic_crucible(32, 100)
|
||||
.itemIn('4x forbidden_arcanus:corrupti_dust')
|
||||
.itemIn('forbidden_arcanus:soul')
|
||||
.itemIn(Platform.isLoaded("eternal_starlight") ? '4x eternal_starlight:trapped_soul' : 'ftbquests:missing_item[ftbquests:missing_item="eternal_starlight:trapped_soul"]')
|
||||
.fluidIn("2500x starbunclemania:source_fluid")
|
||||
.itemOut('forbidden_arcanus:corrupt_soul')
|
||||
|
||||
allthemods.recipes.modern_industrialization.runic_crucible(32, 150)
|
||||
.itemIn('2x #c:dusts/obsidian')
|
||||
.itemIn('alltheores:steel_ingot')
|
||||
.fluidIn("2500x starbunclemania:source_fluid")
|
||||
.fluidIn('500x kubejs:liquid_souls')
|
||||
.itemOut('forbidden_arcanus:obsidiansteel_ingot')
|
||||
})
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,97 @@
|
||||
ServerEvents.recipes(allthemods => {
|
||||
//Awakened Alloy Block
|
||||
allthemods.recipes.modern_industrialization.star_altar(2048, 200)
|
||||
.itemIn('allthemodium:unobtainium_vibranium_alloy_block')
|
||||
.itemIn('4x mysticalagriculture:awakened_supremium_essence')
|
||||
.itemIn('4x minecraft:enchanted_book[stored_enchantments={levels:{"minecraft:unbreaking":1}}]')
|
||||
.itemIn('4x mysticalagriculture:awakened_supremium_gemstone')
|
||||
.itemOut(`allthemodium:unobtainium_vibranium_alloy_block[enchantments={levels:{"minecraft:unbreaking":1}},custom_name='{"extra":[{"italic":false,"text":"Awakened Unobtainium-Vibranium Alloy Block"}],"text":""}']`)
|
||||
|
||||
//Infused Patrick Star
|
||||
allthemods.recipes.modern_industrialization.star_altar(2048, 200)
|
||||
.itemIn('36x allthetweaks:atm_star_shard')
|
||||
.itemIn('12x apothic_enchanting:infused_breath')
|
||||
.itemIn('4x minecraft:enchanted_book[stored_enchantments={levels:{"minecraft:mending":1}}]')
|
||||
.itemIn('allthemodium:vibranium_allthemodium_alloy_ingot')
|
||||
.itemIn('allthemodium:unobtainium_allthemodium_alloy_ingot')
|
||||
.itemIn('allthemodium:unobtainium_vibranium_alloy_ingot')
|
||||
.itemIn('allthetweaks:patrick_star')
|
||||
.itemOut(`allthetweaks:patrick_star[enchantments={levels:{"minecraft:mending":1}},custom_name='{"extra":[{"italic":false,"text":"Infused Patrick Star"}],"text":""}']`)
|
||||
|
||||
//Patrick Star
|
||||
allthemods.recipes.modern_industrialization.star_altar(2048, 200)
|
||||
.itemIn('13x minecraft:magenta_concrete')
|
||||
.itemIn('11x minecraft:pink_concrete')
|
||||
.itemIn('8x minecraft:green_concrete')
|
||||
.itemIn('8x minecraft:green_concrete_powder')
|
||||
.itemIn('8x minecraft:magenta_concrete_powder')
|
||||
.itemIn('5x minecraft:pink_concrete_powder')
|
||||
.itemIn('2x minecraft:lime_concrete')
|
||||
.itemOut('allthetweaks:patrick_star')
|
||||
|
||||
//ATM Star
|
||||
allthemods.recipes.modern_industrialization.star_altar(2048, 200)
|
||||
.itemIn('28x allthemodium:unobtainium_allthemodium_alloy_block')
|
||||
.itemIn('15x allthecompressed:nether_star_block_3x')
|
||||
.itemIn(`2x allthemodium:unobtainium_vibranium_alloy_block[enchantments={levels:{"minecraft:unbreaking":1}},custom_name='{"extra":[{"italic":false,"text":"Awakened Unobtainium-Vibranium Alloy Block"}],"text":""}']`)
|
||||
.itemIn('allthetweaks:oblivion_shard')
|
||||
.itemIn('mysticalagradditions:creative_essence')
|
||||
.itemIn('allthetweaks:nexium_emitter')
|
||||
.itemIn('allthetweaks:withers_compass')
|
||||
.itemIn('allthetweaks:improbable_probability_device')
|
||||
.itemIn('allthetweaks:dragon_soul')
|
||||
.itemIn('allthetweaks:philosophers_fuel')
|
||||
.itemIn('allthetweaks:pulsating_black_hole')
|
||||
.itemIn('allthetweaks:dimensional_seed')
|
||||
.itemIn('allthetweaks:patrick_star')
|
||||
.itemOut('allthetweaks:atm_star')
|
||||
|
||||
//ATM Star Shard
|
||||
allthemods.recipes.modern_industrialization.star_altar(2048, 200)
|
||||
.itemIn('actuallyadditions:lens_of_the_killer')
|
||||
.itemIn('kubejs:atm_star_shard_1')
|
||||
.itemIn('kubejs:atm_star_shard_2')
|
||||
.itemIn('kubejs:atm_star_shard_3')
|
||||
.itemIn('kubejs:atm_star_shard_4')
|
||||
.itemIn('kubejs:atm_star_shard_5')
|
||||
.itemIn('forbidden_arcanus:mundabitur_dust')
|
||||
.itemIn('forbidden_arcanus:corrupti_dust')
|
||||
.itemIn(`allthetweaks:patrick_star[enchantments={levels:{"minecraft:mending":1}},custom_name='{"extra":[{"italic":false,"text":"Infused Patrick Star"}],"text":""}']`)
|
||||
.itemOut('allthetweaks:atm_star')
|
||||
|
||||
//ATM Fragments
|
||||
let fragment = [
|
||||
{
|
||||
fragment: 1,
|
||||
shards: 48,
|
||||
prism: 'forbidden_arcanus:soul_binding_crystal'
|
||||
},
|
||||
{
|
||||
fragment: 2,
|
||||
shards: 52,
|
||||
prism: 'forbidden_arcanus:whirlwind_prism'
|
||||
},
|
||||
{
|
||||
fragment: 3,
|
||||
shards: 52,
|
||||
prism: 'forbidden_arcanus:smelter_prism'
|
||||
},
|
||||
{
|
||||
fragment: 4,
|
||||
shards: 52,
|
||||
prism: 'forbidden_arcanus:sea_prism'
|
||||
},
|
||||
{
|
||||
fragment: 5,
|
||||
shards: 52,
|
||||
prism: 'forbidden_arcanus:terrastomp_prism'
|
||||
}
|
||||
]
|
||||
|
||||
for (let item of fragment) {
|
||||
allthemods.recipes.modern_industrialization.star_altar(2048, 200)
|
||||
.itemIn(`${item.shards}x allthetweaks:atm_star_shard`)
|
||||
.itemIn(item.prism)
|
||||
.itemOut(`kubejs:atm_star_shard_${item.fragment}`)
|
||||
}
|
||||
})
|
||||
Reference in New Issue
Block a user