Updated Release Archive

Updated Release Archive.  Fixed Mage-killer prereqs.  Removed old LETO & ConvoCC related files.  Added organized spell scroll store.  Fixed Gloura spellbook. Various TLK fixes.  Reorganized Repo.  Removed invalid user folders. Added DocGen back in.
This commit is contained in:
Jaysyn904
2023-08-22 10:00:21 -04:00
parent 3acda03f30
commit 5914ed2ab5
22853 changed files with 57524 additions and 47307 deletions

View File

@@ -0,0 +1,34 @@
//::///////////////////////////////////////////////
//:: Strength of Two
//:: psi_g_stroftwo
//::///////////////////////////////////////////////
/*
Expends the Psionic Focus and 1 PP for
+4 additional bonus to Will saves for 1 round
*/
//:://////////////////////////////////////////////
//:: Created By: Fox
//:: Created On: 2008.2.14
//:://////////////////////////////////////////////
#include "psi_inc_soulkn"
#include "psi_inc_psifunc"
void main()
{
object oManifester = OBJECT_SELF;
if(!UsePsionicFocus(oManifester)){
SendMessageToPC(oManifester, "You must be psionically focused to use this feat");
return;
}
//subtract 1 PP, add 4 to Will saves for 1 round
//Don't need to check PP total, you can only have focus if you have PP
LosePowerPoints(oManifester, 1);
effect eWillBonus = EffectSavingThrowIncrease(SAVING_THROW_WILL, 5);
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eWillBonus, oManifester, RoundsToSeconds(1));
}