diff options
| author | Felix Perktold <> | 2026-07-23 20:26:04 +0000 |
|---|---|---|
| committer | Felix Perktold <> | 2026-07-23 20:26:04 +0000 |
| commit | e1feb22144d2821c577cb0a281f77c54306f437c (patch) | |
| tree | c88aa93100893508ba9d60d2db55730f5a711616 /config/death_knights/spells/unholy/death_grip.json5 | |
asd
Diffstat (limited to 'config/death_knights/spells/unholy/death_grip.json5')
| -rw-r--r-- | config/death_knights/spells/unholy/death_grip.json5 | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/config/death_knights/spells/unholy/death_grip.json5 b/config/death_knights/spells/unholy/death_grip.json5 new file mode 100644 index 0000000..a2dfab1 --- /dev/null +++ b/config/death_knights/spells/unholy/death_grip.json5 @@ -0,0 +1,25 @@ +{ + // The speed at which the target is pulled towards the caster. + "pull_speed": 1.8, + // A list of entities' ids that cannot be gripped. + "entity_blacklist": [ + "minecraft:warden", + "minecraft:ender_dragon", + "minecraft:wither" + ], + // A multiplier of health to not grip the target. For example, at 3.0x, if the target has triple the health of the caster, the target will not be gripped. + "health_threshold": 3.0, + // A list of effects to apply to the target after it has been gripped. Can be left empty to disable this behavior. + "effects": [ + { + "effect_id": "minecraft:slowness", + "duration": 80.0, + "amplifier": 2.0 + } + ], + // The maximum time in ticks that the pull effect can last. + "max_pull_time": 100.0, + // The minimum distance the target must be from the caster for the spell to know the target was gripped. + // If after max_pull_time passes and the target hasn't gotten this close to the caster, the target will get teleported as a last resort. + "min_distance": 1.0 +}
\ No newline at end of file |
