Minified spells.2da

Minified spells.2da.  More Superior Defense tweaks.  Updated release archive.
This commit is contained in:
Jaysyn904 2024-05-28 20:51:55 -04:00
parent 3ca3a73cd8
commit 99740b2249
6 changed files with 19429 additions and 19419 deletions

1
.gitignore vendored
View File

@ -27,3 +27,4 @@ nwn/nwnprc/trunk/makefile.temp
*.temp
*.temp
nwn/nwnprc/trunk/makefile.temp
nwn/nwnprc/trunk/makefile.temp

BIN
Release/PRC8_20240528.7z Normal file

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@ -21315,6 +21315,7 @@ others\prc_scr_991.uti \
others\prc_scr_992.uti \
others\prc_scr_993.uti \
others\prc_scr_994.uti \
others\prc_scr_995.uti \
others\prc_scrolls.utm \
others\prc_serparrow.uti \
others\prc_serpbolt.uti \

View File

@ -49,12 +49,12 @@ void SuperiorDefense(object oPC, int nLevel)
int nMithral = 0;
int nBonus = 0;
//SendMessageToPC(GetFirstPC(), "DEBUG: prc_coc -> PC's DEX bonus is "+ IntToString(nDEXb)+".");
SendMessageToPC(GetFirstPC(), "DEBUG: prc_coc -> PC's DEX bonus is "+ IntToString(nDEXb)+".");
//:: Abort CoC & Mithral checks if not wearing armor
if (oArmor == OBJECT_INVALID)
{
//SendMessageToPC(GetFirstPC(), "DEBUG: prc_coc -> No armor found, aborting.");
SendMessageToPC(GetFirstPC(), "DEBUG: prc_coc -> No armor found, aborting.");
SetCompositeBonus(oSkin, "SuperiorDefenseDexBonus", 0, ITEM_PROPERTY_AC_BONUS);
SetCompositeBonus(oSkin, "PRC_CRAFT_MITHRAL", 0, ITEM_PROPERTY_AC_BONUS);
return;
@ -62,53 +62,61 @@ void SuperiorDefense(object oPC, int nLevel)
//:: Determine the base AC value of the armor
int nAC = GetBaseAC(oArmor);
//SendMessageToPC(GetFirstPC(), "DEBUG: prc_coc -> Base AC is "+ IntToString(nAC)+".");
SendMessageToPC(GetFirstPC(), "DEBUG: prc_coc -> Base AC is "+ IntToString(nAC)+".");
//:: Get modifier for Mithral armor, if any.
if(StringToInt(GetStringLeft(GetTag(oArmor), 3)) & 16) //:: TAG ID for Mithral armor
{
//SendMessageToPC(GetFirstPC(), "DEBUG: prc_coc -> Mithral armor found. +2 Max DEX Bonus");
nMithral = 2;
nBonus = nBonus + nMithral;
SendMessageToPC(GetFirstPC(), "DEBUG: prc_coc -> Mithral armor found. +2 Max DEX Bonus");
nMithral = 2;
nBonus = nBonus + 2;
}
//:: Check if the armor is medium or heavy based on its AC value
if (nAC < 4) //:: Medium armor starts @ 4 AC
{
//SendMessageToPC(GetFirstPC(), "DEBUG: prc_coc -> Light armor found, Superior Defense aborting.");
SetCompositeBonus(oSkin, "SuperiorDefenseDexBonus", 0, ITEM_PROPERTY_AC_BONUS);
}
//:: Get the maximum Dexterity bonus from armor.2da
string sMaxDexBonus = Get2DACache("armor", "DEXBONUS", nAC);
int nMaxDexBonus = StringToInt(sMaxDexBonus);
//SendMessageToPC(GetFirstPC(), "DEBUG: prc_coc -> Armor's Max DEX bonus is "+ IntToString(nMaxDexBonus)+".");
SendMessageToPC(GetFirstPC(), "DEBUG: prc_coc -> Armor's Max DEX bonus is "+ IntToString(nMaxDexBonus)+".");
//:: Calculate the new bonus from CoC levels
nBonus = 1 + (nLevel - 3) / 3;
//SendMessageToPC(GetFirstPC(), "DEBUG: prc_coc -> nBonus from class levels is "+ IntToString(nBonus)+".");
SendMessageToPC(GetFirstPC(), "DEBUG: prc_coc -> nBonus from class levels is "+ IntToString(nBonus)+".");
//SendMessageToPC(GetFirstPC(), "DEBUG: prc_coc -> nBonus before DEX cap is "+ IntToString(nBonus)+".");
SendMessageToPC(GetFirstPC(), "DEBUG: prc_coc -> nBonus before DEX cap is "+ IntToString(nBonus)+".");
if (nBonus > nDEXb) //:: Caps AC bonus @ PCs Dex bonus
{
nBonus == nDEXb;
}
//SendMessageToPC(GetFirstPC(), "DEBUG: prc_coc -> nBonus after DEX cap is "+ IntToString(nBonus)+".");
SendMessageToPC(GetFirstPC(), "DEBUG: prc_coc -> nBonus after DEX cap is "+ IntToString(nBonus)+".");
if (nAC > 3) //:: Medium armor starts @ 4 AC
{
int nNewDexBonus = nMaxDexBonus + nBonus;
//SendMessageToPC(GetFirstPC(), "DEBUG: prc_coc -> nNewDexBonus is "+ IntToString(nNewDexBonus)+".");
//SendMessageToPC(GetFirstPC(), "DEBUG: prc_coc -> nMithral Bonus is "+ IntToString(nMithral)+".");
SendMessageToPC(GetFirstPC(), "DEBUG: prc_coc -> nNewDexBonus is "+ IntToString(nNewDexBonus)+".");
SendMessageToPC(GetFirstPC(), "DEBUG: prc_coc -> nMithral Bonus is "+ IntToString(nMithral)+".");
//:: Store the new Dex bonus as deflection AC on the character's skin (should be dodge)
//SendMessageToPC(GetFirstPC(), "DEBUG: prc_coc -> Final SuperiorDefenseDexBonus is "+ IntToString(nNewDexBonus + nMithral)+".");
SendMessageToPC(GetFirstPC(), "DEBUG: prc_coc -> Final SuperiorDefenseDexBonus is "+ IntToString(nNewDexBonus + nMithral)+".");
SetCompositeBonus(oSkin, "SuperiorDefenseDexBonus", nNewDexBonus + nMithral, ITEM_PROPERTY_AC_BONUS);
//SendMessageToPC(GetFirstPC(), "DEBUG: prc_coc -> -------------------------------------------");
SendMessageToPC(GetFirstPC(), "DEBUG: prc_coc -> -------------------------------------------");
}
else
{
if(nMithral)
{
SendMessageToPC(GetFirstPC(), "DEBUG: prc_coc -> Light Mithral Armor found");
SetCompositeBonus(oSkin, "SuperiorDefenseDexBonus", nMithral, ITEM_PROPERTY_AC_BONUS);
}
else
{
SendMessageToPC(GetFirstPC(), "DEBUG: prc_coc -> Light Armor found");
SetCompositeBonus(oSkin, "SuperiorDefenseDexBonus", 0, ITEM_PROPERTY_AC_BONUS);
}
}
}