CurseForge · Minecraft mod
Just Another Wizardry Mana System
Replaces Electroblob’s Wizardry wand mana with a deeply configurable player mana system
Quick answer
Which Just Another Wizardry Mana System release should I use?
Just Another Wizardry Mana System jawms-1.1.0.jar targets 1.12.2 with Forge. The project page does not say whether this file belongs on the client, dedicated server, or both. All 2 required mods have matching files.
Where it goes
Is Just Another Wizardry Mana System required on the client, server, or both?
The project page does not say whether this file belongs on the client, dedicated server, or both.
The source does not explicitly classify this release as client-only or server-only.
What else does Just Another Wizardry Mana System jawms-1.1.0.jar need?
jawms-1.1.0.jar. Change the file and its required mods may change too.
Install Electroblob's Wizardry, MixinBooter first. We found matching files for this game-version and loader setup. 2 come through another mod in the chain.
2 extra mods were pulled in by other dependencies. Indented rows show who needs each one. We only count dependency files that match this setup. A file for another loader does not fill the gap.
Before you install it
Add Just Another Wizardry Mana System without breaking your instance.
Built for Just Another Wizardry Mana System jawms-1.1.0.jar. Pick another file and the loader, install side or required mods may change.
- 01
Stick to this file
Use jawms-1.1.0.jar. It targets 1.12.2 with Forge; another release may have different loader, side or dependency requirements.
- 02
Bring the mods it needs
Install Electroblob's Wizardry, MixinBooter first. We found matching files for this game-version and loader setup. 2 come through another mod in the chain.
- 03
Put it on the correct side
The project page does not say whether this file belongs on the client, dedicated server, or both.
- 04
Pick the file you checked
Use the “Get this file” button beside jawms-1.1.0.jar. It opens that exact file at the source.
About this project
What does Just Another Wizardry Mana System add?
JAWMS gives every player one persistent mana pool for Electroblob's Wizardry. Casting draws mana from the player instead of from each wand, mana regenerates over time, Wizardry equipment improves the player's mana capabilities, and a configurable bar shows the current amount.
There are already good mods that add player mana to Wizardry, including Wizardry Player Mana and Wizardry Player Mana Tweaked. Those solutions work well for their intended scope. JAWMS focuses on a more extensive system for players, modpack creators, and addon developers who want detailed control over the complete mana economy.
AI usage disclaimer: This mod was developed with AI-agent assistance using this agent workflow. The project owner reviewed the work during development.
For Players
What Changes While Playing
- Mana belongs to the player, so changing wands does not give a separate mana pool.
- Spells consume player mana. If there is not enough mana, the spell cannot be cast.
- Mana regenerates naturally, but regeneration normally pauses briefly after casting and while channeling a continuous spell.
- Wizardry armor and robes increase maximum mana and mana regeneration.
- Mana flasks restore player mana, with any configured remainder going to eligible Wizard armor.
- Wizardry upgrades, artefacts, Demonic Seal, and Font of Mana have been adapted to interact with player mana.
- Stored wand mana is preserved for compatibility, but it is ignored for casting and its obsolete displays are hidden.
Wizardry's spell selection, tiers, cooldowns, progression, charge-up behavior, and spell effects remain in place. JAWMS replaces the mana resource rather than replacing Wizardry's complete casting system.
Mana Bar and Companion Addons
The built-in display is a simple blue mana bar. It can hide while full, show different numeric values, use different anchors and offsets, change size, and fill in any of four directions. It can also be disabled completely.
Players can customize or extend JAWMS with companion addons:
- JAWMS Hud Styles replaces the basic bar with compact configurable HUD styles beside the hotbar.
- JAWMS Classic Bar Integration displays JAWMS mana as part of Classic Bar Legacy's HUD stack.
- JAWMS Additions expands the mana system with new potions, enchantments, and Baubles.
- JAWMS Integrations adds optional compatibility between JAWMS and other mods.
Requirements
Required:
- Electroblob's Wizardry
4.3.19 - MixinBooter
11.8or newer
Optional:
- Baubles
1.5.2+for equipped Baubles-slot effects
For Modpack Creators
JAWMS is designed so that its default balance can be replaced without writing another mod. A pack can configure:
- Base maximum mana, mana regeneration, and the delay before regeneration resumes.
- The mana added by each Wizardry armor slot.
- A general spell-cost formula based on the original Wizardry cost and spell tier.
- Exact mana-cost overrides for individual spells.
- The strength of diminishing-return Spell Efficiency.
- Mana flask restoration and Wizard armor overflow behavior.
- Mana properties granted by any registered item while worn, equipped as a Bauble, or held in either hand.
- The player-mana behavior of Wizardry upgrades, artefacts, Demonic Seal, and Font of Mana.
- The local appearance and visibility of the built-in mana bar.
- Which registered addon modifier providers a server permits.
Configuration Files and Reloading
JAWMS generates three files:
config/jawms/jawms.cfgcontrols the shared mana economy, spell costs, flasks, Wizardry armor defaults, Spell Efficiency, configured item modifiers, and addon-provider controls.config/jawms/integrations/ebwizardry.cfgcontrols Wizardry upgrades, artefacts, Demonic Seal, and Font of Mana.config/jawms/jawms-client.cfgcontrols the local HUD.
Valid server-side changes can be applied with /jawms reload. If an integration file contains an invalid value, JAWMS keeps the previous valid integration rules instead of partially applying a broken revision. The detailed reference below explains the defaults, formulas, and configured-item rule format.
For Mod Developers
JAWMS includes a documented API for addons. Developers can find setup instructions and the full technical reference in the Addon Development Guide.
Detailed System Reference
Mana Stats and Modifier Arithmetic
JAWMS uses these distinct concepts:
- Mana: The player's current casting resource.
- Maximum Mana: The size of the player's mana pool.
- Mana Regen: Mana restored per second when regeneration is allowed.
- Mana Regen Delay: How long regeneration is blocked after casting.
- Spell Efficiency: Diminishing-return points that reduce spell costs.
- Spell Cost Multiplier: An independent global or element-specific factor that can raise or lower spell costs.
Maximum mana, mana regeneration, and regeneration delay all use the same ordering:
max(0, configured base + sum(flat bonuses))
* (1 + sum(percentage increases) / 100)
* product(1 - each percentage reduction / 100)
Percentage increases add together. Each percentage reduction is a separate remaining-value multiplier. After those factors, maximum mana is rounded down and bounded to at least 1. Mana regeneration remains non-negative and can accumulate fractional mana internally. Regeneration delay remains non-negative and is rounded upward only when converted to game ticks.
Permissions such as regenerating during the post-cast delay or during continuous casting are separate from the numerical regeneration rate.
Default Mana and Wizardry Armor
The default values in config/jawms/jawms.cfg are:
mana {
S:baseMaximum=60
S:baseRegeneration=2.4
S:regenerationLockoutSeconds=2.0
}
wizardry_armor_defaults {
B:enabled=true
S:helmetMaximum=10
S:helmetFlatRegeneration=0.4
S:chestMaximum=10
S:chestFlatRegeneration=0.4
S:legsMaximum=10
S:legsFlatRegeneration=0.4
S:bootsMaximum=10
S:bootsFlatRegeneration=0.4
}
An unequipped player therefore has 60 maximum mana and 2.4 mana regen. Every equipped Wizardry armor or robe piece adds 10 maximum mana and 0.4 mana regen, producing 100 maximum mana and 4 mana regen with a full set.
Adding Mana Properties to Existing Items
The item_modifiers.rules list can assign mana properties to any registered item without writing an addon. A rule uses this format:
namespace:item[@metadata-or-*]=field:value;field:value
The item contributes only while equipped as armor or a Bauble, or held in the main hand or offhand. Items elsewhere in the inventory do nothing. Separate active slots contribute separately. @* matches every metadata value; use a number such as @3 to target one variant. NBT matching is not supported.
For example:
item_modifiers {
S:rules <
minecraft:diamond_chestplate@*=flat_maximum:20;flat_regeneration:0.5
minecraft:blaze_rod@*=maximum_increase:25;regeneration_increase:50;global_efficiency:20;cost_multiplier_fire:0.75
>
}
The chestplate gives +20 Mana and +0.5 Mana regen while worn. The held blaze rod gives +25% Mana, +50% Mana regen, +20 Spell efficiency, and -25% Fire spell mana cost.
JAWMS automatically adds synchronized values to the matched item's tooltip. Helpful changes appear in blue; penalties such as lower mana, lower regeneration, a longer regeneration delay, or higher spell cost appear in red. Editing the rule and running /jawms reload updates both server behavior and connected-client tooltips.
Available fields include:
flat_maximum,maximum_increase, andmaximum_reductionflat_regeneration,regeneration_increase, andregeneration_reductionflat_lockout,lockout_increase, andlockout_reductionglobal_efficiencyand element-specific values such asefficiency_fireglobal_cost_multiplierand element-specific values such ascost_multiplier_fireregenerate_during_lockoutandregenerate_during_continuous
A configured item rule is authoritative for that item: it replaces the complete built-in Wizardry armor or addon-provided item contribution instead of silently stacking with it.
Spell Costs
The general spell-cost formula uses each spell's original Wizardry mana cost and tier. Individual spell overrides take precedence when the original balance does not fit the player-mana economy.
The default configuration is:
spells {
S:formula=min(original_cost, tier * 25)
S:overrides <
>
}
original_cost is the cost registered by Wizardry before JAWMS changes it. tier is 1 for novice, 2 for apprentice, 3 for advanced, and 4 for master. The default formula keeps inexpensive spells at their original cost while capping the configured base cost by tier at 25, 50, 75, or 100 mana.
The expression language supports numbers, both variables, parentheses, and these operations:
- Addition and multiplication:
original_cost + tier * 5 - Subtraction and division:
(original_cost - 2) / tier - Remainder and exponentiation:
(tier ^ 2) % 5 - Minimum and maximum:
min(original_cost, tier * 25)andmax(1, original_cost) - Absolute value:
abs(original_cost - 50) - Rounding down or up:
floor(original_cost / 3)andceil(original_cost / 3) - Nearest whole number:
round(original_cost / 3)
Overrides use a full spell registry ID and a non-negative whole-number cost:
spells {
S:formula=min(original_cost, tier * 25)
S:overrides <
ebwizardry:black_hole=120
ebwizardry:magic_missile=4
>
}
An override always wins over the formula. Invalid formulas or results fall back safely to the affected spell's original cost, while an unknown override is ignored with a warning.
Spell Efficiency is not a percentage. With configured scale K, its cost factor is:
K / (K + applicable efficiency)
With the default scale of 100, 100 efficiency makes spells cost half as much, 200 makes them cost one third, and 300 makes them cost one quarter. Global and matching-element cost multipliers then multiply independently with the efficiency factor and Wizardry's retained contextual cost factor before the final cost is rounded upward.
Continuous spells consume their configured per-second cost in half-second portions. If the next portion cannot be paid, casting stops without making mana negative.
Electroblob's Wizardry Integration
Wizardry armor and robes give flat maximum mana and mana regeneration by default, so a prepared wizard benefits more from later percentage bonuses. Their original spell-cost reductions are replaced by school-matching Spell Efficiency.
JAWMS gives configurable player-mana behavior to Wizardry mechanics that previously depended on wand mana:
- Storage: increases maximum mana while an upgraded wand is held.
- Condenser: increases mana regeneration while an upgraded wand is held.
- Siphon: restores mana after qualifying kills.
- Melee: spends player mana to enhance successful wand melee attacks.
- Ring of Condensing: adds mana regeneration, with multiple active rings stacking.
- Ring of Siphoning: improves Siphon's mana restoration.
- Ring of Extraction: restores mana after attributable Wizardry sorcery kills.
- Perfectionist: refunds the player mana paid for a Force Arrow that misses.
- Demonic Seal: can cover a mana shortfall with hunger while retaining a configurable minimum hunger level.
- Font of Mana: grants mana regeneration and can permit regeneration during the post-cast delay.
Each replacement can be enabled, disabled, and tuned independently. Disabling one never brings obsolete wand-mana behavior back. Unrelated Wizardry behavior, such as Font cooldown reduction and Wizard armor's separate defensive mana, remains intact.
Mana flasks restore player mana first, then send any remaining configurable restoration to eligible Wizard armor. They never refill wand mana, and their tooltips show the configured amount and behavior.
Built-in HUD Reference
The built-in HUD can:
- Be enabled or disabled.
- Hide while mana is full.
- Show no number, current mana, maximum mana, or both values.
- Change text scale, bar length, and thickness.
- Use any of nine screen anchors with positive or negative offsets.
- Fill left-to-right, right-to-left, bottom-to-top, or top-to-bottom.
Changes apply without restarting Minecraft. The bar renders below chat so messages remain readable. Addons can claim only the built-in rendering callback and draw a completely different HUD while continuing to receive synchronized mana data.
Source code: github.com/mahghuuuls/jawms
Project description from CurseForge.
Pick your setup
Just Another Wizardry Mana System by Minecraft version and loader
Choose the version and loader you play, then open the matching release.
1.12.2
1 loader buildCheck the dependencies, then try the file in a copied instance before changing a world you care about.
Recent files
Just Another Wizardry Mana System versions and loaders
jawms-1.1.0.jar
21 Aug 2026
jawms-1.0.0.jar
21 Aug 2026
jawms-0.4.0.jar
15 Aug 2026
jawms-0.3.0.jar
12 Aug 2026
jawms-0.2.0.jar
11 Aug 2026
jawms-0.1.0.jar
7 Aug 2026
Looking for an older file? The official CurseForge project page is in Resources.