PRC8_fork/trunk/spells/x0_s1_petrtouch.nss
Jaysyn904 1662218bb4 Initial upload.
Adding base PRC 4.19a files to repository.
2022-10-07 13:51:24 -04:00

20 lines
557 B
Plaintext

//::///////////////////////////////////////////////////
//:: X0_S1_PETRGAZE
//:: Petrification touch attack monster ability.
//:: Fortitude save (DC 15) or be turned to stone permanently.
//:: Copyright (c) 2002 Floodgate Entertainment
//:: Created By: Naomi Novik
//:: Created On: 11/14/2002
//::///////////////////////////////////////////////////
#include "prc_inc_spells"
void main()
{
object oTarget = PRCGetSpellTargetObject();
int nHitDice = GetHitDice(oTarget);
PRCDoPetrification(nHitDice, OBJECT_SELF, oTarget, GetSpellId(), 15);
}