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.
105 lines
3.9 KiB
Plaintext
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 = PRCMin(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();
|
|
} |