RATDOG/_module/nss/ra_t1_yelmold1.nss
Jaysyn904 a7b2d66126 Fixin' Fungus
Made the Violet Fungus, Shrieker & Yellow Mold more like PnP.
2021-09-27 16:47:05 -04:00

31 lines
870 B
Plaintext

//::///////////////////////////////////////////////
//:: Yellow Mold
//:: RA_T1_YelMold1.nss
//:: Copyright (c) 2021 Project RATDOG
//:://////////////////////////////////////////////
/*
Creates a 5m poison radius gas cloud that
lasts for 20 rounds and poisons all creatures
entering the area with Yellow Mold Spores
*/
//:://////////////////////////////////////////////
//:: Created By: Jaysyn
//:: Created On: Sept 27, 2021
//:://////////////////////////////////////////////
void main()
{
object oTarget;
effect ePoison = EffectPoison(46); // Yellow Mold Spores
oTarget = GetFirstInPersistentObject();
while(GetIsObjectValid(oTarget))
{
if(!GetIsReactionTypeFriendly(oTarget))
{
ApplyEffectToObject(DURATION_TYPE_INSTANT, ePoison, oTarget);
}
oTarget = GetNextInPersistentObject();
}
}