PRC8/nwn/nwnprc/trunk/scripts/prc_reservsmnelm.nss
Jaysyn904 6ec137a24e Updated AMS marker feats
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.
2024-02-11 14:01:05 -05:00

144 lines
4.0 KiB
Plaintext

//Spell script for reserve feat Summon Elemental
//prc_reservsmnelm
//by ebonfowl
//Dedicated to Edgar, the real Ebonfowl
#include "prc_inc_spells"
void MarkElemental(object oPC)
{
int i=1;
int nCount = GetPRCSwitch(PRC_MULTISUMMON);
if(nCount < 0
|| nCount == 1)
nCount = 99;
if(nCount > 99)
nCount = 99;
object oSummon = GetAssociate(ASSOCIATE_TYPE_SUMMONED, oPC, i);
while(GetIsObjectValid(oSummon) && i < nCount)
{
string sTag = GetResRef(oSummon);
if (sTag == "hen_air_lar" ||
sTag == "hen_air_med" ||
sTag == "hen_air_small001" ||
sTag == "hen_earth_lar" ||
sTag == "hen_earth_med" ||
sTag == "hen_earth_small1" ||
sTag == "hen_fire_lar" ||
sTag == "hen_fire_med" ||
sTag == "hen_fire_small01" ||
sTag == "hen_water_lar" ||
sTag == "hen_water_med" ||
sTag == "hen_water_small1")
SetLocalInt(oSummon, "RFSummonedElemental", TRUE);
i++;
oSummon = GetAssociate(ASSOCIATE_TYPE_SUMMONED, oPC, i);
}
}
void main()
{
//Declare major variables
object oPC = OBJECT_SELF;
int nSwitch = GetPRCSwitch(PRC_SUMMON_ROUND_PER_LEVEL);
int nBonus = GetLocalInt(oPC, "SummonElementalBonus");
float fDuration = RoundsToSeconds(nBonus);
string sSummon;
int nVFX;
if (!GetLocalInt(oPC, "SummonElementalBonus"))
{
FloatingTextStringOnCreature("You do not have a spell available of adequate level or type", oPC, FALSE);
return;
}
switch(GetSpellId())
{
case SPELL_SUMMON_ELEMENTAL_AIR:
{
if (nBonus > 7)
{
sSummon = "hen_air_lar";
nVFX = VFX_FNF_SUMMON_MONSTER_3;
}
else if (nBonus > 5)
{
sSummon = "hen_air_med";
nVFX = VFX_FNF_SUMMON_MONSTER_2;
}
else if (nBonus > 3)
{
sSummon = "hen_air_small001";
nVFX = VFX_FNF_SUMMON_MONSTER_1;
}
break;
}
case SPELL_SUMMON_ELEMENTAL_EARTH:
{
if (nBonus > 7)
{
sSummon = "hen_earth_lar";
nVFX = VFX_FNF_SUMMON_MONSTER_3;
}
else if (nBonus > 5)
{
sSummon = "hen_earth_med";
nVFX = VFX_FNF_SUMMON_MONSTER_2;
}
else if (nBonus > 3)
{
sSummon = "hen_earth_small1";
nVFX = VFX_FNF_SUMMON_MONSTER_1;
}
break;
}
case SPELL_SUMMON_ELEMENTAL_FIRE:
{
if (nBonus > 7)
{
sSummon = "hen_fire_lar";
nVFX = VFX_FNF_SUMMON_MONSTER_3;
}
else if (nBonus > 5)
{
sSummon = "hen_fire_med";
nVFX = VFX_FNF_SUMMON_MONSTER_2;
}
else if (nBonus > 3)
{
sSummon = "hen_fire_small01";
nVFX = VFX_FNF_SUMMON_MONSTER_1;
}
break;
}
case SPELL_SUMMON_ELEMENTAL_WATER:
{
if (nBonus > 7)
{
sSummon = "hen_water_lar";
nVFX = VFX_FNF_SUMMON_MONSTER_3;
}
else if (nBonus > 5)
{
sSummon = "hen_water_med";
nVFX = VFX_FNF_SUMMON_MONSTER_2;
}
else if (nBonus > 3)
{
sSummon = "hen_water_small1";
nVFX = VFX_FNF_SUMMON_MONSTER_1;
}
break;
}
}
effect eSummon = EffectSummonCreature(sSummon, nVFX);
MarkElemental(oPC);
//Apply the VFX impact and summon effect
MultisummonPreSummon();
ApplyEffectAtLocation(DURATION_TYPE_TEMPORARY, eSummon, PRCGetSpellTargetLocation(), fDuration);
DelayCommand(0.5, AugmentSummonedCreature(sSummon));
}