PRC8/nwn/nwnprc/trunk/newspellbook/moi_ft_aztalent.nss
Jaysyn904 246f8d56aa 2025/08/22 Update
Reverted to 4.56 to track down a bug that started in 4.57.  Bugfixed back to 4.61.
It's amazing the damage that one skipped case statement can do.
2025-08-22 17:54:55 -04:00

11 lines
302 B
Plaintext

#include "moi_inc_moifunc"
#include "psi_inc_psifunc"
void main()
{
object oMeldshaper = OBJECT_SELF;
int nEssentia = GetEssentiaInvestedFeat(oMeldshaper, FEAT_AZURE_TALENT);
if (GetCanBindChakra(oMeldshaper, CHAKRA_CROWN)) nEssentia += 2;
GainPowerPoints(oMeldshaper, nEssentia, TRUE, TRUE);
}