2026/02/08 Update
Archived Spellman's Project content. Added missing Diamond Dragon stat feats. Hospitaler's should be able to take Extra Turning. Dodge proxies should allow entry into Champion of Corellon. Mounted Combat is a prereq for Champion of Corellon. Only Clerics have Domain reqs to enter Morninglord. Verdant Lord was missing BAB 4 entry requirement. Diamond Dragons don't get spellcraft. Re-added Korobokuru race. Added .ltr tables for Korobokuru. Capped Blood in the Water at +20. Capped Pearl of Black Doubt at +20. Added json_GetFirstKnownSpell() and json_GetNextKnownSpell(). Updated all old NWNx functions to work with NWNxEE. Added new switch to enable optional PRCX / NWNxEE shims. Commented out ConvoCC switches on inc_switch_setup.nss Diamond Dragon's stat increases are intrinsic when using NWNxEE. Forsaker's stat increases are intrinsic when using NWNxEE. Vow of Poverty's stat increases are intrinsic when using NWNxEE. Cloud Dragon summon should be Neutral Good. Fixed Verdant Lord's regen. Fixed Forest Master's regen. Morninglord's Creative Fire should affect Alchemy. Added yes/no dialog when choosing Vow of Poverty bonus Exalted Feats. Racial natural AC should be intrinsic when NWNxEE is enabled. Transcendent Vitality's CON bonus is intrinsic when NWNxEE is enabled.
This commit is contained in:
@@ -205,6 +205,8 @@ void AddDomainFeat(object oPC, object oSkin, int bFuncs)
|
||||
itemproperty ipIP =ItemPropertyDamageResistance(IP_CONST_DAMAGETYPE_ELECTRICAL, IP_CONST_DAMAGERESIST_5);
|
||||
IPSafeAddItemProperty(oSkin, ipIP, 0.0, X2_IP_ADDPROP_POLICY_REPLACE_EXISTING, FALSE, FALSE);
|
||||
}
|
||||
|
||||
|
||||
if (GetHasFeat(FEAT_WAR_DOMAIN_POWER, oPC))
|
||||
{
|
||||
int nWarFocus = GetPersistantLocalInt(oPC, "WarDomainWeaponPersistent");
|
||||
@@ -239,7 +241,8 @@ void AddDomainFeat(object oPC, object oSkin, int bFuncs)
|
||||
}
|
||||
|
||||
}
|
||||
if (GetHasFeat(FEAT_DOMAIN_POWER_METAL, oPC))
|
||||
|
||||
if (GetHasFeat(FEAT_DOMAIN_POWER_METAL, oPC))
|
||||
{
|
||||
int nWFocus = GetPersistantLocalInt(oPC, "MetalDomainWeaponPersistent");
|
||||
// If they've already chosen a weapon, reapply the feats if they dont have it
|
||||
@@ -297,8 +300,17 @@ void main()
|
||||
|
||||
object oPC = OBJECT_SELF;
|
||||
object oSkin = GetPCSkin(oPC);
|
||||
int bFuncs = GetPRCSwitch(PRC_NWNX_FUNCS);
|
||||
if(DEBUG) DoDebug("PRC Domain Skin is running");
|
||||
|
||||
int nNWNxEE = GetPRCSwitch(PRC_NWNXEE_ENABLED);
|
||||
int nPRCx = GetPRCSwitch(PRC_PRCX_ENABLED);
|
||||
int bFuncs = (nNWNxEE && nPRCx);
|
||||
|
||||
if(DEBUG) DoDebug("prc_domain_skin: Starting");
|
||||
|
||||
if (bFuncs)
|
||||
{
|
||||
if(DEBUG) DoDebug("prc_domain_skin: NWNxEE detected.");
|
||||
}
|
||||
|
||||
// This is above the check to stop because AddDomainFeat needs this to run beforehand.
|
||||
// Puts the domain power feats on the skin for the appropriate domains.
|
||||
|
||||
Reference in New Issue
Block a user