mirror of
https://github.com/ServUO/ServUO
synced 2026-08-11 20:23:04 -04:00
All loot pack items are now generated when the mobile is killed. Reworked monster stealing and begging. Various re-structuring and bug fixes. Co-authored-by: TrueUO <knight.daniel.r@gmail.com>
94 lines
2.6 KiB
C#
94 lines
2.6 KiB
C#
using Server.Items;
|
|
using Server.Misc;
|
|
|
|
namespace Server.Mobiles
|
|
{
|
|
[CorpseName("an orcish corpse")]
|
|
public class OrcCaptain : BaseCreature
|
|
{
|
|
[Constructable]
|
|
public OrcCaptain()
|
|
: base(AIType.AI_Melee, FightMode.Closest, 10, 1, 0.2, 0.4)
|
|
{
|
|
Name = NameList.RandomName("orc");
|
|
Body = 7;
|
|
BaseSoundID = 0x45A;
|
|
|
|
SetStr(111, 145);
|
|
SetDex(101, 135);
|
|
SetInt(86, 110);
|
|
|
|
SetHits(67, 87);
|
|
|
|
SetDamage(5, 15);
|
|
|
|
SetDamageType(ResistanceType.Physical, 100);
|
|
|
|
SetResistance(ResistanceType.Physical, 30, 35);
|
|
SetResistance(ResistanceType.Fire, 10, 20);
|
|
SetResistance(ResistanceType.Cold, 15, 25);
|
|
SetResistance(ResistanceType.Poison, 5, 10);
|
|
SetResistance(ResistanceType.Energy, 5, 10);
|
|
|
|
SetSkill(SkillName.MagicResist, 70.1, 85.0);
|
|
SetSkill(SkillName.Swords, 70.1, 95.0);
|
|
SetSkill(SkillName.Tactics, 85.1, 100.0);
|
|
|
|
Fame = 2500;
|
|
Karma = -2500;
|
|
}
|
|
|
|
public OrcCaptain(Serial serial)
|
|
: base(serial)
|
|
{
|
|
}
|
|
|
|
public override InhumanSpeech SpeechType => InhumanSpeech.Orc;
|
|
public override bool CanRummageCorpses => true;
|
|
public override int Meat => 1;
|
|
|
|
public override TribeType Tribe => TribeType.Orc;
|
|
|
|
public override void GenerateLoot()
|
|
{
|
|
AddLoot(LootPack.Meager, 2);
|
|
AddLoot(LootPack.LootItem<Yeast>(50.0));
|
|
AddLoot(LootPack.LootItem<StoutWhip>(5.0));
|
|
}
|
|
|
|
public override bool IsEnemy(Mobile m)
|
|
{
|
|
if (m.Player && m.FindItemOnLayer(Layer.Helm) is OrcishKinMask)
|
|
return false;
|
|
|
|
return base.IsEnemy(m);
|
|
}
|
|
|
|
public override void AggressiveAction(Mobile aggressor, bool criminal)
|
|
{
|
|
base.AggressiveAction(aggressor, criminal);
|
|
|
|
Item item = aggressor.FindItemOnLayer(Layer.Helm);
|
|
|
|
if (item is OrcishKinMask)
|
|
{
|
|
AOS.Damage(aggressor, 50, 0, 100, 0, 0, 0);
|
|
item.Delete();
|
|
aggressor.FixedParticles(0x36BD, 20, 10, 5044, EffectLayer.Head);
|
|
aggressor.PlaySound(0x307);
|
|
}
|
|
}
|
|
|
|
public override void Serialize(GenericWriter writer)
|
|
{
|
|
base.Serialize(writer);
|
|
writer.Write(0);
|
|
}
|
|
|
|
public override void Deserialize(GenericReader reader)
|
|
{
|
|
base.Deserialize(reader);
|
|
int version = reader.ReadInt();
|
|
}
|
|
}
|
|
}
|