From e1feb22144d2821c577cb0a281f77c54306f437c Mon Sep 17 00:00:00 2001 From: Felix Perktold <> Date: Thu, 23 Jul 2026 20:26:04 +0000 Subject: asd --- .../death_knights/spells/unholy/death_grip.json5 | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 config/death_knights/spells/unholy/death_grip.json5 (limited to 'config/death_knights/spells/unholy/death_grip.json5') 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 -- cgit v1.2.3