PRC8/nwn/nwnprc/trunk/spells/sp_sonicorb.nss
Jaysyn904 d87fe14826 Further file organization
Further file organization
2023-08-23 22:11:00 -04:00

16 lines
440 B
Plaintext

#include "prc_inc_spells"
#include "spinc_orb"
void main()
{
// If code within the PreSpellCastHook (i.e. UMD) reports FALSE, do not run this spell
if (!X2PreSpellCastCode()) return;
effect eVis = EffectVisualEffect(VFX_IMP_SONIC);
effect eVisFail = EffectVisualEffect(VFX_IMP_BLIND_DEAF_M);
effect eFailSave = EffectDeaf();
DoOrb(eVis, EffectLinkEffects(eVisFail, eFailSave),
SAVING_THROW_TYPE_SONIC, DAMAGE_TYPE_SONIC);
}