2026/03/17 Update

Added DMFI components
Updated dynamic conversations.
This commit is contained in:
Jaysyn904
2026-03-17 17:20:49 -04:00
parent 440b020e08
commit dc174e1aaa
63 changed files with 29489 additions and 3478 deletions

View File

@@ -0,0 +1,22 @@
#include "prc_effect_inc"
void main()
{
object oPC = OBJECT_SELF;
int nSpellID = GetSpellId();
if (GetHasSpellEffect(nSpellID, oPC))
{
PRCRemoveSpellEffects(nSpellID, oPC, oPC);
}
else
{
int nAC = 2;
if (GetSkillRank(SKILL_TUMBLE, oPC, TRUE) >= 5) nAC++;
effect eLink = EffectLinkEffects(EffectACIncrease(nAC, AC_DODGE_BONUS), EffectAttackDecrease(4));
eLink = ExtraordinaryEffect(eLink);
ApplyEffectToObject(DURATION_TYPE_PERMANENT, eLink, oPC);
}
}