ModernUO/Projects/UOContent/Mobiles/Animals/Mounts/FrenziedOstard.cs
mark1145 053dbcbad0
fix: Fixes ignoring mobs, champions, party crash, slayer rarity, boat speedhack, etc (#1222)
* Movie ignore mobiles to Mobile class
* Allow necromancer familiars to ignore mobiles
* ChampionSpawn should not quietly fail when creating new spawn
* Fix client party crash bug: 2 people partied, the leader logs out, other client is hung
* Fix spellbooks creating with magery/meditation only and creating magery multiple times
* Fix BaseRunicTool.GetRandomSlayer() creating more undead slayers than intended
* Do not allow players to dismount each other whilst mounted
* Fix AOS onwards damage increase tooltip and wrong formula in AOS
* Fix monsters killing other monster revenants + animate dead should not attack player pets + other animates
* Fix fire steed having loot pack added twice
* Fix oaks spawn not able to create Unicorns + Kirins via Activator.CreateInstace() due to constructor having name as parametr
* Fix ignoreMobiles flag not propagated to client for non-players.
* Fix harrower tents not leeching from players
* Fix boats speedhacking around the map
* Fix bless, agility etc. not renewing duration
* Fix reveal always worked
* Fix empty constructor for steeds so they don't throw now.
2022-10-31 22:16:50 -07:00

66 lines
1.8 KiB
C#

namespace Server.Mobiles
{
public class FrenziedOstard : BaseMount
{
public override string DefaultName => "a frenzied ostard";
[Constructible]
public FrenziedOstard() : base(0xDA, 0x3EA4, AIType.AI_Melee)
{
Hue = Race.Human.RandomHairHue() | 0x8000;
BaseSoundID = 0x275;
SetStr(94, 170);
SetDex(96, 115);
SetInt(6, 10);
SetHits(71, 110);
SetMana(0);
SetDamage(11, 17);
SetDamageType(ResistanceType.Physical, 100);
SetResistance(ResistanceType.Physical, 25, 30);
SetResistance(ResistanceType.Fire, 10, 15);
SetResistance(ResistanceType.Poison, 20, 25);
SetResistance(ResistanceType.Energy, 20, 25);
SetSkill(SkillName.MagicResist, 75.1, 80.0);
SetSkill(SkillName.Tactics, 79.3, 94.0);
SetSkill(SkillName.Wrestling, 79.3, 94.0);
Fame = 1500;
Karma = -1500;
Tamable = true;
ControlSlots = 1;
MinTameSkill = 77.1;
}
public FrenziedOstard(Serial serial) : base(serial)
{
}
public override string CorpseName => "an ostard corpse";
public override int Meat => 3;
public override FoodType FavoriteFood => FoodType.Meat | FoodType.Fish | FoodType.Eggs | FoodType.FruitsAndVegies;
public override PackInstinct PackInstinct => PackInstinct.Ostard;
public override void Serialize(IGenericWriter writer)
{
base.Serialize(writer);
writer.Write(0); // version
}
public override void Deserialize(IGenericReader reader)
{
base.Deserialize(reader);
var version = reader.ReadInt();
}
}
}