Potion Effect List - TheComputerGeek2/MagicSpells GitHub Wiki
Value | Type | Default |
---|---|---|
type |
Potion effect | |
duration |
Integer (ticks) | 0 |
strength |
Integer | 0 |
ambient |
Boolean | false |
hidden |
Boolean | true |
icon |
Boolean | true |
This form does not support 4.0 Beta 13's dynamic values (expressions).
potion-effects:
#- <effect> <duration> <strength> <hidden> <ambient> <icon>
- speed 100 4 false false true
List of config sections, compact or not. Since 4.0 Beta 13 these options support dynamic values through numeric or string expressions.
potion-effects:
# Flow style section
- {type: speed, duration: 100, strength: 4, ambient: false, hidden: false, icon: true}
# Block style section
- type: speed
duration: 100
strength: 4
ambient: false
hidden: false
icon: true