EffectLib
No reviews yet
Makes creating new effects easier
Forge is a popular mod loader for versions 1.1+ of Minecraft.
Community voices
Reviews
Click once to include, again to exclude, again to clear
No reviews yet. Be the first to review this project!
Get it on
Available Platforms
About
Project Details
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.
Use HTML for any page that supports it, or Markdown for README files and Markdown-based descriptions.
Identifiers
Platform IDs
Resources
External Links
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, andonEndwith lambda functions. - Tick Delay Customization: Control how often your
onTickbehavior 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
- GitHub Repository: View the source code and contribute.
Screenshots
Gallery
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
By the numbers
Statistics
Want to reach Minecraft players?
We're looking for a server hosting partner to feature here and other parts of the site. Interested? Send us a message!
Get in touchGet it on
Available Platforms
On ModDex
Community snapshot
By the numbers
Statistics
Resources