EffectLib

Quick rating

EffectLib

No reviews yet

Makes creating new effects easier

Mod Loaders
Forge
Minecraft
1.21

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
effectlib-0.1.1-1.21.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


EffectLib: Create Custom Mob Effects with Ease

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.

Features

  • Easy Initialization: Start using EffectLib with a simple initialization method.
  • Flexible Effect Creation: Define your custom effects with various categories and colors.
  • Custom Behaviors: Add behaviors to your effects such as onStart, onTick, and onEnd with lambda functions.
  • Tick Delay Customization: Control how often your onTick behavior is executed with adjustable tick delays.
  • Simple Registration: Register your effects easily to integrate them into your mod.

Getting Started

1. Initialize the Library

Initialize EffectLib with your mod’s unique ID:

MobEffectsUtil.initialize("your_mod_id");

2. Define Your Effect

Create a new effect with a name, category, and color:

ModMobEffectData data = new ModMobEffectData("my_effect", MobEffectCategory.NEUTRAL, 0);

3. Customize Effect Behaviors

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

4. Create and Register the Effect

Finalize your effect creation and register it:

MobEffectsUtil.createEffect(data);
MobEffectsUtil.register(IEventBus bus);

Conclusion

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.

Links

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