PRC8/nwn/nwnprc/trunk/smp/phs_s_wordofchao.nss
Jaysyn904 6ec137a24e Updated AMS marker feats
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.
2024-02-11 14:01:05 -05:00

209 lines
8.6 KiB
Plaintext

/*:://////////////////////////////////////////////
//:: Spell Name Word of Chaos
//:: Spell FileName PHS_S_WordofChao
//:://////////////////////////////////////////////
//:: In Game Spell desctiption
//:://////////////////////////////////////////////
Word of Chaos
Evocation [Chaotic, Sonic]
Level: Chaos 7, Clr 7
Components: V
Casting Time: 1 standard action
Range: 13.33M. (40 ft.)
Area: Nonchaotic creatures in a 13.33M-radius (40-ft.) spread centered on you
Duration: Instantaneous
Saving Throw: None or Will negates; see text
Spell Resistance: Yes
Any nonchaotic creature within the area who hears the word of chaos suffers
the following ill effects.
HD Effect
Equal to caster level Deafened
Up to caster level -1 Stunned, deafened
Up to caster level -5 Confused, stunned, deafened
Up to caster level -10 Killed, confused, stunned, deafened
The effects are cumulative and concurrent. No saving throw is allowed against
these effects.
Deafened: The creature is deafened for 1d4 rounds.
Stunned: The creature is stunned for 1 round.
Confused: The creature is confused, as by the confusion spell, for 1d10
minutes. This is a mind-affecting enchantment effect.
Killed: Living creatures die. Undead creatures are destroyed.
Furthermore, if you are on your home plane when you cast this spell,
nonchaotic extraplanar creatures within the area are instantly banished back
to their home planes. Creatures so banished cannot return for at least 24
hours. This effect takes place regardless of whether the creatures hear the
word of chaos. The banishment effect allows a Will save (at a -4 penalty) to
negate.
Creatures whose HD exceed your caster level are unaffected by word of chaos.
//:://////////////////////////////////////////////
//:: Spell Effects Applied / Notes
//:://////////////////////////////////////////////
Similar to Dictum, Blashpemy, etc. Chaotic version.
No saving throw - nice!
Anyway, HD limits, all effects can be applied as above. SR applies, and
they need to hear the word for it to work - apart from the home plane
part.
Blasphemy (Evil), Dictum (Lawful), Holy Word (Good), Word of Chaos (Chaos)
sets of spells.
//:://////////////////////////////////////////////
//:: Created By: Jasperre
//::////////////////////////////////////////////*/
#include "PHS_INC_SPELLS"
void main()
{
// Spell hook check.
if(PHS_SpellHookCheck(PHS_SPELL_WORD_OF_CHAOS)) return;
// Define major variables
object oCaster = OBJECT_SELF;
location lSelf = GetLocation(oCaster);
object oTarget;
int nCasterLevel = PHS_GetCasterLevel(oCaster);
int nCasterLevelM1 = nCasterLevel - 1;
int nCasterLevelM5 = nCasterLevel - 5;
int nCasterLevelM10 = nCasterLevel - 10;
int nMetaMagic = PHS_GetMetaMagicFeat();
int nHitDice, nRace, nStrength;
int nSpellSaveDC = PHS_GetSpellSaveDC();
// We add 4 to the DC, as it says "effect allows a Will save (at a -4 penalty)"
nSpellSaveDC += 4;
// Delay = distance / 20
float fDelay;
// Duration is different for all parts.
float fDuration;// = PHS_GetDuration(PHS_MINUTES, nCasterLevel, nMetaMagic);
// 1 round for daze.
float f1Round = PHS_GetDuration(PHS_ROUNDS, 1, nMetaMagic);
// Declare effects.
effect eBanishment = EffectVisualEffect(VFX_IMP_UNSUMMON);
effect eCessate = EffectVisualEffect(VFX_DUR_CESSATE_NEGATIVE);
// Confusion (1d10 minutes)
effect eConfuse = EffectConfused();
effect eConfuseDur = EffectVisualEffect(VFX_DUR_MIND_AFFECTING_NEGATIVE);
// Stunned (1 round)
effect eStun = EffectStunned();
effect eStunDur = EffectVisualEffect(VFX_IMP_STUN);
// Deafened (1d4 rounds)
effect eDeaf = EffectDeaf();
// Death
effect eDeathVis = EffectVisualEffect(VFX_IMP_DEATH_L);
// Link effects
// Confusion
effect eConfuseLink = EffectLinkEffects(eConfuse, eConfuseDur);
eConfuseLink = EffectLinkEffects(eConfuseLink, eCessate);
// Stunned
effect eStunLink = EffectLinkEffects(eStun, eStunDur);
eStunLink = EffectLinkEffects(eStunLink, eCessate);
// Deaf
effect eDeafLink = EffectLinkEffects(eDeaf, eCessate);
// Apply AOE visual
effect eImpact = EffectVisualEffect(PHS_VFX_FNF_WORD_OF_CHAOS);
PHS_ApplyLocationVFX(lSelf, eImpact);
// Loop enemies - and apply the effects.
oTarget = GetFirstObjectInShape(SHAPE_SPHERE, 13.33, lSelf);
while(GetIsObjectValid(oTarget))
{
// PvP Check - affects hostiles more often then not.
if(GetIsReactionTypeHostile(oTarget) &&
// Make sure they are not immune to spells
!PHS_TotalSpellImmunity(oTarget))
{
//Fire cast spell at event for the specified target
PHS_SignalSpellCastAt(oTarget, PHS_SPELL_WORD_OF_CHAOS);
// Delay for visuals and effects.
fDelay = GetDistanceBetween(oCaster, oTarget)/20;
// Hit dice and alignment check
nHitDice = GetHitDice(oTarget);
if(nHitDice <= nCasterLevel &&
GetAlignmentLawChaos(oTarget) != ALIGNMENT_CHAOTIC)
{
// Spell resistance check
if(PHS_SpellResistanceCheck(oCaster, oTarget, fDelay))
{
// They must be able to hear the words of the spell to
// be affected (As noted in the Banishment part, and the top).
if(PHS_GetCanHear(oTarget))
{
// What do we apply?
fDuration = PHS_GetRandomDuration(PHS_ROUNDS, 4, 1, nMetaMagic);
// Everyone is deafened...
PHS_ApplyDuration(oTarget, eDeafLink, fDuration);
// Need to be anywhere under nCasterLevel, or equal or under
// nCasterLevel - 1 to be stunned.
if(nHitDice <= nCasterLevelM1)
{
// Duration is 1 round
fDuration = PHS_GetDuration(PHS_ROUNDS, 1, nMetaMagic);
// Apply it
PHS_ApplyDuration(oTarget, eStunLink, fDuration);
// Need to be equal or under nCasterLevel - 5 for Confusion
if(nHitDice <= nCasterLevelM5)
{
// Confusion is for 1d10 rounds
fDuration = PHS_GetRandomDuration(PHS_ROUNDS, 10, 1, nMetaMagic);
// Apply it
PHS_ApplyDuration(oTarget, eConfuseLink, fDuration);
// Need to be equal or under nCasterLevel - 10 for death
if(nHitDice <= nCasterLevelM10)
{
// Death is instant
PHS_ApplyDeathByDamageAndVFX(oTarget, eDeathVis);
}
}
}
}
// Now, are they going home?
/*
Furthermore, if you are on your home plane when you cast this spell, nongood
extraplanar creatures within the area are instantly banished back to their
home planes. Creatures so banished cannot return for at least 24 hours. This
effect takes place regardless of whether the creatures hear the holy word.
The banishment effect allows a Will save (at a -4 penalty) to negate.
*/
// If they are outsiders (we've done the alignment check)
// we push them back to thier planes.
// VERY BASIC AT THE MOMENT, IT DOESN'T EVEN CHECK TO SEE IF
// THIS IS THEIR PLANE!
if(GetRacialType(oTarget) == RACIAL_TYPE_OUTSIDER)
{
// Will-based saving throw
if(!PHS_SavingThrow(SAVING_THROW_WILL, oTarget, nSpellSaveDC, SAVING_THROW_TYPE_EVIL, oCaster, fDelay))
{
if(PHS_CanCreatureBeDestroyed(oTarget))
{
// Destroy them with VFX
DestroyObject(oTarget);
PHS_ApplyLocationVFX(GetLocation(oTarget), eBanishment);
}
}
}
}
}
}
oTarget = GetNextObjectInShape(SHAPE_SPHERE, 13.33, lSelf);
}
}