mirror of
http://prc.nwn.ee:3000/Jaysyn/PRC8.git
synced 2026-01-11 17:06:27 -05:00
Updated Release Archive
Updated Release Archive. Fixed Mage-killer prereqs. Removed old LETO & ConvoCC related files. Added organized spell scroll store. Fixed Gloura spellbook. Various TLK fixes. Reorganized Repo. Removed invalid user folders. Added DocGen back in.
This commit is contained in:
16
nwn/trunk/spells/sp_coldorb.nss
Normal file
16
nwn/trunk/spells/sp_coldorb.nss
Normal file
@@ -0,0 +1,16 @@
|
||||
#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_FROST_S);
|
||||
effect eVisFail = EffectVisualEffect(VFX_IMP_BLIND_DEAF_M);
|
||||
effect eFailSave = EffectBlindness();
|
||||
|
||||
DoOrb(eVis, EffectLinkEffects(eVisFail, eFailSave),
|
||||
SAVING_THROW_TYPE_COLD, DAMAGE_TYPE_COLD);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user