Version 5.4
This commit is contained in:
@@ -0,0 +1,84 @@
|
||||
ServerEvents.generateData('after_mods', allthemods => {
|
||||
|
||||
const relics = {
|
||||
'forbidden_arcanus:artisan_relic': 'forbidden_arcanus:deorum_ingot',
|
||||
'forbidden_arcanus:elementarium': 'allthemodium:allthemodium_ingot',
|
||||
'forbidden_arcanus:crimson_stone': 'allthemodium:vibranium_ingot',
|
||||
'forbidden_arcanus:divine_pact': 'allthemodium:unobtainium_ingot',
|
||||
}
|
||||
|
||||
Object.entries(relics).forEach(([relic, ingot]) => {
|
||||
allthemods.json(`atm:forbidden_arcanus/hephaestus_forge/ritual/${relic.split(':').pop()}.json`,
|
||||
{
|
||||
essences: {
|
||||
aureal: 1000,
|
||||
blood: 1000,
|
||||
souls: 100,
|
||||
experience: 100
|
||||
},
|
||||
forge_tier: 3,
|
||||
inputs: [
|
||||
{
|
||||
amount: 1,
|
||||
ingredient: {
|
||||
item: 'forbidden_arcanus:obsidiansteel_block'
|
||||
}
|
||||
},
|
||||
{
|
||||
amount: 1,
|
||||
ingredient: {
|
||||
item: ingot
|
||||
}
|
||||
},
|
||||
{
|
||||
amount: 1,
|
||||
ingredient: {
|
||||
item: 'forbidden_arcanus:obsidiansteel_block'
|
||||
}
|
||||
},
|
||||
{
|
||||
amount: 1,
|
||||
ingredient: {
|
||||
item: ingot
|
||||
}
|
||||
},
|
||||
{
|
||||
amount: 1,
|
||||
ingredient: {
|
||||
item: 'forbidden_arcanus:obsidiansteel_block'
|
||||
}
|
||||
},
|
||||
{
|
||||
amount: 1,
|
||||
ingredient: {
|
||||
item: ingot
|
||||
}
|
||||
},
|
||||
{
|
||||
amount: 1,
|
||||
ingredient: {
|
||||
item: 'forbidden_arcanus:obsidiansteel_block'
|
||||
}
|
||||
},
|
||||
{
|
||||
amount: 1,
|
||||
ingredient: {
|
||||
item: ingot
|
||||
}
|
||||
}
|
||||
],
|
||||
magic_circle: 'forbidden_arcanus:create_item',
|
||||
main_ingredient: {
|
||||
item: relic
|
||||
},
|
||||
result: {
|
||||
type: 'forbidden_arcanus:create_item',
|
||||
result_item: {
|
||||
count: 2,
|
||||
id: relic
|
||||
}
|
||||
}
|
||||
}
|
||||
)
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,10 @@
|
||||
// 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.remove({id: 'forbidden_arcanus:smelting/dark_matter'})
|
||||
allthemods.smelting('forbidden_arcanus:dark_matter', 'forbidden_arcanus:edelwood_log')
|
||||
})
|
||||
|
||||
// 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.
|
||||
Reference in New Issue
Block a user