Clear out experimental .35 files

Clear out experimental .35 files
This commit is contained in:
Jaysyn904
2024-02-11 13:04:14 -05:00
parent 2112b92e24
commit 618cd42b82
22356 changed files with 0 additions and 1248956 deletions

View File

@@ -1,40 +0,0 @@
/*:://////////////////////////////////////////////
//:: Spell Name Storm of Vengance On Exit
//:: Spell FileName PHS_S_StormVenB
//:://////////////////////////////////////////////
//:: In Game Spell desctiption
//:://////////////////////////////////////////////
On exit, we must remove the miss chances and consealment applied from this
spell.
//:://////////////////////////////////////////////
//:: Created By: Jasperre
//::////////////////////////////////////////////*/
#include "PHS_INC_SPELLS"
void main()
{
// Declare major variables
object oExiter = GetExitingObject();
// Remove all miss chance and consealments from this spell.
effect eCheck = GetFirstEffect(oExiter);
while(GetIsEffectValid(eCheck))
{
// Check spell Id
if(GetEffectSpellId(eCheck) == PHS_SPELL_STORM_OF_VENGEANCE)
{
// Check effect type and remove the right ones
switch(GetEffectType(eCheck))
{
case EFFECT_TYPE_CONCEALMENT:
case EFFECT_TYPE_MISS_CHANCE:
{
RemoveEffect(oExiter, eCheck);
}
break;
}
}
eCheck = GetNextEffect(oExiter);
}
}