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,35 @@
/*
----------------
Mountain Fortress Stance
tob_dpst_mntfrt
----------------
27/01/08 by Stratovarius
*/ /** @file
Mountain Fortress Stance
Deepstone Sentinel level 1
You crouch and set your feet flat on the ground, drawing
the resilience of the earth into your body.
You gain a +1 bonus to attacks from being on higher ground, and any creature attempting to fight you in
melee combat must attempt a DC 10 Balance check or fall prone.
This stance ends if you move more than 5 feet for any reason.
*/
#include "tob_inc_tobfunc"
#include "tob_movehook"
////#include "prc_alterations"
void main()
{
//Declare major variables
object oTarget = GetEnteringObject();
// Cleaned up on exit
if (!GetIsSkillSuccessful(oTarget, SKILL_BALANCE, 10) && GetIsEnemy(oTarget, GetAreaOfEffectCreator()))
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, ExtraordinaryEffect(EffectKnockdown()), oTarget, 6.0);
}