92 lines
2.6 KiB
Plaintext
92 lines
2.6 KiB
Plaintext
//::///////////////////////////////////////////////
|
|
//:: Blade Thrist
|
|
//:: X2_S0_BldeThst
|
|
//:: Copyright (c) 2001 Bioware Corp.
|
|
//:://////////////////////////////////////////////
|
|
/*
|
|
Grants a +3 enhancement bonus to a slashing weapon
|
|
*/
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Andrew Nobbs
|
|
//:: Created On: Nov 27, 2002
|
|
//:://////////////////////////////////////////////
|
|
//:: Updated by Andrew Nobbs May 08, 2003
|
|
//:: 2003-07-07: Stacking Spell Pass, Georg Zoeller
|
|
//:: 2003-07-21: Complete Rewrite to make use of Item Property System
|
|
/*
|
|
Patch 1.70
|
|
|
|
- signal event never fired
|
|
- VFX added if cast on weapon on ground
|
|
*/
|
|
|
|
#include "70_inc_spells"
|
|
#include "x2_i0_spells"
|
|
#include "x2_inc_spellhook"
|
|
|
|
void AddEnhanceEffectToWeapon(object oMyWeapon, float fDuration)
|
|
{
|
|
IPSafeAddItemProperty(oMyWeapon, ItemPropertyEnhancementBonus(3), fDuration, X2_IP_ADDPROP_POLICY_REPLACE_EXISTING, FALSE, TRUE);
|
|
}
|
|
|
|
void main()
|
|
{
|
|
/*
|
|
Spellcast Hook Code
|
|
Added 2003-07-07 by Georg Zoeller
|
|
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
|
|
|
|
//Declare major variables
|
|
spellsDeclareMajorVariables();
|
|
effect eVis = EffectVisualEffect(VFX_IMP_SUPER_HEROISM);
|
|
effect eDur = EffectVisualEffect(VFX_DUR_CESSATE_POSITIVE);
|
|
int nDuration = 2 * spell.Level;
|
|
|
|
object oMyWeapon = IPGetTargetedOrEquippedMeleeWeapon();
|
|
object oPossessor = GetItemPossessor(oMyWeapon);
|
|
|
|
if (spell.Meta == METAMAGIC_EXTEND)
|
|
{
|
|
nDuration = nDuration * 2; //Duration is +100%
|
|
}
|
|
|
|
if(GetIsObjectValid(oMyWeapon))
|
|
{
|
|
//if the possessor isn't valid, nothing should happen
|
|
SignalEvent(oPossessor, EventSpellCastAt(spell.Caster, spell.Id, FALSE));
|
|
|
|
//if (GetSlashingWeapon(oMyWeapon))
|
|
//{
|
|
if(GetIsObjectValid(oPossessor))
|
|
{
|
|
ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oPossessor);
|
|
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eDur, oPossessor, RoundsToSeconds(nDuration));
|
|
}
|
|
else
|
|
{
|
|
ApplyEffectAtLocation(DURATION_TYPE_INSTANT, eVis, spell.Loc);
|
|
}
|
|
AddEnhanceEffectToWeapon(oMyWeapon, RoundsToSeconds(nDuration));
|
|
/*}
|
|
else
|
|
{
|
|
FloatingTextStrRefOnCreature(83621, spell.Caster); // not a slashing weapon
|
|
} */
|
|
}
|
|
else
|
|
{
|
|
FloatingTextStrRefOnCreature(83615, spell.Caster);
|
|
}
|
|
}
|