* 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.
70 lines
1.9 KiB
C#
70 lines
1.9 KiB
C#
namespace Server.Mobiles
|
|
{
|
|
public class Ridgeback : BaseMount
|
|
{
|
|
public override string DefaultName => "a ridgeback";
|
|
|
|
[Constructible]
|
|
public Ridgeback() : base(187, 0x3EBA, AIType.AI_Animal, FightMode.Aggressor)
|
|
{
|
|
BaseSoundID = 0x3F3;
|
|
|
|
SetStr(58, 100);
|
|
SetDex(56, 75);
|
|
SetInt(16, 30);
|
|
|
|
SetHits(41, 54);
|
|
SetMana(0);
|
|
|
|
SetDamage(3, 5);
|
|
|
|
SetDamageType(ResistanceType.Physical, 100);
|
|
|
|
SetResistance(ResistanceType.Physical, 15, 25);
|
|
SetResistance(ResistanceType.Fire, 5, 10);
|
|
SetResistance(ResistanceType.Cold, 5, 10);
|
|
SetResistance(ResistanceType.Poison, 5, 10);
|
|
SetResistance(ResistanceType.Energy, 5, 10);
|
|
|
|
SetSkill(SkillName.MagicResist, 25.3, 40.0);
|
|
SetSkill(SkillName.Tactics, 29.3, 44.0);
|
|
SetSkill(SkillName.Wrestling, 35.1, 45.0);
|
|
|
|
Fame = 300;
|
|
Karma = 0;
|
|
|
|
Tamable = true;
|
|
ControlSlots = 1;
|
|
MinTameSkill = 83.1;
|
|
}
|
|
|
|
public Ridgeback(Serial serial) : base(serial)
|
|
{
|
|
}
|
|
|
|
public override string CorpseName => "a ridgeback corpse";
|
|
|
|
public override int Meat => 1;
|
|
public override int Hides => 12;
|
|
public override HideType HideType => HideType.Spined;
|
|
public override FoodType FavoriteFood => FoodType.FruitsAndVegies | FoodType.GrainsAndHay;
|
|
|
|
public override bool OverrideBondingReqs() => true;
|
|
|
|
public override double GetControlChance(Mobile m, bool useBaseSkill = false) => 1.0;
|
|
|
|
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();
|
|
}
|
|
}
|
|
}
|