Spell with effects that affect both the target and the conjurer.

I’m fixing some core spells and I’m really good at it.

It turns out that the spell 196608 Eye of the Tiger, of the monk class, must cause damage and at the same time healing in the monk.

What the spell has two effects that deal with this:

Effect 0: Id 6 (SPELL_EFFECT_APPLY_AURA)
Difficulty: Id 0 (DIFFICULTY_NONE)
BasePoints = 0 + AP * 0.43
Targets (1, 0) (TARGET_UNIT_CASTER, NO_TARGET)
Aura Id 8 (SPELL_AURA_PERIODIC_HEAL), value = 0, misc = 0 (0), miscB = 0, amplitude = 0, periodic = 2000

Effect 1: Id 6 (SPELL_EFFECT_APPLY_AURA)
Difficulty: Id 0 (DIFFICULTY_NONE)
BasePoints = 0 + AP * 0.43
Targets (6, 0) (TARGET_UNIT_TARGET_ENEMY, NO_TARGET)
Aura Id 3 (SPELL_AURA_PERIODIC_DAMAGE), value = 0, misc = 0 (0), miscB = 0, amplitude = 0, periodic = 2000

I had never encountered a spell in this way and what happens is that you can only cast the spell on an enemy and never apply the healing effect on the owner. If the aura is applied directly to the caster, apply the damage aura of Effect 1 not the heal of Effect 0.

Does the core support launching specifically the effect of a spell on a creature? There’s another way to solve this?