All the Mods 10 - ATM10

All the Mods 10 - ATM10

6M Downloads

[Recipe Issue]: Iron Spells and spellbooks armor recipies missing

leprican-twitch opened this issue ยท 2 comments

commented

Modpack Version

ATM 10-4.5 release

Describe the issue

unable to craft or upgrade any gear to the late game gear for school specializations. (pyromancer, cyromancer, priest etc)

commented

I found this fix on Reddit for the Pyromancer and I used the technique to add the rest of the sets.

"Open the instance folder and go to the following file:

`All the Mods 10 - ATM10\kubejs\server_scripts\Tweaks\recipes.js`
  1. Open this file in a text editor and add the following code: after this line: ServerEvents.recipes(allthemods => { '


// === Pyromancer (Fire Rune) ===
allthemods.smithing(
    'irons_spellbooks:pyromancer_helmet',               // arg 1: output
    'irons_spellbooks:fire_rune',                  // arg 2: the smithing template
    'irons_spellbooks:wizard_helmet',                   // arg 3: the item to be upgraded
    'minecraft:gold_ingot'                                 // arg 4: the upgrade item
)
allthemods.smithing(
    'irons_spellbooks:pyromancer_chestplate',           // arg 1: output
    'irons_spellbooks:fire_rune',                  // arg 2: the smithing template
    'irons_spellbooks:wizard_chestplate',               // arg 3: the item to be upgraded
    'minecraft:gold_ingot'                                 // arg 4: the upgrade item
)
allthemods.smithing(
    'irons_spellbooks:pyromancer_leggings',             // arg 1: output
    'irons_spellbooks:fire_rune',                  // arg 2: the smithing template
    'irons_spellbooks:wizard_leggings',                 // arg 3: the item to be upgraded
    'minecraft:gold_ingot'                                 // arg 4: the upgrade item
)
allthemods.smithing(
    'irons_spellbooks:pyromancer_boots',                // arg 1: output
    'irons_spellbooks:fire_rune',                  // arg 2: the smithing template
    'irons_spellbooks:wizard_boots',                    // arg 3: the item to be upgraded
    'minecraft:gold_ingot'                                 // arg 4: the upgrade item
)


// === Cryomancer (Ice Rune) ===
allthemods.smithing('irons_spellbooks:cryomancer_helmet', 'irons_spellbooks:ice_rune', 'irons_spellbooks:wizard_helmet', 'minecraft:emerald')
allthemods.smithing('irons_spellbooks:cryomancer_chestplate', 'irons_spellbooks:ice_rune', 'irons_spellbooks:wizard_chestplate', 'minecraft:emerald')
allthemods.smithing('irons_spellbooks:cryomancer_leggings', 'irons_spellbooks:ice_rune', 'irons_spellbooks:wizard_leggings', 'minecraft:emerald')
allthemods.smithing('irons_spellbooks:cryomancer_boots', 'irons_spellbooks:ice_rune', 'irons_spellbooks:wizard_boots', 'minecraft:emerald')

// === Cultist (Blood Rune) ===
allthemods.smithing('irons_spellbooks:cultist_helmet', 'irons_spellbooks:blood_rune', 'irons_spellbooks:wizard_helmet', 'minecraft:emerald')
allthemods.smithing('irons_spellbooks:cultist_chestplate', 'irons_spellbooks:blood_rune', 'irons_spellbooks:wizard_chestplate', 'minecraft:emerald')
allthemods.smithing('irons_spellbooks:cultist_leggings', 'irons_spellbooks:blood_rune', 'irons_spellbooks:wizard_leggings', 'minecraft:emerald')
allthemods.smithing('irons_spellbooks:cultist_boots', 'irons_spellbooks:blood_rune', 'irons_spellbooks:wizard_boots', 'minecraft:emerald')

// === Electromancer (Lightning Rune) ===
allthemods.smithing('irons_spellbooks:electromancer_helmet', 'irons_spellbooks:lightning_rune', 'irons_spellbooks:wizard_helmet', 'minecraft:emerald')
allthemods.smithing('irons_spellbooks:electromancer_chestplate', 'irons_spellbooks:lightning_rune', 'irons_spellbooks:wizard_chestplate', 'minecraft:emerald')
allthemods.smithing('irons_spellbooks:electromancer_leggings', 'irons_spellbooks:lightning_rune', 'irons_spellbooks:wizard_leggings', 'minecraft:emerald')
allthemods.smithing('irons_spellbooks:electromancer_boots', 'irons_spellbooks:lightning_rune', 'irons_spellbooks:wizard_boots', 'minecraft:emerald')

// === Plagued (Nature Rune) ===
allthemods.smithing('irons_spellbooks:plagued_helmet', 'irons_spellbooks:nature_rune', 'irons_spellbooks:wizard_helmet', 'minecraft:emerald')
allthemods.smithing('irons_spellbooks:plagued_chestplate', 'irons_spellbooks:nature_rune', 'irons_spellbooks:wizard_chestplate', 'minecraft:emerald')
allthemods.smithing('irons_spellbooks:plagued_leggings', 'irons_spellbooks:nature_rune', 'irons_spellbooks:wizard_leggings', 'minecraft:emerald')
allthemods.smithing('irons_spellbooks:plagued_boots', 'irons_spellbooks:nature_rune', 'irons_spellbooks:wizard_boots', 'minecraft:emerald')

// === Priest (Holy Rune) ===
allthemods.smithing('irons_spellbooks:priest_helmet', 'irons_spellbooks:holy_rune', 'irons_spellbooks:wizard_helmet', 'minecraft:emerald')
allthemods.smithing('irons_spellbooks:priest_chestplate', 'irons_spellbooks:holy_rune', 'irons_spellbooks:wizard_chestplate', 'minecraft:emerald')
allthemods.smithing('irons_spellbooks:priest_leggings', 'irons_spellbooks:holy_rune', 'irons_spellbooks:wizard_leggings', 'minecraft:emerald')
allthemods.smithing('irons_spellbooks:priest_boots', 'irons_spellbooks:holy_rune', 'irons_spellbooks:wizard_boots', 'minecraft:emerald')

// === Shadow-Walker (Ender Rune) ===
allthemods.smithing('irons_spellbooks:shadowwalker_helmet', 'irons_spellbooks:ender_rune', 'irons_spellbooks:wizard_helmet', 'minecraft:emerald')
allthemods.smithing('irons_spellbooks:shadowwalker_chestplate', 'irons_spellbooks:ender_rune', 'irons_spellbooks:wizard_chestplate', 'minecraft:emerald')
allthemods.smithing('irons_spellbooks:shadowwalker_leggings', 'irons_spellbooks:ender_rune', 'irons_spellbooks:wizard_leggings', 'minecraft:emerald')
allthemods.smithing('irons_spellbooks:shadowwalker_boots', 'irons_spellbooks:ender_rune', 'irons_spellbooks:wizard_boots', 'minecraft:emerald')

commented

Just update the mod, it will fix it