The `spell_linked_spell` table
This table provides data for spell linking system, telling it which spells trigger what, and under which conditions.
Table Structure
Field | Type | Attributes | Key | Null | Default | Extra | Comment |
---|---|---|---|---|---|---|---|
spell_trigger | MEDIUMINT | SIGNED | NO | ||||
spell_effect | MEDIUMINT | SIGNED | NO | ||||
type | SMALLINT | UNSIGNED | NO | ||||
comment | text | NO |
Description of the fields
The spell, which when cast, will trigger the spell listed in spell_effect
The spell that you want to be triggered. How this spell acts is determined by the type field.
Three values are possible (0,1,2). See below.
Optional comment to explain the link.
Trigger mode
*spell_trigger > 0: "When spell_trigger is cast..." *spell_trigger < 0: "When the aura due to spell_trigger is removed..."
Effect
*spell_effect > 0: spell_effect is also cast (with triggered flag) on the same targets, on the caster if spell_trigger has no target. *spell_effect < 0: Auras due to spell_effect are removed.
Trigger mode
For this mode spell_trigger must be positive. Effect is executed when spell_trigger hits a target. I suppose that if the spell_trigger hits more than one target, the effect is executed for each target hit.
Effect
*spell_effect > 0: spell_effect is cast (with triggered flag) on the same target. *spell_effect < 0: Auras due to spell_effect are removed.
Trigger mode
For this mode spell_trigger must be positive. Effect is executed when the aura spell_trigger is applied AND when it is removed from a target.
Effect
*spell_effect > 0 (ADD/REMOVE AURA)
*spell_effect < 0 (IMMUNITY)