Create new effect (tag BUFF)

libreforge effects

If you want to a tag has libreforge effects, you need do those things:

  • Set libreforge-hook option in config.yml to true.

  • Set effects.libreforge option in tag configs to true.

  • Add effects at config.yml's libreforge-effects option. Please note that effect ID must same as tag ID.

An example:

libreforge-effects:
  - id: default # Effect ID
    effects:
      - id: bonus_health
        args:
          health: 40
      - id: damage_multiplier
        args:
          multiplier: 4.0
        triggers:
          - melee_attack
    conditions: []

MythicLib bonus

If you want to a tag has MythicLib stat bonus, you need do those things:

  • Set effects.MythicLib option in tag configs to true.

  • Add below contents at your tag config if it is not exist.

MythicLib-effects:
  1: 
    stat: MAX_HEALTH # Stat ID
    value: 1 # Add value
  2:
    stat: another stat but I do not know them :)
    value: 3

Last updated