HoS_PRC8/_mod/_removed/x0_s0_drown.nss
Jaysyn904 04165202c0 Initial upload
Initial upload
2024-11-25 19:36:07 -05:00

85 lines
2.4 KiB
Plaintext

// Modified by Deva Winblood so people with bWaterBreathing are immune
//::///////////////////////////////////////////////
//:: Drown
//:: [X0_S0_Drown.nss]
//:: Copyright (c) 2002 Bioware Corp.
//:://////////////////////////////////////////////
/*
if the creature fails a FORT throw.
Does not work against Undead, Constructs, or Elementals.
January 2003:
- Changed to instant kill the target.
May 2003:
- Changed damage to 90% of current HP, instead of instant kill.
*/
//:://////////////////////////////////////////////
//:: Created By: Brent
//:: Created On: July 26 2002
//:://////////////////////////////////////////////
//:: Last Update By: Andrew Nobbs May 01, 2003
#include "NW_I0_SPELLS"
#include "x2_inc_spellhook"
void main()
{
/*
Spellcast Hook Code
Added 2003-06-20 by Georg
If you want to make changes to all spells,
check x2_inc_spellhook.nss to find out more
*/
if (!X2PreSpellCastCode())
{
// If code within the PreSpellCastHook (i.e. UMD) reports FALSE, do not run this spell
return;
}
// End of Spell Cast Hook
//Declare major variables
object oTarget = GetSpellTargetObject();
int nCasterLevel = GetCasterLevel(OBJECT_SELF);
int nDam = GetCurrentHitPoints(oTarget);
//Set visual effect
effect eVis = EffectVisualEffect(VFX_IMP_FROST_S);
effect eDam;
//Check faction of target
if(!GetIsReactionTypeFriendly(oTarget)&&GetLocalInt(oTarget,"bWaterBreathing")==FALSE)
{
//Fire cast spell at event for the specified target
SignalEvent(oTarget, EventSpellCastAt(OBJECT_SELF, 437));
//Make SR Check
if(!MyResistSpell(OBJECT_SELF, oTarget))
{
// * certain racial types are immune
if ((GetRacialType(oTarget) != RACIAL_TYPE_CONSTRUCT)
&&(GetRacialType(oTarget) != RACIAL_TYPE_UNDEAD)
&&(GetRacialType(oTarget) != RACIAL_TYPE_ELEMENTAL))
{
//Make a fortitude save
if(!MySavingThrow(SAVING_THROW_FORT, oTarget, GetSpellSaveDC()))
{
nDam = FloatToInt(nDam * 0.9);
eDam = EffectDamage(nDam, DAMAGE_TYPE_BLUDGEONING);
//Apply the VFX impact and damage effect
ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget);
ApplyEffectToObject(DURATION_TYPE_INSTANT, eDam, oTarget);
}
}
}
}
}