PRC8/nwn/nwnprc/trunk/spells/sp_detect_good.nss
Jaysyn904 6ec137a24e Updated AMS marker feats
Updated AMS marker feats.  Removed arcane & divine marker feats.  Updated Dread Necromancer for epic progression. Updated weapon baseitem models.  Updated new weapons for crafting & npc equip.
 Updated prefix.  Updated release archive.
2024-02-11 14:01:05 -05:00

75 lines
2.5 KiB
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.

/*
Detect Evil
Divination
Level: Clr 1, Rgr 2
Components: V, S, DF
Casting Time: 1 action
Range: 60 ft.
Area: Quarter circle emanating from you
to the extreme of the range
Duration: Concentration, up to 10
minutes/level (D)
Saving Throw: None
Spell Resistance: No
You can sense the presence of evil. The amount of information revealed depends
on how long you study a particular area or subject:
1st Round: Presence or absence of evil.
2nd Round: Number of evil auras (creatures, objects, or spells) in the area and
the strength of the strongest evil aura present. If you are of good alignment, the strongest evil auras strength is
"overwhelming" (see below), and the strength is at least twice your character
level, you are stunned for 1 round and the spell ends. While you are stunned, you
cant act, you lose any Dexterity bonus to AC, and attackers gain +2 bonuses to attack
you.
3rd Round: The strength and location of each aura. If an aura is outside your line of
sight, then you discern its direction but not its exact location.
Aura Strength: An auras evil power and strength depend on the type of evil
creature or object that youre detecting and its HD, caster level, or (in the case of a
cleric) class level.
Creature/Object Evil Power
Evil creature HD / 5
Undead creature HD / 2
Evil elemental HD / 2
Evil outsider HD
Cleric of an evil deity Caster Level
Evil Power Aura Strength
Lingering Dim
1 or less Faint
24 Moderate
510 Strong
11+ Overwhelming
If an aura falls into more than one strength category, the spell indicates the stronger of
the two.
Remember that animals, traps, poisons, and other potential perils are not evil; this
spell does not detect them.
Note: Each round, you can turn to detect things in a new area but if you move
more than 2 meters the spell ends. The spell can penetrate barriers, but 1 foot
of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt
blocks it.
*/
#include "prc_inc_s_det"
void main()
{
if(!X2PreSpellCastCode()) return;
PRCSetSchool(SPELL_SCHOOL_DIVINATION);
object oCaster = OBJECT_SELF;
int nLevel = PRCGetCasterLevel(oCaster);
float fDuration = TurnsToSeconds(nLevel) * 10;
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectVisualEffect(VFX_DUR_DETECT), oCaster, fDuration);
DetectAlignmentRound(0, GetLocation(oCaster), ALIGNMENT_GOOD, -1, GetStringByStrRef(4959)/*"good"*/, VFX_BEAM_HOLY);
PRCSetSchool();
}