PRC8/nwn/trunk/smp/phs_s_greaseb.nss
Jaysyn904 5914ed2ab5 Updated Release Archive
Updated Release Archive.  Fixed Mage-killer prereqs.  Removed old LETO & ConvoCC related files.  Added organized spell scroll store.  Fixed Gloura spellbook. Various TLK fixes.  Reorganized Repo.  Removed invalid user folders. Added DocGen back in.
2023-08-22 10:00:21 -04:00

31 lines
1022 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*:://////////////////////////////////////////////
//:: Spell Name Grease: On Exit
//:: Spell FileName PHS_S_GreaseB
//:://////////////////////////////////////////////
//:: Spell Effects Applied / Notes
//:://////////////////////////////////////////////
Grease will knockdown creatures (falling them) each round.
The dexterity check replaces this text:
A creature can walk within or through the area of grease at half normal speed
with a DC 10 Balance check. Failure means it cant move that round (and must
then make a Reflex save or fall), while failure by 5 or more means it falls
(see the Balance skill for details).
Which only applies if they are doing ACTION_MOVETOPOINT.
On Exit:
- Removes the 50% (half speed) movement penalty.
//:://////////////////////////////////////////////
//:: Created By: Jasperre
//::////////////////////////////////////////////*/
#include "PHS_INC_SPELLS"
void main()
{
// Exit - remove effects
PHS_AOE_OnExitEffects(PHS_SPELL_GREASE);
}