Updated AMS marker feats. Removed arcane & divine marker feats. Updated Dread Necromancer for epic progression. Updated weapon baseitem models. Updated new weapons for crafting & npc equip. Updated prefix. Updated release archive.
		
			
				
	
	
		
			35 lines
		
	
	
		
			1005 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			1005 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
//::///////////////////////////////////////////////
 | 
						|
//:: 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));
 | 
						|
}
 |