Jaysyn904 d1c309ae63 Initial commit
Initial commit
2024-09-13 09:10:39 -04:00

32 lines
1.0 KiB
Plaintext

//::///////////////////////////////////////////////
//:: Holy Water
//:: x0_s3_holy
//:: Copyright (c) 2002 Bioware Corp.
//:://////////////////////////////////////////////
/*
Grenade.
Fires at a target. If hit, the target takes
direct damage. If missed, all enemies within
an area of effect take splash damage.
HOWTO:
- If target is valid attempt a hit
- If miss then MISS
- If hit then direct damage
- If target is invalid or MISS
- have area of effect near target
- everyone in area takes splash damage
*/
//:://////////////////////////////////////////////
//:: Created By: Brent
//:: Created On: September 10, 2002
//:://////////////////////////////////////////////
//#include "X0_I0_SPELLS" //included in f_vampire_holy_h
#include "f_vampire_holy_h"
void main()
{
DoVampireGrenade(d4(2),1, VFX_IMP_HEAD_HOLY, VFX_FNF_LOS_NORMAL_20, DAMAGE_TYPE_DIVINE, RADIUS_SIZE_HUGE, OBJECT_TYPE_CREATURE | OBJECT_TYPE_DOOR | OBJECT_TYPE_PLACEABLE, RACIAL_TYPE_UNDEAD);
}