angle-rightEnchant Examples

Basic Damage Boost

A straightforward damage enchant that scales with level.

File: damage-boost.yml

enchant-id: damage-boost
display-name: "&c&lDamage Boost"
menu-material: IRON_SWORD

progression:
  starting-level: 1
  max-level: 50

activation:
  trigger: "HIT_MOB"
  base-chance: 100.0
  chance-per-level: 0.0
  cooldown-seconds: 0

upgrade:
  currency: "money"
  base-cost: 1000
  scaling: "linear"
  scaling-multiplier: 1.2

actions:
  1:
    type: "damage-area"
    position: "{target_pos}"
    radius: 1.0
    damage: "{level} * 5"

How it works:

  • Every hit deals bonus damage

  • Level 1: +5 damage

  • Level 10: +50 damage

  • Level 50: +250 damage


Fire Strike

Set mobs on fire with a chance.

File: fire-strike.yml

How it works:

  • 20% base chance, increasing by 0.8% per level

  • Sets mob on fire for 5 seconds

  • Shows fire particles

  • Plays fire sound


Reward Enchants

Soul Harvest

Gain souls when killing mobs.

File: soul-harvest.yml

How it works:

  • Triggers on every kill

  • Random 1-10 souls + level bonus

  • Shows reward hologram

  • Soul particles and levelup sound


Money Greed

Earn money based on damage dealt.

File: money-greed.yml

How it works:

  • 15% chance on hit (increases with level)

  • Earn money based on damage dealt

  • Scales with enchant level (10% per level)

  • Shows formatted reward hologram


Area Effect Enchants

Earthquake

Damage all nearby mobs.

File: earthquake.yml

How it works:

  • 12% chance, increasing with level

  • Radius: 5-14 blocks (scales with level)

  • Damage: 115-550 (scales with level)

  • Ground explosion effects


Frost Nova

Freeze and damage mobs around you.

File: frost-nova.yml

How it works:

  • 8% base chance

  • Damages all mobs within 8 blocks

  • Makes mobs glow blue

  • Shows snowflake particles in waves

  • Ice shattering sound


Chain/Spread Enchants

Chain Lightning

Lightning spreads between mobs.

File: chain-lightning.yml

How it works:

  • 10% chance, scales with level

  • Strikes target with lightning

  • Chains to nearby mobs (70% damage each jump)

  • Max chains: 2-7 based on level

  • Mobs glow blue briefly


Passive Enchants

Speed Boost

Permanent speed while holding sword.

File: speed-boost.yml

How it works:

  • Always active (passive)

  • Level 1: Speed I

  • Level 3: Speed III

  • Level 5: Speed V

  • No particles for clean look


Last updated