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

37 lines
1.4 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
Awesome Blow
As a standard action, the creature may choose to subtract 4 from its melee attack roll and deliver an awesome blow.
If the creature hits a corporeal opponent smaller than itself with an awesome blow, its opponent must succeed on a
Reflex save (DC = damage dealt) or be knocked flying 10 feet in a direction of the attacking creatures choice and fall prone.
*/
#include "prc_inc_combmove"
#include "moi_inc_moifunc"
void main()
{
object oPC = OBJECT_SELF;
object oTarget = PRCGetSpellTargetObject();
int nHP = GetCurrentHitPoints(oTarget);
int nSizeBonus;
// This section is for a strike, change for a boost or counter
effect eNone;
PerformAttack(oTarget, oPC, eNone, 0.0, -4);
if(GetLocalInt(oTarget, "PRCCombat_StruckByAttack"))
{
int nDC = nHP - GetCurrentHitPoints(oTarget); // This should be the amount caused by the attack
if (GetIsMeldBound(oPC, MELD_WORMTAIL_BELT) == CHAKRA_WAIST)
{
nSizeBonus++;
nDC = GetMeldshaperDC(oPC, CLASS_TYPE_TOTEMIST, MELD_WORMTAIL_BELT);
}
if ((PRCGetCreatureSize(oPC)+nSizeBonus) > PRCGetCreatureSize(oTarget))
{
if(!PRCMySavingThrow(SAVING_THROW_REFLEX, oTarget, nDC, SAVING_THROW_TYPE_NONE))
{
_DoBullRushKnockBack(oTarget, oPC, 10.0);
DelayCommand(0.1, ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectKnockdown(), oTarget, 6.0));
}
}
}
}