PRC8/nwn/nwnprc/trunk/spells/sp_flesh_rip.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

105 lines
3.9 KiB
Plaintext

//::///////////////////////////////////////////////
//:: Name Flesh Ripper
//:: FileName sp_flesh_rip
//:://////////////////////////////////////////////
/**@file Flesh Ripper
Evocation [Evil]
Level: Clr 3, Mortal Hunter 3
Components: V, S, Undead, Fiend
Casting Time: 1 action
Range: Close (25 ft. + 5 ft./2 levels)
Target: One living creature
Duration: Instantaneous
Saving Throw: None
Spell Resistance: Yes
The caster evokes pure evil power in the form of a
black claw that flies at the target. If a ranged
touch attack roll succeeds, the claw deals 1d8
points of damage per caster level (maximum 10d8).
On a critical hit, in addition to dealing double
damage, the wound bleeds for 1 point of damage per
round until it is magically healed.
Author: Tenjac
Created:
*/
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
#include "prc_inc_sp_tch"
void main()
{
PRCSetSchool(SPELL_SCHOOL_EVOCATION);
//Spellhook
if (!X2PreSpellCastCode()) return;
object oPC = OBJECT_SELF;
object oTarget = PRCGetSpellTargetObject();
int nCasterLvl = PRCGetCasterLevel(oPC);
int nMetaMagic = PRCGetMetaMagicFeat();
int nType = MyPRCGetRacialType(oPC);
int nType2 = MyPRCGetRacialType(oTarget);
int nDice = min(10, nCasterLvl);
PRCSignalSpellEvent(oTarget,TRUE, SPELL_FLESH_RIPPER, oPC);
//Caster must be undead. If not, hit 'em with alignment change anyway.
//Try reading the description of the spell moron. =P
if(nType == RACIAL_TYPE_UNDEAD)
{
//check for living target
if(PRCGetIsAliveCreature(oTarget))
{
//Check spell resistance
if(!PRCDoResistSpell(oPC, oTarget, nCasterLvl + SPGetPenetr()))
{
int nDam = d8(nDice);
if(nMetaMagic & METAMAGIC_MAXIMIZE)
{
nDam = (8 * nDice);
}
if(nMetaMagic & METAMAGIC_EMPOWER)
{
nDam += (nDam/2);
}
nDam += SpellDamagePerDice(oPC, nDice);
//Non-descript
effect eDam = PRCEffectDamage(oTarget, nDam, DAMAGE_TYPE_MAGICAL);
//VFX
effect eVis = EffectBeam(VFX_BEAM_BLACK, oPC, BODY_NODE_HAND);
//Make touch attack
int nTouch = PRCDoRangedTouchAttack(oTarget);
if(nTouch > 0)
{
//Apply VFX
SPApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget);
//Apply damage
SPApplyEffectToObject(DURATION_TYPE_INSTANT, eDam, oTarget);
}
if(nTouch = 2)
{
//Apply damage
nDam += nDam;
SPApplyEffectToObject(DURATION_TYPE_INSTANT, eDam, oTarget);
//Wounding
effect eWound = EffectHitPointChangeWhenDying(1.0f);
SPApplyEffectToObject(DURATION_TYPE_PERMANENT, eWound, oTarget);
}
}
}
}
//SPEvilShift(oPC);
PRCSetSchool();
}