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.
74 lines
2.1 KiB
Plaintext
74 lines
2.1 KiB
Plaintext
/*
|
|
----------------
|
|
Keen Weapon
|
|
|
|
true_utr_keen
|
|
----------------
|
|
|
|
5/8/06 by Stratovarius
|
|
*/ /** @file
|
|
|
|
Keen Weapon
|
|
|
|
Level: Crafted Tool 1
|
|
Range: 30 feet
|
|
Target: One Weapon (Or Possessor)
|
|
Duration: 5 Rounds
|
|
Spell Resistance: No
|
|
Metautterances: Extend
|
|
|
|
Your words make a weapon shine with silver potency, capable of dealing more punishing blows than normal.
|
|
The target weapon becomes Keen.
|
|
*/
|
|
|
|
#include "true_inc_trufunc"
|
|
#include "true_utterhook"
|
|
//#include "prc_alterations"
|
|
|
|
void main()
|
|
{
|
|
/*
|
|
Spellcast Hook Code
|
|
Added 2006-7-19 by Stratovarius
|
|
If you want to make changes to all utterances
|
|
check true_utterhook to find out more
|
|
|
|
*/
|
|
|
|
if (!TruePreUtterCastCode())
|
|
{
|
|
// If code within the PreUtterCastHook (i.e. UMD) reports FALSE, do not run this spell
|
|
return;
|
|
}
|
|
|
|
// End of Spell Cast Hook
|
|
|
|
object oTrueSpeaker = OBJECT_SELF;
|
|
object oTarget = PRCGetSpellTargetObject();
|
|
oTarget = CraftedToolTarget(oTrueSpeaker, oTarget);
|
|
struct utterance utter = EvaluateUtterance(oTrueSpeaker, oTarget, METAUTTERANCE_EXTEND, LEXICON_CRAFTED_TOOL);
|
|
|
|
if(utter.bCanUtter)
|
|
{
|
|
// This is done so Speak Unto the Masses can read it out of the structure
|
|
utter.fDur = RoundsToSeconds(5);
|
|
if(utter.bExtend) utter.fDur *= 2;
|
|
// This utterance applies only to friends
|
|
utter.bFriend = TRUE;
|
|
// Used to Ignore SR in Speak Unto the Masses for friendly utterances.
|
|
utter.bIgnoreSR = TRUE;
|
|
|
|
// Keen
|
|
utter.ipIProp1 = ItemPropertyKeen();
|
|
IPSafeAddItemProperty(oTarget, utter.ipIProp1, utter.fDur, X2_IP_ADDPROP_POLICY_KEEP_EXISTING, FALSE, FALSE);
|
|
// eLink2 is used for Impact Effects (Damage)
|
|
utter.eLink2 = EffectVisualEffect(VFX_FNF_MAGIC_WEAPON);
|
|
|
|
// Impact Effects
|
|
SPApplyEffectToObject(DURATION_TYPE_INSTANT, utter.eLink2, GetItemPossessor(oTarget));
|
|
|
|
// Mark for the Law of Sequence. This only happens if the utterance succeeds, which is why its down here.
|
|
DoLawOfSequence(oTrueSpeaker, utter.nSpellId, utter.fDur);
|
|
}// end if - Successful utterance
|
|
}
|