PRC8_fork/nwn/nwnprc/trunk/psionics/psi_pyro_death.nss
Jaysyn904 e641b42f84 Exalted update
Updated Vow of Poverty. Added Sanctify Ki Strike, Holy Strike, Fist of Heavens, Vow of Abstinence, Vow of Chastity & Gift of Faith.  (@fenac).  Turned off the Taunt & Parry skills.  Re-disabled AC & save bonuses from Tumble & Spellcraft.   Updated min() & max() to PRCmin() & PRCmax() to not conflict with similarly named NUI adjacent functions.  Set Point Blank Shot to 30' per PnP.  Added icon for Chosen of Evil.  Started work on Hidden Talent.  Created Psionics function cheatsheet.  Updated release archive.
2025-01-29 22:46:38 -05:00

60 lines
2.2 KiB
Plaintext

/*
prc_pyro_death
Target saves or dies
By: Flaming_Sword
Created: Dec 7, 2007
Modified: Dec 7, 2007
*/
#include "prc_alterations"
#include "psi_inc_psifunc"
void main()
{
object oPC = OBJECT_SELF;
if(!UsePsionicFocus(oPC))
{
SendMessageToPC(oPC, "You must be psionically focused to use this feat");
return;
}
object oTarget = PRCGetSpellTargetObject();
int nDamageType = GetPersistantLocalInt(oPC, "PyroDamageType");
int nImpactVFX = GetPersistantLocalInt(oPC, "PyroImpactVFX");
int nImpactBigVFX = GetPersistantLocalInt(oPC, "PyroImpactBigVFX");
int nDC = 14 + GetAbilityModifier(ABILITY_CHARISMA, oPC);
int nDice = 4;
if(!GetIsReactionTypeFriendly(oTarget))
{
//Fire cast spell at event for the specified target
SignalEvent(oTarget, EventSpellCastAt(OBJECT_SELF, SPELL_HEAT_DEATH));
//Make Forttude save
if (!PRCMySavingThrow(SAVING_THROW_FORT, oTarget, nDC, GetPersistantLocalInt(oPC, "PyroSave")))
{
DeathlessFrenzyCheck(oTarget);
SPApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(nImpactBigVFX), oTarget);
//Apply the death effect and VFX impact
SPApplyEffectToObject(DURATION_TYPE_INSTANT, EffectDeath(), oTarget);
//SPApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget);
}
else
{
// Target shouldn't take damage if they are immune to death magic.
if (!(GetHasMettle(oTarget, SAVING_THROW_FORT)))
{
int nDam = (nDamageType == DAMAGE_TYPE_SONIC) ? d6(nDice) : d8(nDice); //reduced damage dice
if((nDamageType == DAMAGE_TYPE_COLD) || (nDamageType == DAMAGE_TYPE_ELECTRICAL) || (nDamageType == DAMAGE_TYPE_ACID))
nDam = PRCMax(nDice, nDam - nDice); //minimum of 1 per die
//Apply damage effect and VFX impact
SPApplyEffectToObject(DURATION_TYPE_INSTANT, PRCEffectDamage(oTarget, nDam, nDamageType), oTarget);
SPApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(nImpactVFX), oTarget);
}
}
}
}