Updated AMS marker feats. Removed arcane & divine marker feats. Updated Dread Necromancer for epic progression. Updated weapon baseitem models. Updated new weapons for crafting & npc equip. Updated prefix. Updated release archive.
78 lines
2.0 KiB
Plaintext
78 lines
2.0 KiB
Plaintext
//::///////////////////////////////////////////////
|
|
//:: Cloud of the Achaierai: On Enter
|
|
//:: sp_cloud_achaiA.nss
|
|
//::
|
|
//:://////////////////////////////////////////////
|
|
/*
|
|
|
|
*/
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Tenjac
|
|
//:: Created On: 3/24/06
|
|
//:://////////////////////////////////////////////
|
|
|
|
|
|
#include "prc_inc_spells"
|
|
#include "prc_add_spell_dc"
|
|
|
|
void main()
|
|
{
|
|
PRCSetSchool(SPELL_SCHOOL_CONJURATION);
|
|
|
|
object oTarget = GetEnteringObject();
|
|
object oPC = GetAreaOfEffectCreator();
|
|
int nMetaMagic = PRCGetMetaMagicFeat();
|
|
effect eDark = EffectDarkness();
|
|
effect eDur = EffectVisualEffect(VFX_DUR_CESSATE_NEGATIVE);
|
|
effect eLink = EffectLinkEffects(eDark, eDur);
|
|
effect eConf = PRCEffectConfused();
|
|
effect eLinkConf = EffectLinkEffects(eLink, eConf);
|
|
int nCasterLvl = PRCGetCasterLevel(oPC);
|
|
float fDuration = (nCasterLvl * 600.0f);
|
|
int nDam = d6(2);
|
|
int nDC = PRCGetSaveDC(oTarget, oPC);
|
|
nDam += SpellDamagePerDice(oPC, 2);
|
|
//Enter Metamagic conditions
|
|
if ((nMetaMagic & METAMAGIC_EXTEND))
|
|
{
|
|
fDuration = fDuration *2; //Duration is +100%
|
|
}
|
|
|
|
// * July 2003: If has darkness then do not put it on it again
|
|
// Primogenitor: Yes, what about overlapping darkness effects by different casters?
|
|
//if (PRCGetHasEffect(EFFECT_TYPE_DARKNESS, oTarget) == TRUE)
|
|
//{
|
|
// return;
|
|
//}
|
|
|
|
//if valid and not caster
|
|
if(GetIsObjectValid(oTarget) && oTarget != oPC)
|
|
{
|
|
//Spell resistance
|
|
if(!PRCDoResistSpell(oPC, oTarget, nCasterLvl + SPGetPenetr()))
|
|
{
|
|
//Save
|
|
if(!PRCMySavingThrow(SAVING_THROW_FORT, oTarget, nDC, SAVING_THROW_TYPE_SPELL))
|
|
{
|
|
SPApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLinkConf, oTarget, fDuration);
|
|
}
|
|
else
|
|
{
|
|
if(!GetHasMettle(oTarget, SAVING_THROW_FORT))
|
|
{
|
|
SPApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, oTarget, fDuration);
|
|
}
|
|
}
|
|
|
|
//Damage
|
|
effect eDam = PRCEffectDamage(oTarget, nDam, DAMAGE_TYPE_MAGICAL);
|
|
SPApplyEffectToObject(DURATION_TYPE_INSTANT, eDam, oTarget);
|
|
}
|
|
}
|
|
|
|
PRCSetSchool();
|
|
}
|
|
|
|
|
|
|