Files
Anphillia_PRC8/_removed/nw_s0_summon.nss
Jaysyn904 28cdb617b3 Initial commit
Adding all of the current content for Anphillia Unlimited.
2024-01-04 07:49:38 -05:00

294 lines
8.3 KiB
Plaintext

//::///////////////////////////////////////////////
//:: Summon Creature Series
//:: NW_S0_Summon
//:: Copyright (c) 2001 Bioware Corp.
//:://////////////////////////////////////////////
/*
Carries out the summoning of the appropriate
creature for the Summon Monster Series of spells
1 to 9
*/
/*
Anphillia Changes
This spell uses hc_inc_summon to summon a wieder variety of creatures
and has it's duration set to a flat 3 hours.
*/
//:://////////////////////////////////////////////
//:: Created By: Preston Watamaniuk
//:: Created On: Jan 8, 2002
//:://////////////////////////////////////////////
effect SetSummonEffect(int nSpellID);
#include "x2_inc_spellhook"
#include "hc_inc_summon"
void main()
{
/*
Spellcast Hook Code
Added 2003-06-23 by GeorgZ
If you want to make changes to all spells,
check x2_inc_spellhook.nss to find out more
*/
if (!X2PreSpellCastCode())
{
// If code within the PreSpellCastHook (i.e. UMD) reports FALSE, do not run this spell
return;
}
// End of Spell Cast Hook
//Declare major variables
int nSpellID = GetSpellId();
int nDuration = 3;
effect eSummon = SetSummonEffect(nSpellID);
//Make metamagic check for extend
int nMetaMagic = GetMetaMagicFeat();
if (nMetaMagic == METAMAGIC_EXTEND)
{
nDuration = nDuration *2; //Duration is +100%
}
//Apply the VFX impact and summon effect
ApplyEffectAtLocation(DURATION_TYPE_TEMPORARY, eSummon, GetSpellTargetLocation(), HoursToSeconds(nDuration));
}
effect SetSummonEffect(int nSpellID)
{
int nFNF_Effect;
int nRoll = d3();
string sSummon;
if(GetHasFeat(FEAT_ANIMAL_DOMAIN_POWER)) //WITH THE ANIMAL DOMAIN
{
if(nSpellID == SPELL_SUMMON_CREATURE_I)
{
nFNF_Effect = VFX_FNF_SUMMON_MONSTER_1;
sSummon=pick_creature(2);
if(sSummon=="") sSummon = "NW_S_BOARDIRE";
}
else if(nSpellID == SPELL_SUMMON_CREATURE_II)
{
nFNF_Effect = VFX_FNF_SUMMON_MONSTER_1;
sSummon=pick_creature(3);
if(sSummon=="") sSummon = "NW_S_WOLFDIRE";
}
else if(nSpellID == SPELL_SUMMON_CREATURE_III)
{
nFNF_Effect = VFX_FNF_SUMMON_MONSTER_1;
sSummon=pick_creature(4);
if(sSummon=="") sSummon = "NW_S_SPIDDIRE";
}
else if(nSpellID == SPELL_SUMMON_CREATURE_IV)
{
nFNF_Effect = VFX_FNF_SUMMON_MONSTER_2;
sSummon=pick_creature(5);
if(sSummon=="") sSummon = "NW_S_beardire";
}
else if(nSpellID == SPELL_SUMMON_CREATURE_V)
{
nFNF_Effect = VFX_FNF_SUMMON_MONSTER_2;
sSummon=pick_creature(6);
if(sSummon=="") sSummon = "NW_S_diretiger";
}
else if(nSpellID == SPELL_SUMMON_CREATURE_VI)
{
nFNF_Effect = VFX_FNF_SUMMON_MONSTER_3;
sSummon=pick_creature(7);
if(sSummon=="")
{
switch (nRoll)
{
case 1:
sSummon = "NW_S_AIRHUGE";
break;
case 2:
sSummon = "NW_S_WATERHUGE";
break;
case 3:
sSummon = "NW_S_FIREHUGE";
break;
}
}
}
else if(nSpellID == SPELL_SUMMON_CREATURE_VII)
{
nFNF_Effect = VFX_FNF_SUMMON_MONSTER_3;
sSummon=pick_creature(8);
if(sSummon=="")
{
switch (nRoll)
{
case 1:
sSummon = "NW_S_AIRGREAT";
break;
case 2:
sSummon = "NW_S_WATERGREAT";
break;
case 3:
sSummon = "NW_S_FIREGREAT";
break;
}
}
}
else if(nSpellID == SPELL_SUMMON_CREATURE_VIII)
{
nFNF_Effect = VFX_FNF_SUMMON_MONSTER_3;
sSummon=pick_creature(9);
if(sSummon=="")
{
switch (nRoll)
{
case 1:
sSummon = "NW_S_AIRELDER";
break;
case 2:
sSummon = "NW_S_WATERELDER";
break;
case 3:
sSummon = "NW_S_FIREELDER";
break;
}
}
}
else if(nSpellID == SPELL_SUMMON_CREATURE_IX)
{
nFNF_Effect = VFX_FNF_SUMMON_MONSTER_3;
sSummon=pick_creature(9);
if(sSummon=="")
{
switch (nRoll)
{
case 1:
sSummon = "NW_S_AIRELDER";
break;
case 2:
sSummon = "NW_S_WATERELDER";
break;
case 3:
sSummon = "NW_S_FIREELDER";
break;
}
}
}
}
else //WITHOUT THE ANIMAL DOMAIN
{
if(nSpellID == SPELL_SUMMON_CREATURE_I)
{
nFNF_Effect = VFX_FNF_SUMMON_MONSTER_1;
sSummon=pick_creature(1);
if(sSummon=="") sSummon = "NW_S_badgerdire";
}
else if(nSpellID == SPELL_SUMMON_CREATURE_II)
{
nFNF_Effect = VFX_FNF_SUMMON_MONSTER_1;
sSummon=pick_creature(2);
if(sSummon=="") sSummon = "NW_S_BOARDIRE";
}
else if(nSpellID == SPELL_SUMMON_CREATURE_III)
{
nFNF_Effect = VFX_FNF_SUMMON_MONSTER_1;
sSummon=pick_creature(3);
if(sSummon=="") sSummon = "NW_S_WOLFDIRE";
}
else if(nSpellID == SPELL_SUMMON_CREATURE_IV)
{
nFNF_Effect = VFX_FNF_SUMMON_MONSTER_2;
sSummon=pick_creature(4);
if(sSummon=="") sSummon = "NW_S_SPIDDIRE";
}
else if(nSpellID == SPELL_SUMMON_CREATURE_V)
{
nFNF_Effect = VFX_FNF_SUMMON_MONSTER_2;
sSummon=pick_creature(5);
if(sSummon=="") sSummon = "NW_S_beardire";
}
else if(nSpellID == SPELL_SUMMON_CREATURE_VI)
{
nFNF_Effect = VFX_FNF_SUMMON_MONSTER_2;
sSummon=pick_creature(6);
if(sSummon=="") sSummon = "NW_S_diretiger";
}
else if(nSpellID == SPELL_SUMMON_CREATURE_VII)
{
nFNF_Effect = VFX_FNF_SUMMON_MONSTER_3;
sSummon=pick_creature(7);
if(sSummon=="")
{
switch (nRoll)
{
case 1:
sSummon = "NW_S_AIRHUGE";
break;
case 2:
sSummon = "NW_S_WATERHUGE";
break;
case 3:
sSummon = "NW_S_FIREHUGE";
break;
}
}
}
else if(nSpellID == SPELL_SUMMON_CREATURE_VIII)
{
nFNF_Effect = VFX_FNF_SUMMON_MONSTER_3;
sSummon=pick_creature(8);
if(sSummon=="")
{
switch (nRoll)
{
case 1:
sSummon = "NW_S_AIRGREAT";
break;
case 2:
sSummon = "NW_S_WATERGREAT";
break;
case 3:
sSummon = "NW_S_FIREGREAT";
break;
}
}
}
else if(nSpellID == SPELL_SUMMON_CREATURE_IX)
{
nFNF_Effect = VFX_FNF_SUMMON_MONSTER_3;
sSummon=pick_creature(9);
if(sSummon=="")
{
switch (nRoll)
{
case 1:
sSummon = "NW_S_AIRELDER";
break;
case 2:
sSummon = "NW_S_WATERELDER";
break;
case 3:
sSummon = "NW_S_FIREELDER";
break;
}
}
}
}
//effect eVis = EffectVisualEffect(nFNF_Effect);
//ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eVis, GetSpellTargetLocation());
// Remove Invisibility on caster
effect invis = GetFirstEffect(OBJECT_SELF);
while (GetIsEffectValid(invis) && GetEffectType(invis) != EFFECT_TYPE_INVISIBILITY)
{
invis = GetNextEffect(OBJECT_SELF);
}
effect eSummonedMonster = EffectSummonCreature(sSummon, nFNF_Effect);
return eSummonedMonster;
}