* Removes scaled speed by dex for monsters * Changes scaled speed by dex for pets (HS+ expansion) to be 400ms -> 100ms between 50 -> 200 dex * Removes speed changes that were broken for various mobs * Combines "Legacy" speed and renames the class to `NPCSpeeds` * Creates speed "classes" (slow, medium, fast, very fast) * Introduces a new overridable property `SpeedClass`. Register a new speed class using `NPCSpeeds.Register()` and then set the speed class to bulk/mass apply speeds. Order of speed determination: 1. SpeedMod 2. SpeedClass property (not null) 3. SpeedClass entry in Data\npc-speeds.json for that type 4. "Fast" (200ms Active, 400ms Passive)
38 lines
1.1 KiB
C#
38 lines
1.1 KiB
C#
namespace Server.Mobiles
|
|
{
|
|
public class SilverSteed : BaseMount
|
|
{
|
|
[Constructible]
|
|
public SilverSteed(string name = "a silver steed") : base(name, 0x75, 0x3EA8, AIType.AI_Animal, FightMode.Aggressor)
|
|
{
|
|
InitStats(Utility.Random(50, 30), Utility.Random(50, 30), 10);
|
|
Skills.MagicResist.Base = 25.0 + Utility.RandomDouble() * 5.0;
|
|
Skills.Wrestling.Base = 35.0 + Utility.RandomDouble() * 10.0;
|
|
Skills.Tactics.Base = 30.0 + Utility.RandomDouble() * 15.0;
|
|
|
|
ControlSlots = 1;
|
|
Tamable = true;
|
|
MinTameSkill = 103.1;
|
|
}
|
|
|
|
public SilverSteed(Serial serial) : base(serial)
|
|
{
|
|
}
|
|
|
|
public override string CorpseName => "a silver steed corpse";
|
|
|
|
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();
|
|
}
|
|
}
|
|
}
|