### Summary - [X] Lightning arrow no longer allows SDI - [X] Lightning arrow now proc's even without arrows - [X] Fixed NPE with lightning arrow when a monster is already killed.
45 lines
1.5 KiB
C#
45 lines
1.5 KiB
C#
namespace Server.Items
|
|
{
|
|
public class SerpentArrow : WeaponAbility
|
|
{
|
|
public override int BaseMana => 25;
|
|
|
|
// Serpent arrow is used only as secondary ability on "Elven composite longbow" so needed skill is always 60, but for sure we will use GetRequiredSecondarySkill
|
|
public override bool RequiresSecondarySkill(Mobile from) => true;
|
|
public override double GetRequiredSecondarySkill(Mobile from) => 60;
|
|
public override SkillName GetSecondarySkillName(Mobile from) => SkillName.Poisoning;
|
|
|
|
public override void OnHit(Mobile attacker, Mobile defender, int damage, WorldLocation worldLocation)
|
|
{
|
|
if (!Validate(attacker) || !CheckMana(attacker, true))
|
|
{
|
|
return;
|
|
}
|
|
|
|
ClearCurrentAbility(attacker);
|
|
|
|
int level;
|
|
|
|
if (attacker.InRange(defender, 2))
|
|
{
|
|
level = (attacker.Skills.Archery.Value + attacker.Skills.Poisoning.Value) switch
|
|
{
|
|
> 199.8 => 3,
|
|
> 170.2 => 2,
|
|
> 130.2 => 1,
|
|
_ => 0
|
|
};
|
|
}
|
|
else
|
|
{
|
|
level = 0;
|
|
}
|
|
|
|
defender.SendLocalizedMessage(1112369); // You have been poisoned by a lethal arrow!
|
|
defender.ApplyPoison(attacker, Poison.GetPoison(level));
|
|
|
|
defender.FixedParticles(0x374A, 10, 15, 5021, EffectLayer.Waist);
|
|
defender.PlaySound(0x474);
|
|
}
|
|
}
|
|
}
|