📖Enchantments

Enchantment Modifier System

The plugin includes a standalone module that allows enchantments to provide additional fishing-related bonuses. These modifiers are triggered automatically when a fishing rod contains the corresponding enchantment.

How It Works

  • Each enchantment can be assigned a modifier profile.

  • When the fishing rod has this enchantment, the modifier is activated on cast.

  • Modifiers from different enchantments stack together, allowing flexible combinations.

  • No items or durability are involved — effects persist as long as the enchantment stays on the rod.

Creating Enchantment

  1. Go to the /lfish menu and click the Enchantment.

  2. Put the enchantment book in the Add button to create a new enchantment config. All enchantment files are stored in server/plugins/LiteFish/enchantments.

  1. You can set modifications for this enchantment, or link it to the modification config using the LINK button.

Enchantment Configuration Example

{
  "name": "luck_of_the_sea",
  "level": 3,
  "modificator": {
    "drop_inc": 3,
    "drop_health": 0,
    "speed_inc": 0,
    "size_inc": 0,
    "player_health": 0,
    "luck_inc": 30.0,
    "auto_fishing": false,
    "bobber_amount": 0,
    "path": "plugins/LiteFish/modificators/"
  }
}

id - name of file

name - name of enchantment

level - level of enchantment

modificator - modifier configuration. Modificators

Last updated