162 lines
4.2 KiB
C#
162 lines
4.2 KiB
C#
using System;
|
|
using Server.Items;
|
|
using Server.Network;
|
|
|
|
namespace Server.Mobiles
|
|
{
|
|
[CorpseName("a boura corpse")]
|
|
public class HighPlainsBoura : BaseCreature, ICarvable
|
|
{
|
|
private bool GatheredFur { get; set; }
|
|
|
|
[Constructable]
|
|
public HighPlainsBoura()
|
|
: base(AIType.AI_Animal, FightMode.Aggressor, 10, 1, 0.2, 0.4)
|
|
{
|
|
Name = "a high plains boura";
|
|
Body = 715;
|
|
|
|
SetStr(400, 435);
|
|
SetDex(90, 96);
|
|
SetInt(25, 30);
|
|
|
|
SetHits(555, 618);
|
|
|
|
SetDamage(20, 25);
|
|
|
|
SetDamageType(ResistanceType.Physical, 100);
|
|
|
|
SetResistance(ResistanceType.Physical, 50, 60);
|
|
SetResistance(ResistanceType.Fire, 35, 40);
|
|
SetResistance(ResistanceType.Cold, 10, 20);
|
|
SetResistance(ResistanceType.Poison, 30, 40);
|
|
SetResistance(ResistanceType.Energy, 30, 40);
|
|
|
|
SetSkill(SkillName.Anatomy, 95.2, 105.4);
|
|
SetSkill(SkillName.MagicResist, 60.7, 70.0);
|
|
SetSkill(SkillName.Tactics, 95.4, 105.7);
|
|
SetSkill(SkillName.Wrestling, 105.1, 115.3);
|
|
|
|
Tamable = true;
|
|
ControlSlots = 3;
|
|
MinTameSkill = 47.1;
|
|
|
|
Fame = 5000;
|
|
Karma = -5000;
|
|
|
|
VirtualArmor = 16;
|
|
|
|
SetSpecialAbility(SpecialAbility.TailSwipe);
|
|
SetSpecialAbility(SpecialAbility.ColossalBlow);
|
|
}
|
|
|
|
public HighPlainsBoura(Serial serial) : base(serial)
|
|
{
|
|
}
|
|
|
|
public override int Meat
|
|
{
|
|
get { return 10; }
|
|
}
|
|
|
|
public override int Hides
|
|
{
|
|
get { return 22; }
|
|
}
|
|
|
|
public override int DragonBlood { get { return 8; } }
|
|
|
|
public override HideType HideType
|
|
{
|
|
get { return HideType.Horned; }
|
|
}
|
|
|
|
public override FoodType FavoriteFood { get { return FoodType.FruitsAndVegies; } }
|
|
|
|
public override int Fur { get { return GatheredFur ? 0 : 30; } }
|
|
public override FurType FurType { get { return FurType.Yellow; } }
|
|
|
|
public bool Carve(Mobile from, Item item)
|
|
{
|
|
if (!GatheredFur)
|
|
{
|
|
var fur = new Fur(FurType, Fur);
|
|
|
|
if (from.Backpack == null || !from.Backpack.TryDropItem(from, fur, false))
|
|
{
|
|
from.SendLocalizedMessage(1112352); // You would not be able to place the gathered boura fur in your backpack!
|
|
fur.Delete();
|
|
}
|
|
else
|
|
{
|
|
from.SendLocalizedMessage(1112353); // You place the gathered boura fur into your backpack.
|
|
GatheredFur = true;
|
|
|
|
return true;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
PrivateOverheadMessage(MessageType.Regular, 0x3B2, 1112354, from.NetState); // The boura glares at you and will not let you shear its fur.
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
public override int GetIdleSound()
|
|
{
|
|
return 1507;
|
|
}
|
|
|
|
public override int GetAngerSound()
|
|
{
|
|
return 1504;
|
|
}
|
|
|
|
public override int GetHurtSound()
|
|
{
|
|
return 1506;
|
|
}
|
|
|
|
public override int GetDeathSound()
|
|
{
|
|
return 1505;
|
|
}
|
|
|
|
public override void OnDeath(Container c)
|
|
{
|
|
base.OnDeath(c);
|
|
|
|
if (!Controlled)
|
|
{
|
|
c.DropItem(new BouraSkin());
|
|
|
|
if (Utility.RandomDouble() <= 0.005)
|
|
{
|
|
c.DropItem(new BouraTailShield());
|
|
}
|
|
}
|
|
}
|
|
|
|
public override void Serialize(GenericWriter writer)
|
|
{
|
|
base.Serialize(writer);
|
|
writer.Write(2);
|
|
writer.Write(GatheredFur);
|
|
}
|
|
|
|
public override void Deserialize(GenericReader reader)
|
|
{
|
|
base.Deserialize(reader);
|
|
var version = reader.ReadInt();
|
|
|
|
if (version == 1)
|
|
reader.ReadDeltaTime();
|
|
else
|
|
{
|
|
GatheredFur = reader.ReadBool();
|
|
}
|
|
}
|
|
}
|
|
}
|