EffectLib is a powerful library designed for mod developers who want to create and customize mob effects with ease. Using the MobEffectsUtil API, you can define custom effects, set unique behaviors, and integrate them seamlessly into your mod.
onStart, onTick, and onEnd with lambda functions.onTick behavior is executed with adjustable tick delays.Initialize EffectLib with your mod’s unique ID:
MobEffectsUtil.initialize("your_mod_id");
Create a new effect with a name, category, and color:
ModMobEffectData data = new ModMobEffectData("my_effect", MobEffectCategory.NEUTRAL, 0);
Add optional behaviors for when the effect starts, ticks, or ends:
data.addOnStart((entity, amplifier) -> {
// Code to run when effect starts
});
data.addOnTick((entity, amplifier) -> {
// Code to run every tick
});
data.addOnEnd((entity, amplifier) -> {
// Code to run when effect ends
});
data.setTickDelay(20); // Set delay between ticks
Finalize your effect creation and register it:
MobEffectsUtil.createEffect(data);
MobEffectsUtil.register(IEventBus bus);
EffectLib is designed to give mod developers an easy yet powerful way to create custom mob effects. With its flexible API and straightforward setup, you can create unique gameplay experiences in no time.