Back to mods
Simple Mob Buff System project artwork

CurseForge · Minecraft mod

Simple Mob Buff System

Makes mobs rarely spawn with buffs and drop rewards based on how strong they are

Choose a version Pick your version below, then grab the matching file.

Quick answer

Which Simple Mob Buff System release should I use?

Updated yesterday
Latest stable file 1.1.2 for Fabric 26.1.2
Game version 26.1, 26.1.1, 26.1.2
Loader Fabric

Simple Mob Buff System 1.1.2 for Fabric 26.1.2 targets 26.1, 26.1.1, 26.1.2 with Fabric. The project page does not say whether this file belongs on the client, dedicated server, or both. 1 required mod needs a matching file.

Where it goes

Is Simple Mob Buff 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.

Client Source doesn’t say
Dedicated server Source doesn’t say
Loader for this release Fabric
Required install it here Optional supported, not mandatory Not supported do not install here Source doesn’t say do not assume

The source does not explicitly classify this release as client-only or server-only.

What else does Simple Mob Buff System 1.1.2 for Fabric 26.1.2 need?

1.1.2 for Fabric 26.1.2. Change the file and its required mods may change too.

1 required mod needs a matching file

Install Fabric API, Fzzy Config, Kotlin for Forge, Fabric Language Kotlin first, but 1 required mod has no matching file for this setup. Do not mix loader builds to force a match. 2 come through another mod in the chain.

2 listed on this file 2 pulled in by those mods
Fabric API Needed by Simple Mob Buff System 1.1.2 for Fabric 26.1.2
required
Matching file found Matched file: [26.1.2] Fabric API 0.155.3+26.1.2
Fzzy Config Needed by Simple Mob Buff System 1.1.2 for Fabric 26.1.2
required
Matching file found Matched file: fzzy_config-0.7.7+26.1
Fabric Language Kotlin Needed by Fzzy Config
pulled in
Matching file found Matched file: 1.14.1+kotlin.2.4.20

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 Simple Mob Buff System without breaking your instance.

Built for Simple Mob Buff System 1.1.2 for Fabric 26.1.2. Pick another file and the loader, install side or required mods may change.

  1. 01

    Stick to this file

    Use 1.1.2 for Fabric 26.1.2. It targets 26.1, 26.1.1, 26.1.2 with Fabric; another release may have different loader, side or dependency requirements.

  2. 02

    Bring the mods it needs

    Install Fabric API, Fzzy Config, Kotlin for Forge, Fabric Language Kotlin first, but 1 required mod has no matching file for this setup. Do not mix loader builds to force a match. 2 come through another mod in the chain.

  3. 03

    Put it on the correct side

    The project page does not say whether this file belongs on the client, dedicated server, or both.

  4. 04

    Pick the file you checked

    Use the “Get this file” button beside 1.1.2 for Fabric 26.1.2. It opens that exact file at the source.

About this project

What does Simple Mob Buff System add?

Simple Mob Buff System

This mod gives a chance for mobs to spawn with buffs and makes them drop additional rewards based on how strong they are.

While similar in concept to mods like Champions and Eldritch Mobs, it differs significantly in execution. Just as the mod name implies, it tries to be as simple and vanilla-friendly as possible while maintaining game balance, configurability and mod compatibility. This is achieved by building the system entirely using mechanics which already exist in the game.

The mod comes with a balanced configuration out of the box. All spawns are based on the game difficulty and the current local difficulty, all the buffs the mobs receive are status effects you know from vanilla, and there's no need to worry about getting mauled by ridiculously overpowered mobs or getting showered with overly generous loot - you can install and play without ever touching or even looking at the configuration.

Buffed mobs will emit particle effects based on the buffs they have. This is the only way you can tell if a mob is buffed or not without other mods. I recommend Jade for getting information on mob health and the buffs it has and Particle Effects for unique particle textures for each effect.

The mod configuration is extensive and allows you to do pretty much whatever you want. Apply any effect to any mob, modded or vanilla. Want invisible creepers? Horses that move at the speed of light? Polar bears the size of a mountain? Not that I recommend any of those, but you sure can do it with this mod!

With that being said, if you want to know how to configure the mod and how it works, read on.

Editing the configuration

The mod uses Fzzy Config to provide a relatively simple to use and cohesive in-game configuration. You'll also need Mod Menu to actually access the configuration screen. Every option has a description and there are pointers and instructions on how to do stuff. There are also suggestions and auto-completion for fields where status effects, mobs or items are inputted.

How it works

Each mob has a set of buffs assigned to it, and any or all of those buffs can be applied to the mob once it spawns. Each buff in the set also has a max level assigned to it, and the mob can get any level of the buff from 1 to max. By default, mobs spawned via spawners are prevented from being buffed due to balance concerns (you can remove this restriction in the config).

When a mob is killed, it drops additional rewards based on its "buff level". The buff level is determined based on how strong the mob is - the amount of buffs it has and their levels, and the amount of enchanted equipment it's wearing. Zombie-type mobs will have a higher buff level if they're leaders.

The additional rewards are the following:

  • Additional XP orbs based on how high the buff level is, each orb granting 3 XP points by default.
  • If the buff level surpasses a percentage of the maximum possible buff level for the mob (default 66%), an enchanted book with a random quality depending on how much the buff level surpassed the threshold.

Most mobs will receive buffs from either the default melee buff set or the default ranged buff set depending on the type of weapon they spawn with, whereas certain mobs will receive buffs from buff sets unique to them. The two default sets can be modified in the mod configuration.

Custom rules can be defined to assign any buff to any mob, using any items as a condition. Any status effect, mob and item can be used in these rules, including ones added by other mods.

Buff application works the following way:

  • When a mob spawns, the system first determines if it's going to try to apply any buffs to it in the first place. The chance for this ranges from a minimum chance (default 10%) at local difficulty 2 and below to a maximum chance (default 25%) at the highest possible local difficulty (6.75).
  • If this check passes, the system tries to apply each buff applicable to the mob one by one. The chance for each buff to be applied ranges from a minimum chance (default 20%) at local difficulty 2 and below to a maximum chance (default 75%) at the highest possible local difficulty (6.75).
  • The level of each buff is determined by the following formula: specialDifficultyMultiplier * randomNumber * maxLevel ^ 2, limited from 1 to maxLevel, where
    • specialDifficultyMultiplier is a number from 0 to 1 based on the current local difficulty (0 at local difficulty 2 and below, 1 at local difficulty 4 and above)
    • randomNumber is a randomly generated number from 0 to 1
    • maxLevel is the maximum level of the buff

Project description from CurseForge.

Pick your setup

Simple Mob Buff System by Minecraft version and loader

Choose the version and loader you play, then open the matching release.

18 available setups

Check the dependencies, then try the file in a copied instance before changing a world you care about.

Recent files

Simple Mob Buff System versions and loaders

34 of 34 releases match

Looking for an older file? The official CurseForge project page is in Resources.