@UltimaLuminaire It's a mistake in "Spirit_Tornado_SE_AttacksCauseStagger" status effect.
Spirit Frenzy has a similar status effect named "Spirit_Frenzy_SE_AttacksCauseStagger" and the difference between them in AttackFilter section:
"AttackFilter": {
"KeywordsIDs": [],
"KeywordLogic": "Or",
"Race": "None",
"IsKith": "false",
"HealthPercentage": 0,
"HealthOperator": "EqualTo",
"Range": "None",
"ClassTypeID": "00000000-0000-0000-0000-000000000000",
"Source": "None", this means status effect can be applied from all sources - weapon and spells
"DefendedBy": "None",
"Empowered": "false",
"Disengagement": "false",
"Stealthed": "false",
"UseStealthLinger": "false",
"PowerLevel": 0,
"PowerLevelOperator": "EqualTo",
"ChanceToApply": 1,
"AttackHostility": "Default",
"TargetType": "None"
},
In Spirit Tornado SE we can see this:
"AttackFilter": {
"KeywordsIDs": [],
"KeywordLogic": "Or",
"Race": "None",
"IsKith": "false",
"HealthPercentage": 0,
"HealthOperator": "EqualTo",
"Range": "None",
"ClassTypeID": "00000000-0000-0000-0000-000000000000",
"Source": "Weapon", this means status effect can be applied only with weapon attacks
"DefendedBy": "None",
"Empowered": "false",
"Disengagement": "false",
"Stealthed": "false",
"UseStealthLinger": "false",
"PowerLevel": 0,
"PowerLevelOperator": "EqualTo",
"ChanceToApply": 1,
"AttackHostility": "Default",
"TargetType": "None"
},
So it's a clear oversight and should be corrected. I've added this into my "To do" list.