promotional bannermobile promotional banner

Set Effects

This mod allows you to customize your own Armor Set by scripts.

Set Effects Mod

Overview

Set Effects designed to provide developers with the tools to create fully customizable armor sets in Minecraft. By leveraging KubeJS scripting, this mod introduces a flexible and dynamic system for defining set..

Key Features

  • Implements an item-ID-based set bonus system
  • Fully supports three equipment slots:
    ▪️ HandSlots (Main/Off-hand items)
    ▪️ ArmorSlots (Helmet to Boots)
    ▪️ CuriosSlots (Curios items!)
  • For each Set,you can add the potioneffects,attributes,tooltips,and inject functions into some conditions like jump and attack.

For Developer

  • Create custom sets effortlessly by scripts.
  • Design unique set effects
  • Customize tooltip displays

Use Example

//You need import the SetEffects from Contentpacks.
const SetEffects = ContentPacks.getShared('server','com.whisent.seteffects')
//SetRangeManager can modify the effective range of the set
const SetRangeManager = SetEffects.setRangeManager
//SetEvents is the core of this mod,you can use SetEvents to create sets and modify them.
const SetEvents = SetEffects.setEvents

SetEvents.registry(event=>{
    event.create(["minecraft:leather_helmet","minecraft:leather_chestplate",
        "minecraft:leather_leggings","minecraft:leather_boots"],"leather")
        .setName('Leather Set')
        .addAttribute("minecraft:generic.max_health",uuid,10,'addition')
        .addPotionEffect('speed',0,false,false)
        .addAttribute("minecraft:generic.attack_speed",UUID.fromString('38663ac4-26e0-ea8c-f65f-edb9e930c57c'),0.3,'addition')
        .setCounts(4)
        .injectFallFunc((event,set)=>{
            event.setDistance(event.getDistance()-3)
        })

})
/**
 * For the sets had been registered,you can use modification event to edit.
 * getSet method will return a set instance
 * getSets method will return a Array<EffectiveSet>
 * getMaps method will return the SetsMap,which has all infomations of the Sets.
 */
SetEvents.modification(event=>{

})

The Set Effects Team

profile avatar
Owner
  • 6
    Projects
  • 654.9K
    Downloads

More from WhiseNTView all

  • KubeLoader project image

    KubeLoader

    • 127.0K
    • Mods

    A mod that allows you to load the KubeJS Scripts from mod or "ContentPack"

    • 127.0K
    • May 23, 2026
    • Mods
  • Powerful Dummy project image

    Powerful Dummy

    • 510.2K
    • Mods

    This mod provide a highly customizable test dummy.

    • 510.2K
    • April 27, 2026
    • Mods
  • Boss Dps Tracker project image

    Boss Dps Tracker

    • 4.1K
    • Mods

    A lightweight mod that tracks player damage to bosses.

    • 4.1K
    • February 18, 2026
    • Mods
  • QuestExtra project image

    QuestExtra

    • 4.4K
    • Mods

    QuestExtra is a mod that provides extended functionality for the FTB Quests mod.

    • 4.4K
    • February 11, 2026
    • Mods
    • +2
  • KubeLoader project image

    KubeLoader

    • 127.0K
    • Mods

    A mod that allows you to load the KubeJS Scripts from mod or "ContentPack"

    • 127.0K
    • May 23, 2026
    • Mods
  • Powerful Dummy project image

    Powerful Dummy

    • 510.2K
    • Mods

    This mod provide a highly customizable test dummy.

    • 510.2K
    • April 27, 2026
    • Mods
  • Boss Dps Tracker project image

    Boss Dps Tracker

    • 4.1K
    • Mods

    A lightweight mod that tracks player damage to bosses.

    • 4.1K
    • February 18, 2026
    • Mods
  • QuestExtra project image

    QuestExtra

    • 4.4K
    • Mods

    QuestExtra is a mod that provides extended functionality for the FTB Quests mod.

    • 4.4K
    • February 11, 2026
    • Mods
    • +2