ModernUO/Projects/UOContent/Mobiles/Abilities/DestroyEquipment.cs

66 lines
2.2 KiB
C#

using Server.Collections;
using Server.Items;
namespace Server.Mobiles;
public class DestroyEquipment : MonsterAbilitySingleTarget
{
public override MonsterAbilityType AbilityType => MonsterAbilityType.DestroyEquipment;
public override MonsterAbilityTrigger AbilityTrigger => MonsterAbilityTrigger.GiveMeleeDamage;
public override double ChanceToTrigger => 0.05;
public virtual int AttackRange => 1;
protected override void OnTarget(MonsterAbilityTrigger trigger, BaseCreature source, Mobile defender)
{
using var queue = PooledRefQueue<Item>.Create();
for (var i = 0; i < defender.Items.Count; i++)
{
var item = defender.Items[i];
if (item.Deleted || item.LootType is LootType.Blessed or LootType.Newbied || item.BlessedFor != null)
{
continue;
}
if (Mobile.InsuranceEnabled && item.Insured)
{
continue;
}
// Late publish AOS, do not destroy equipment that mages use
if (item is IAosItem { Attributes.SpellChanneling: > 0 })
{
continue;
}
if (item is IDurability { MaxHitPoints: > 0 })
{
queue.Enqueue(item);
}
}
if (queue.Count == 0)
{
return;
}
source.DoHarmful(defender);
var toDestroy = queue.PeekRandom();
var name = toDestroy.Name?.Trim().DefaultIfNullOrEmpty(toDestroy.ItemData.Name);
// TODO: Is there supposed to be a special effect?
// TODO: Is there supposed to be a special sound?
toDestroy.Delete();
// Their ~1_NAME~ is destroyed by the attack.
defender.NonlocalOverheadMessage(MessageType.Regular, 0x3B2, 1080034, name);
// Your ~1_NAME~ is destroyed by the attack.
defender.LocalOverheadMessage(MessageType.Regular, 0x3B2, 1080035, name);
}
protected override bool CanEffectTarget(MonsterAbilityTrigger trigger, BaseCreature source, Mobile defender) =>
defender.Player && defender.AccessLevel == AccessLevel.Player && source.InRange(defender, AttackRange);
}