StatTweaker
Requires ASJCore (check files description for version information)
An addon for MineTweaker3/CraftTweaker that enables stat configuration for mobs, tools, weapons, and armor through scripts. The perfect solution for modpack balancing.
Key Features
The modification provides an extensive set of functions for fine-tuning game balance. All scripts must begin with the prefix mods.StatTweaker. or use imports.
Mob Configuration
You can modify almost any creature parameters:
- Base stats: health, movement speed, damage, knockback resistance
- Hitbox sizes and step height
- Experience drops and healing parameters
- Adding NBT tags and customizing special effects
Material Configuration
Customization of tools and armor characteristics:
- Changing repair materials
- Adjusting durability, protection, and enchantability
- Balancing efficiency and damage
Items and Equipment
Fine-tuning of individual items:
- Armor characteristics and protective properties
- Tool and weapon parameters
- Stack sizes and item durability
Thaumcraft 4 Support
IMPORTANT: Don't forget to enable TC support in the StatTweaker configuration! Available functions for working with item warping and runic shielding.
Usage Examples
// Triple the Wither's health
setDefaultAttributes("WitherBoss", 900.0, null, null, null, null);
// Zombies become more dangerous
setAttackDamage("Zombie", 8.0);
// Stone tools can mine diamonds
toolProperties("STONE", 3, null, null, 8.0, null);
// Golden pickaxe became faster and more durable
toolProperties(<golden_pickaxe>, 16.0, null, 1000);
Note: Some functions may not work with certain mobs or items due to non-standard code implementation.