Iron's Spellbooks Tweaks

Quick rating

Iron's Spellbooks Tweaks

No reviews yet

Modpack config tweaks for Iron's Spells 'n Spellbooks. TOML options for mana, cooldowns, spell power and buff durations, dimension blocks, rarity gating, inscriptions, black hole resistance. Per-world overrides and datapack unlocks. Soft dep, no mixins.

No Theme
Magic
Mod Addon
Gated Progression & Stages
Mod Loaders
Forge
NeoForge
Minecraft

Community voices

Reviews

Versions
Loading versions…
Match includes

Click once to include, again to exclude, again to clear

Rating Any
Any 0.5 1.0 1.5 2.0 2.5 3.0 3.5 4.0 4.5 5.0
Min
Max
Play Status
Reviews
Time Played
hrs+
Verified developers only
Has developer response
List view
Grid view
Compact view
Sort by
Date
Rating
Helpful
Unhelpful
Edited
Sort ascending
Delete this review?

This removes your review from the project. You can write a new review after.

Review submitted for moderation

Your review has been sent to moderators, who will check that it meets our guidelines before it appears publicly.

No reviews yet. Be the first to review this project!

Get it on

Available Platforms

Compatibility

Supported Environments

Dev Environment
Client Unsupported
Server Required

About

Project Details

Type
Mod
License
MIT License
Latest Version
Iron's Spellbooks Tweaks 1.5.0 Forge (1.20.1)
Authors
CurseForge
Modrinth

For authors

Embed Badge

If you're the author of this project, you can embed a live badge anywhere that supports HTML or Markdown. It updates automatically whenever ratings change.

Custom banner text
ModDex rating badge preview

Use HTML for any page that supports it, or Markdown for README files and Markdown-based descriptions.

Identifiers

Platform IDs

CurseForge ID
Modrinth ID

Resources

External Links

About

Description

Iron's Spellbooks Tweaks

Config tweaks for Iron's Spells 'n Spellbooks. Adds TOML config options that Iron's doesn't expose.

What it does

Iron's Spellbooks has a small set of config options in its serverconfig (mana regen multiplier, spawn percent, sword toggles). Several open issues on iron431's GitHub ask for more direct control over mana regen rate, starting mana, and cooldowns (#161, #162, #391) that haven't been addressed.

This addon fills those gaps without touching Iron's serverconfig (which has known multiplayer sync bugs per #1033). It uses its own TOML at config/irons_spellbooks_tweaks-server.toml and applies settings via attribute modifiers and hooks on Iron's public events.

Config options

Mana

  • baseManaRegenPercent: bonus added to MANA_REGEN attribute on login
  • startingMaxMana: bonus added to MAX_MANA attribute on login
  • disableManaRegen: fully disables passive mana regen

Spell timing

  • cooldownReductionBonus: bonus to COOLDOWN_REDUCTION attribute
  • castTimeReductionBonus: bonus to CAST_TIME_REDUCTION attribute

Spell scaling (v1.5+)

  • spellPowerMultiplier: scales the SPELL_POWER attribute on every player, range 0.0 to 10.0. Damage tooltips reflect the scaled value.
  • buffDurationMultiplier: scales buff and debuff durations from Iron's Spellbooks and its addons, range 0.0 to 10.0. Vanilla potions, food effects, and beacon effects are not touched. The active effect countdown in inventory shows the actual time, the spell tooltip shows the unmodified base.
  • buffDurationNamespaces: list of mod namespaces whose effects get scaled by buffDurationMultiplier. Defaults cover Iron's Spellbooks plus Cataclysm Spellbooks, dacxirons, GameTechBC's Spellbooks, GTBC's Geomancy Plus, Hazen 'n Stuff, Illage and Spell-age, and Traveloptics.

Restrictions

  • spellCastingDisabledDimensions: list of dimension IDs where casting is blocked
  • maxSpellRarity: caps the highest spell rarity players can cast (mob casters bypass)
  • inscriptionBlacklist: list of spell IDs that cannot be inscribed

Black hole

  • blackholeImmunity: per-entity-type pull resistance values from 0.0 to 1.0

Summon scaling

  • summonVexHpMultiplier, summonVexDamageMultiplier: scale HP and damage of summoned vexes
  • raiseDeadHpMultiplier, raiseDeadDamageMultiplier: scale HP and damage of summoned skeletons and zombies from Raise Dead
  • summonPolarBearHpMultiplier, summonPolarBearDamageMultiplier: scale HP and damage of summoned polar bears
  • summonHorseHpMultiplier: scale HP of summoned horses
  • summonSwordsDamageMultiplier: scale damage of Summon Swords

Multipliers stack multiplicatively with any HP/damage scaling other mods apply.

Per-world config overrides (v1.5+)

The global config in config/ is the source of truth. To customize a specific world, drop a copy of the global file into that world's serverconfig/ folder and edit it. Missing keys fall back to global.

The /isstweaks copyconfig command (op-only) copies the global config into the current world's serverconfig/ folder so you can set up overrides in-game. It won't overwrite an existing per-world file.

Per-player progression unlocks

A datapack-driven unlock system lets pack devs gate spells, dimensions, and bonuses behind advancements or boss kills. JSONs go at data/<namespace>/isstweaks/unlocks/<id>.json. Supports advancement and entity_kill triggers.

Available grants:

  • rarity_cap: raise the player's allowed rarity ceiling above the global maxSpellRarity gate
  • cooldown_reduction_bonus: flat addition to the player's cooldown reduction attribute
  • cast_time_reduction_bonus: flat addition to the player's cast time reduction attribute
  • max_mana_bonus: flat int addition to the player's MAX_MANA attribute
  • mana_regen_bonus: flat addition to the player's MANA_REGEN attribute
  • remove_dimensions: exempt the player from the casting dimension blacklist for these dimensions
  • remove_inscriptions: exempt the player from the inscription blacklist for these spells

If a player gets multiple unlocks that grant the same number bonus, they all add up. Negative values work too if you want to subtract. There's an optional requirement_text field on each unlock JSON for a hint string, which the requirements command shows in chat.

Commands

OP only:

  • /isstweaks grant <player> <unlock_id>: manually grant an unlock
  • /isstweaks revoke <player> <unlock_id>: revoke from the granted set
  • /isstweaks status <player>: show current progress
  • /isstweaks reset <player>: wipe all progression data
  • /isstweaks copyconfig: copy the global config into the current world's serverconfig folder

Open to all players:

  • /isstweaks requirements spell <spell_id>: shows the unlock requirement for a specific spell. Prefixed with [Unlocked] if the player has already met it.
  • /isstweaks requirements rarity <rarity>: shows the unlock requirement for a rarity tier. Same [Unlocked] indicator when the player's cap is at or above the queried tier.

Note on overlap with Iron's per-spell configs

Iron's Spellbooks has per-spell JSON configs at config/irons_spellbooks_spell_config/ for tweaking individual spells (max level, mana cost multiplier, cooldown). This mod doesn't touch those. The maxSpellRarity option is just one rarity gate that applies to every spell at cast time, no per-spell editing needed. It's faster to set up but less precise than per-spell tweaking. Pick whichever fits, or use both together.

For modpack makers

Drop the jar in your pack's mods folder, edit config/irons_spellbooks_tweaks-server.toml, ship the config alongside the pack. All options are server-side so clients don't need matching configs.

Compatibility

  • Minecraft 1.20.1 Forge and Minecraft 1.21.1 NeoForge
  • Iron's Spells 'n Spellbooks 3.0.0+ (1.20.1) or 1.21.1-3.15.0+ (1.21.1)
  • Soft dependency, mod loads cleanly without Iron's Spellbooks present
  • No conflicts expected with other Iron's addons

License

MIT

Iron's Spellbooks Tweaks

Config tweaks for Iron's Spells 'n Spellbooks. Adds TOML config options that Iron's doesn't expose.

What it does

Iron's Spellbooks has a small set of config options in its serverconfig (mana regen multiplier, spawn percent, sword toggles). Several open issues on iron431's GitHub ask for more direct control over mana regen rate, starting mana, and cooldowns (#161, #162, #391) that haven't been addressed.

This addon fills those gaps without touching Iron's serverconfig (which has known multiplayer sync bugs per #1033). It uses its own TOML at config/irons_spellbooks_tweaks-server.toml and applies settings via attribute modifiers and hooks on Iron's public events.

Config options

Mana

baseManaRegenPercent: bonus added to MANA_REGEN attribute on login startingMaxMana: bonus added to MAX_MANA attribute on login disableManaRegen: fully disables passive mana regen

Spell timing

cooldownReductionBonus: bonus to COOLDOWN_REDUCTION attribute castTimeReductionBonus: bonus to CAST_TIME_REDUCTION attribute

Spell scaling

spellPowerMultiplier: scales the SPELL_POWER attribute on every player, range 0.0 to 10.0. Damage tooltips reflect the scaled value. buffDurationMultiplier: scales buff and debuff durations from Iron's Spellbooks and its addons, range 0.0 to 10.0. Vanilla potions, food effects, and beacon effects are not touched. The active effect countdown in inventory shows the actual time, the spell tooltip shows the unmodified base. buffDurationNamespaces: list of mod namespaces whose effects get scaled by buffDurationMultiplier. Defaults cover Iron's Spellbooks plus Cataclysm Spellbooks, dacxirons, GameTechBC's Spellbooks, GTBC's Geomancy Plus, Hazen 'n Stuff, Illage and Spell-age, and Traveloptics.

Restrictions

spellCastingDisabledDimensions: list of dimension IDs where casting is blocked maxSpellRarity: caps the highest spell rarity players can cast (mob casters bypass) inscriptionBlacklist: list of spell IDs that cannot be inscribed

Black hole

blackholeImmunity: per-entity-type pull resistance values from 0.0 to 1.0

Summon scaling

summonVexHpMultiplier, summonVexDamageMultiplier: scale HP and damage of summoned vexes raiseDeadHpMultiplier, raiseDeadDamageMultiplier: scale HP and damage of summoned skeletons and zombies from Raise Dead summonPolarBearHpMultiplier, summonPolarBearDamageMultiplier: scale HP and damage of summoned polar bears summonHorseHpMultiplier: scale HP of summoned horses summonSwordsDamageMultiplier: scale damage of Summon Swords

Multipliers stack multiplicatively with any HP/damage scaling other mods apply.

Per-world config overrides (v1.5+)

The global config in config/ is the source of truth. To customize a specific world, drop a copy of the global file into that world's serverconfig/ folder and edit it. Missing keys fall back to global.

The /isstweaks copyconfig command (op-only) copies the global config into the current world's serverconfig/ folder so you can set up overrides in-game. It won't overwrite an existing per-world file.

Per-player progression unlocks

A datapack-driven unlock system lets pack devs gate spells, dimensions, and bonuses behind advancements or boss kills. JSONs go at data//isstweaks/unlocks/.json. Supports advancement and entity_kill triggers.

Available grants:

rarity_cap: raise the player's allowed rarity ceiling above the global maxSpellRarity gate cooldown_reduction_bonus: flat addition to the player's cooldown reduction attribute cast_time_reduction_bonus: flat addition to the player's cast time reduction attribute max_mana_bonus: flat int addition to the player's MAX_MANA attribute mana_regen_bonus: flat addition to the player's MANA_REGEN attribute remove_dimensions: exempt the player from the casting dimension blacklist for these dimensions remove_inscriptions: exempt the player from the inscription blacklist for these spells

If a player gets multiple unlocks that grant the same number bonus, they all add up. Negative values work too if you want to subtract. There's an optional requirement_text field on each unlock JSON for a hint string, which the requirements command shows in chat.

Commands

OP only:

  • /isstweaks grant <unlock_id>: manually grant an unlock
  • /isstweaks revoke <unlock_id>: revoke from the granted set
  • /isstweaks status : show current progress
  • /isstweaks reset : wipe all progression data
  • /isstweaks copyconfig: copy the global config into the current world's serverconfig folder

Open to all players:

  • /isstweaks requirements spell <spell_id>: shows the unlock requirement for a specific spell. Prefixed with [Unlocked] if the player has already met it.
  • /isstweaks requirements rarity : shows the unlock requirement for a rarity tier. Same [Unlocked] indicator when the player's cap is at or above the queried tier.

Note on overlap with Iron's per-spell configs

Iron's Spellbooks has per-spell JSON configs at config/irons_spellbooks_spell_config/ for tweaking individual spells (max level, mana cost multiplier, cooldown). This mod doesn't touch those. The maxSpellRarity option is just one rarity gate that applies to every spell at cast time, no per-spell editing needed. It's faster to set up but less precise than per-spell tweaking. Pick whichever fits, or use both together.

For modpack makers

Drop the jar in your pack's mods folder, edit config/irons_spellbooks_tweaks-server.toml, ship the config alongside the pack. All options are server-side so clients don't need matching configs.

##Compatibility

Minecraft 1.20.1 Forge and Minecraft 1.21.1 NeoForge Iron's Spells 'n Spellbooks 3.0.0+ (1.20.1) or 1.21.1-3.15.0+ (1.21.1) Soft dependency, mod loads cleanly without Iron's Spellbooks present No conflicts expected with other Iron's addons

License

MIT

Screenshots

Gallery

This project has no gallery images yet.

Versions

Files

Relations

Project Relations

More like this

Similar Mods

Suggestions use data such as tags, dependencies, dependents, descriptions, titles, and more to rank how much they overlap with this mod.

On ModDex

Community snapshot

0
Ratings
0
Followers
0
In stacks

By the numbers

Statistics

~450,000
Total Downloads
CurseForge
~450,000
Modrinth
~1,000
Last Updated
CurseForge
Created
CurseForge
Modrinth
Last synced
When ModDex last fetched this project from CurseForge or Modrinth. Every project is re-checked on a schedule, and any project that ships a new file is synced automatically within hours of the release.
New file updates sync automatically
How syncing works