Armor Tweaker

Quick rating

Armor Tweaker

No reviews yet

Allows users to modify armor and armor material stats, as well as create new armor materials.

Mod Loaders
Forge
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

About

Project Details

Type
Mod
Latest Version
armortweaker-1.11.2-1.0.0.2.jar
Authors

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

Resources

External Links

Source Issues Wiki Discord

About

Description

I noticed that there is no mod that allows you to change armor stats (which I needed to nerf some armor). So I made this.

Then I realized that there was actually a mod that allowed to change armor properties, but I believe that mine is more flexible. Also it uses MineTweaker/CraftTweaker .zs scripts.

What you can do with this mod

  • Change armor stats (this changes will only apply to the certain item, not to the whole material and it's armor):
    • Armor material (this will also replace armor stats to match material properties)
    • Defense amount (how many 'shields' gives you this armor)
    • Durability
    • Toughness
  • Change material stats:
    • Texture name (this will change the visual appearance, so you can make your iron armor look like golden)
    • Max damage factor (this modifier affects durability of the armor)
    • Defense amount for every armor part (feet, legs, chest, head)
    • Enchantability
    • Toughness
    • Repair material (you can specify which item will be used to repair armor)
  • Add custom armor materials (so, for example, you can have iron boots with one enchantability and iron chest plate with another while still looking like iron armor)

Notes

  1. If you'll assign "minecraft:leather" texture name to any material that is not leather, items will look like leather armor that was dyed white. This is not a bug, but a result of Minecraft code. I could "fix" that, but then I need to make a coremod, which will result in possible compatibility issues.
  2. Leather armor that will have material that is different from "leather" can't be dyed. Same reason as above.
  3. If you'll assign "leather" material to any armor (and keep texture name "minecraft:leather"), this armor will look like leather armor and can be dyed.
  4. Currently you can replace repair material for all armor, but can't remove default repair material for vanilla armor. So if you want to prevent your players from fixing diamond armor with diamonds, just set repair material to the nether star or something really rare.

Compatibility

  • Other mods
  • JEI (changing repair material will update JEI anvil recipes)

Examples

Changing armor stats:

import mods.vanilla.ItemArmor;

var leatherHelmet = ItemArmor.get(<minecraft:leather_helmet>);
//Change material
leatherHelmet.material = <armorMaterial:DIAMOND>;
//Defence amount
leatherHelmet.damageReduceAmount = 5;
//Durability
leatherHelmet.maxDamage = 200;
//Armor toughness
leatherHelmet.toughness = 2;

 Changing armor material properties:

var materialLeather = <armorMaterial:LEATHER>;
//Changes visual appearance:
materialLeather.textureName = "minecraft:gold";
//Modifier that affects the durability of all armor parts
materialLeather.maxDamageFactor = 10;
//Defence amount for feet, legs, chest, head
materialLeather.damageReductionAmountArray = [2, 5, 6, 2];
//Affects the chance of good enchantments on enchantment table
materialLeather.enchantability = 25;
//Armor toughness
materialLeather.toughness = 3;
//IItemStack that will be used to repair armor
materialLeather.repairMaterial = <minecraft:feather>;

 Creating new material:

import mods.vanilla.ArmorMaterial;
 
//material name, texture name, durability modifier, damage reduction array, enchantability, toughness
var magicIron = ArmorMaterial.add("MAGIC_IRON", "minecraft:gold", 20, [3, 6, 7, 3], 25, 1);

You can list all armor with their stats using this chat command:

/minetweaker armor items

 And this one will list all armor materials with their properties:

/minetweaker armor materials

How to install

This mod requires CraftTweaker and MTLib.

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

~1,000
Downloads
Last Updated
Created
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