#
Modifiers
In the enchantment's configuration files, you will find multiple configuration sections that use the following settings:
- Base – The starting (initial) value.
- Per Level – The value added or applied per enchantment level.
- Capacity – The maximum possible value.
- Action – Defines how Base and Per Level are combined. Available values:
ADD,MULTIPLY.
This value modifier allows values to scale automatically and dynamically with the enchantment level.
Consider the following example:
- Base:
1.0 - Per Level:
0.5 - Capacity:
3 - Action:
ADD
#
Formula
ADD:
result = base + (per\_level \times level)MULTIPLY:
result = base \times (per\_level \times level)
#
Example Values
Note
The final value is capped at the configured Capacity.