PRC8/nwn/nwnprc/trunk/scripts/prc_rava_pain.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

44 lines
1.2 KiB
Plaintext

//::///////////////////////////////////////////////
//:: Pain Touch
//:: rava_visage
//::
//:://////////////////////////////////////////////
/*
Touched Target takes damage depending upon Ravager Level,
and if carrying something in the left hand
(1d4 + level), or unarmed (1d8 + level)
The +12/10 is to symbolize the base damage
*/
//:://////////////////////////////////////////////
//:: Created By: aser
//:: Created On: Feb/21/04
//:://////////////////////////////////////////////
#include "prc_inc_combat"
void main()
{
//Declare major variables
int ravaLevel = GetLevelByClass(CLASS_TYPE_RAVAGER,OBJECT_SELF);
int unarmDamage = d8(1) + ravaLevel;
int armedDamage = d4(1) + ravaLevel;
int iDam;
effect eVis = EffectVisualEffect(VFX_IMP_NEGATIVE_ENERGY);
string sSuccess = "*Pain Touch Hit*";
string sMiss = "*Pain Touch Miss*";
object oTarget = PRCGetSpellTargetObject();
if (GetIsObjectValid(GetItemInSlot(INVENTORY_SLOT_RIGHTHAND, OBJECT_SELF)))
iDam = armedDamage;
else
iDam = unarmDamage;
PerformAttackRound(oTarget, OBJECT_SELF, eVis, 0.0, 0, iDam, DAMAGE_TYPE_NEGATIVE, FALSE, sSuccess, sMiss);
ActionAttack(oTarget);
}