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.
15 lines
390 B
Plaintext
15 lines
390 B
Plaintext
#include "prc_alterations"
|
|
|
|
|
|
void main()
|
|
{
|
|
int iWis =GetAbilityModifier(ABILITY_WISDOM)>0 ? GetAbilityModifier(ABILITY_WISDOM):0;
|
|
|
|
|
|
effect eWis = EffectAbilityIncrease(ABILITY_WISDOM,2);
|
|
effect eDmg = EffectDamageIncrease(DAMAGE_BONUS_4,DAMAGE_TYPE_BLUDGEONING);
|
|
|
|
ApplyEffectToObject(DURATION_TYPE_TEMPORARY,EffectLinkEffects(eWis,eDmg),OBJECT_SELF,RoundsToSeconds(iWis+2));
|
|
|
|
}
|