2025/12/31 Update

Happy New Year!
Added Defensive Manifestation for psionics users.
Removed Talent from Grapple Combat Ability so AI wouldn't use it.
Charnel Touch is unlimited uses & shouldn't cause an AoO.
Switched Rain of Fire to use PRCEffectDamage().
Fixed issue where initiator couldn't take a maneuver in a 2nd sword magic class when having the prereq manuevers from a previous sword magic class.
Set Archetypal Form on Sphere of Ultimate Destruction.
Set Archetypal Form on Black Blade of Disaster.
Added missing immunities to Blighter's Undead WIldshape.
Removed incorrect prereq from Claw at the Moon's TLK entry.
Fixed pluralized Undead Wildshapes.
NPC death always cleans up a grapple.
This commit is contained in:
Jaysyn904
2025-12-31 22:09:21 -05:00
parent 33098fc061
commit 3fb5d61772
27 changed files with 6240 additions and 6053 deletions

View File

@@ -33,7 +33,7 @@ void main()
{
fDelay = PRCGetRandomDelay(0.5, 2.0);
nDamage = d6(1);
eDam = EffectDamage(nDamage, DAMAGE_TYPE_FIRE);
eDam = PRCEffectDamage(oTarget, nDamage, DAMAGE_TYPE_FIRE);
if(!PRCMySavingThrow(SAVING_THROW_REFLEX, oTarget, nDC, SAVING_THROW_TYPE_FIRE, oCaster, fDelay))
{
DelayCommand(fDelay,

View File

@@ -38,7 +38,7 @@ void main()
SignalEvent(oTarget,
EventSpellCastAt(oCaster, SPELL_INCENDIARY_CLOUD));
nDamage = d6(1);
eDam = EffectDamage(nDamage, DAMAGE_TYPE_FIRE);
eDam = PRCEffectDamage(oTarget, nDamage, DAMAGE_TYPE_FIRE);
int nDC = GetEpicSpellSaveDC(oCaster, oTarget, SPELL_EPIC_RAINFIR);
if(!PRCMySavingThrow(SAVING_THROW_REFLEX, oTarget, nDC, SAVING_THROW_TYPE_FIRE, oCaster, fDelay))
{