Initial upload. PRC8 has been added. Module compiles, PRC's default AI & treasure scripts have been integrated. Started work on top hak for SLA / Ability / Scripting modifications.
55 lines
1.1 KiB
Plaintext
55 lines
1.1 KiB
Plaintext
////::///////////////////////////////////////////////
|
|
//:: Magic Fang
|
|
//:: x0_s0_magicfang.nss
|
|
//:: Copyright (c) 2002 Bioware Corp.
|
|
//:://////////////////////////////////////////////
|
|
/*
|
|
+1 enhancement bonus to attack and damage rolls.
|
|
Also applys damage reduction +1; this allows the creature
|
|
to strike creatures with +1 damage reduction.
|
|
|
|
Checks to see if a valid summoned monster or animal companion
|
|
exists to apply the effects to. If none exists, then
|
|
the spell is wasted.
|
|
|
|
*/
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Brent Knowles
|
|
//:: Created On: September 6, 2002
|
|
//:://////////////////////////////////////////////
|
|
//:: VFX Pass By:
|
|
#include "X0_I0_SPELLS"
|
|
|
|
|
|
|
|
#include "x2_inc_spellhook"
|
|
|
|
void main()
|
|
{
|
|
|
|
/*
|
|
Spellcast Hook Code
|
|
Added 2003-06-20 by Georg
|
|
If you want to make changes to all spells,
|
|
check x2_inc_spellhook.nss to find out more
|
|
|
|
*/
|
|
|
|
if (!X2PreSpellCastCode())
|
|
{
|
|
// If code within the PreSpellCastHook (i.e. UMD) reports FALSE, do not run this spell
|
|
return;
|
|
}
|
|
|
|
// End of Spell Cast Hook
|
|
|
|
|
|
DoMagicFang(1, DAMAGE_POWER_PLUS_ONE);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|