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,34 +0,0 @@
/*:://////////////////////////////////////////////
//:: Monster Ability Name Allip Babble
//:: Monster Ability FileName SMP_A_Babble
//:://////////////////////////////////////////////
//:: In Game Spell desctiption
//:://////////////////////////////////////////////
Babble (Su): An allip constantly mutters and whines to itself, creating a
hypnotic effect. All sane creatures within 20 meters of the allip must succeed
on a DC 16 Will save or be affected as though by a hypnotism spell for 2d4
rounds. This is a sonic mind-affecting compulsion effect.
//:://////////////////////////////////////////////
//:: Spell Effects Applied / Notes
//:://////////////////////////////////////////////
Hypnotism for those in the area (heartbeat script).
Note: Anyone who saves against its effects are rendered immune to them
for the duration.
//:://////////////////////////////////////////////
//:: Created By: Jasperre
//::////////////////////////////////////////////*/
#include "PHS_INC_ABILITY"
void main()
{
// Create the AOE effect
effect eAOE = EffectAreaOfEffect(PHS_AOE_MOB_BABBLE);
// Supernatural effect
eAOE = SupernaturalEffect(eAOE);
// Place the effect on us forever.
ApplyEffectToObject(DURATION_TYPE_PERMANENT, eAOE, OBJECT_SELF);
}