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.
This commit is contained in:
Jaysyn904
2024-02-11 14:01:05 -05:00
parent 618cd42b82
commit 6ec137a24e
24762 changed files with 1528530 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
/*
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 creature<72>s 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));
}
}
}
}