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,44 @@
//:://////////////////////////////////////////////
//:: Name Strategic Charge
//:: FileName sp_stratchrg.nss
//:://////////////////////////////////////////////
/** @file Abjuration
Level: Blackguard 1, Paladin 1
Components: V, DF,
Casting Time: 1 swift action
Range: Personal
Target: You
Duration: 1 round/level
A red nimbus surrounds you as you move smoothly
across the crowded battlefield.
You gain the benefit of the Mobility feat (PH 98),
even if you not meet the prerequisites. You do not
have to be charging to gain this benefit.
*/
//:://////////////////////////////////////////////
//:: Created By: Tenjac
//:: Created On: 7/26/22
//:://////////////////////////////////////////////
#include "prc_sp_func"
#include "prc_add_spell_dc"
void main()
{
if(!X2PreSpellCastCode()) return;
PRCSetSchool(SPELL_SCHOOL_ABJURATION);
object oPC = OBJECT_SELF;
object oSkin = GetPCSkin(oPC);
int nCasterLvl = PRCGetCasterLevel(oPC);
float fDur = RoundsToSeconds(nCasterLvl);
int nMetaMagic = PRCGetMetaMagicFeat();
if(nMetaMagic & METAMAGIC_EXTEND) fDur += fDur;
itemproperty iProp = PRCItemPropertyBonusFeat(IP_FEAT_MOBILITY);
IPSafeAddItemProperty(oSkin, iProp, fDur);
PRCSetSchool();
}