Initial upload.

Adding base PRC 4.19a files to repository.
This commit is contained in:
Jaysyn904
2022-10-07 13:51:24 -04:00
parent 646eb01834
commit 1662218bb4
22441 changed files with 1274376 additions and 0 deletions

View File

@@ -0,0 +1,57 @@
//::///////////////////////////////////////////////
//:: Psionic Focus spellscript
//:: psi_psionic_foc
//::///////////////////////////////////////////////
/** @file
Does a concentration check to see if the user
gains psionic focus.
In the event this is used while already focused,
it will still run the GainPsionicFocus() -
function.
@author Modified by - Ornedan
@date Modified on - 2005.03.23
@date Modified on - 2005.12.30
*/
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
#include "prc_feat_const"
#include "psi_inc_psifunc"
void main()
{
object oPC = OBJECT_SELF;
if(GetCurrentPowerPoints(oPC) == 0)
{
SendMessageToPCByStrRef(oPC, 16824068); // "You do not have any Power Points, you cannot become Psionically Focused"
return;
}
if(GetIsPsionicallyFocused(oPC))
{
SendMessageToPCByStrRef(oPC, 16824065); // "You are already Psionically Focused."
GainPsionicFocus(oPC); // Recheck the bonuses associated with Psionic Focus
return;
}
if (PRCGetSpellId() == 2822) // Psionic meditation feat
{
if(!TakeMoveAction(oPC)) return;
}
int nDC = 20;
if(GetHasFeat(FEAT_NARROW_MIND, oPC)) nDC -= 4;
if(GetHasFeat(FEAT_COMBAT_MANIFESTATION, oPC)) nDC += 4; // Hack to avoid granting bonus from Combat manifestation where it should not be
if(GetIsSkillSuccessful(oPC, SKILL_CONCENTRATION, nDC))
{
SendMessageToPCByStrRef(oPC, 16824066); // "You are now Psionically Focused."
GainPsionicFocus(oPC);
}
else
SendMessageToPCByStrRef(oPC, 16824067); // "You failed to become Psionically Focused."
}