123 lines
2.9 KiB
Plaintext
123 lines
2.9 KiB
Plaintext
#include "prc_dg_inc"
|
|
#include "strat_prc_inc"
|
|
#include "discipleinclude"
|
|
#include "inc_prc_function"
|
|
#include "lookup_2da_spell"
|
|
|
|
int add_fire_SP()
|
|
{
|
|
object oCaster = OBJECT_SELF;
|
|
int nSP = 0;
|
|
|
|
if ( GetHasFeat( FEAT_ES_FIRE, oCaster ))
|
|
{
|
|
if ( GetHasFeat ( FEAT_ES_FOCUS_3, oCaster ))
|
|
nSP += 3;
|
|
else if ( GetHasFeat ( FEAT_ES_FOCUS_2, oCaster ))
|
|
nSP += 2;
|
|
else if ( GetHasFeat ( FEAT_ES_FOCUS_1, oCaster ))
|
|
nSP += 1;
|
|
}
|
|
|
|
return nSP;
|
|
}
|
|
|
|
int add_elec_SP()
|
|
{
|
|
object oCaster = OBJECT_SELF;
|
|
int nSP = 0;
|
|
|
|
if ( GetHasFeat( FEAT_ES_ELEC, oCaster ))
|
|
{
|
|
if ( GetHasFeat ( FEAT_ES_FOCUS_3, oCaster ))
|
|
nSP += 3;
|
|
else if ( GetHasFeat ( FEAT_ES_FOCUS_2, oCaster ))
|
|
nSP += 2;
|
|
else if ( GetHasFeat ( FEAT_ES_FOCUS_1, oCaster ))
|
|
nSP += 1;
|
|
}
|
|
|
|
return nSP;
|
|
}
|
|
|
|
int add_cold_SP()
|
|
{
|
|
object oCaster = OBJECT_SELF;
|
|
int nSP = 0;
|
|
|
|
if ( GetHasFeat( FEAT_ES_COLD, oCaster ))
|
|
{
|
|
if ( GetHasFeat ( FEAT_ES_FOCUS_3, oCaster ))
|
|
nSP += 3;
|
|
else if ( GetHasFeat ( FEAT_ES_FOCUS_2, oCaster ))
|
|
nSP += 2;
|
|
else if ( GetHasFeat ( FEAT_ES_FOCUS_1, oCaster ))
|
|
nSP += 1;
|
|
}
|
|
|
|
return nSP;
|
|
}
|
|
|
|
int add_acid_SP()
|
|
{
|
|
object oCaster = OBJECT_SELF;
|
|
int nSP = 0;
|
|
|
|
if ( GetHasFeat( FEAT_ES_ACID, oCaster ))
|
|
{
|
|
if ( GetHasFeat ( FEAT_ES_FOCUS_3, oCaster ))
|
|
nSP += 3;
|
|
else if ( GetHasFeat ( FEAT_ES_FOCUS_2, oCaster ))
|
|
nSP += 2;
|
|
else if ( GetHasFeat ( FEAT_ES_FOCUS_1, oCaster ))
|
|
nSP += 1;
|
|
}
|
|
|
|
return nSP;
|
|
}
|
|
|
|
int GetHeartWarderPene(object oCaster)
|
|
{
|
|
if(GetLevelByClass(CLASS_TYPE_HEARTWARDER,oCaster)<6)
|
|
return 0;
|
|
|
|
string VS=lookup_spell_vs(GetSpellId());
|
|
if (!(VS=="s" ||VS=="vs"))
|
|
return 0;
|
|
|
|
if ( GetHasFeat(FEAT_SPELL_PENETRATION,oCaster) || GetMetaMagicFeat()==METAMAGIC_SILENT || GetHasFeat(FEAT_GREATER_SPELL_PENETRATION,oCaster)|| GetHasFeat(FEAT_EPIC_SPELL_PENETRATION,oCaster))
|
|
return 0;
|
|
|
|
return 2;
|
|
}
|
|
|
|
void main()
|
|
{
|
|
object oCaster = OBJECT_SELF;
|
|
string element = lookup_spell_type(GetSpellId());
|
|
|
|
int nSP = 0;
|
|
|
|
//Sorry to mess with your scripts, but I needed to make sure
|
|
//that spell power and hierophant spell-like ability adjustments
|
|
//didn't get short circuited by these functions. All I did was
|
|
//change your functions to return ints and add them up at the end
|
|
//instead of terminating the script.
|
|
// - Aaon Graywolf
|
|
if (element == "Fire")
|
|
nSP += add_fire_SP();
|
|
else if (element == "Cold")
|
|
nSP += add_cold_SP();
|
|
else if (element == "Electricity")
|
|
nSP += add_elec_SP();
|
|
else if (element == "Acid")
|
|
nSP += add_acid_SP();
|
|
|
|
nSP += GetSpellPowerBonus(oCaster);
|
|
|
|
nSP += GetHeartWarderPene(oCaster);
|
|
|
|
SetLocalInt(oCaster,"X2_L_LAST_RETVAR", nSP);
|
|
}
|
|
|