- Talisman slayers fixed to account for inheritance. - Added repond slayer vulnerability to Troglodyte. - Added overload for AOS.Damage with chaos damage support. - Corrected order of ML artifact award messages. - MageAI corrected to not meditate when already meditating. - Changed MageAI necro/mage bias to something more sensible. - Changed speed of most named ML mobs. - Skeletal steeds are now bleed immune. - Damage cap of 200 (before resists) added to fire breath attacks. - Damaging aura effect added to BaseCreature. - Necromancy skill added to several undead mobs. - The succubus special drain effect message no longer shows. - Corrected Sir Patrick's drain effect to account for LOS. - Added healing skill to Troglodytes. - Added named ML mobs for the Labyrinth, Painted Caves, Palace of Paroxysmus, Sanctuary and Twisted Weald. - Added changelings. - Disabled auto unequiping of weapons when meditating for nonplayers. - Added cast animations for players in wraith form, lich form and horrific beast. - Fixed Holy Light to account for LOS. - Fixed Animate Dead to account for inheritance. - Fixed Wither friendly fire issue when cast by monsters.
80 lines
1.8 KiB
C#
80 lines
1.8 KiB
C#
using System;
|
|
using Server;
|
|
using Server.Items;
|
|
|
|
namespace Server.Mobiles
|
|
{
|
|
[CorpseName( "a Rend corpse" )]
|
|
public class Rend : Reptalon
|
|
{
|
|
[Constructable]
|
|
public Rend()
|
|
{
|
|
Name = "Rend";
|
|
Hue = 0x455;
|
|
|
|
SetStr( 1261, 1284 );
|
|
SetDex( 363, 384 );
|
|
SetInt( 601, 642 );
|
|
|
|
SetHits( 5176, 6100 );
|
|
|
|
SetDamage( 26, 33 );
|
|
|
|
SetDamageType( ResistanceType.Physical, 100 );
|
|
SetDamageType( ResistanceType.Poison, 0 );
|
|
SetDamageType( ResistanceType.Energy, 0 );
|
|
|
|
SetResistance( ResistanceType.Physical, 75, 85 );
|
|
SetResistance( ResistanceType.Fire, 81, 94 );
|
|
SetResistance( ResistanceType.Cold, 46, 55 );
|
|
SetResistance( ResistanceType.Poison, 35, 44 );
|
|
SetResistance( ResistanceType.Energy, 45, 52 );
|
|
|
|
SetSkill( SkillName.Wrestling, 136.3, 150.3 );
|
|
SetSkill( SkillName.Tactics, 133.4, 141.4 );
|
|
SetSkill( SkillName.MagicResist, 90.9, 110.0 );
|
|
SetSkill( SkillName.Anatomy, 66.6, 72.0 );
|
|
|
|
Tamable = false;
|
|
|
|
/*
|
|
// TODO: Needs verification
|
|
if ( Paragon.ChestChance > Utility.RandomDouble() )
|
|
PackItem( new ParagonChest( Name, TreasureMapLevel ) );
|
|
*/
|
|
}
|
|
|
|
public override void GenerateLoot()
|
|
{
|
|
AddLoot( LootPack.AosUltraRich, 4 );
|
|
}
|
|
|
|
public override WeaponAbility GetWeaponAbility()
|
|
{
|
|
if ( Utility.RandomBool() )
|
|
return WeaponAbility.ParalyzingBlow;
|
|
else
|
|
return WeaponAbility.BleedAttack;
|
|
}
|
|
|
|
public Rend( Serial serial )
|
|
: base( serial )
|
|
{
|
|
}
|
|
|
|
public override void Serialize( GenericWriter writer )
|
|
{
|
|
base.Serialize( writer );
|
|
|
|
writer.Write( (int) 0 ); // version
|
|
}
|
|
|
|
public override void Deserialize( GenericReader reader )
|
|
{
|
|
base.Deserialize( reader );
|
|
|
|
int version = reader.ReadInt();
|
|
}
|
|
}
|
|
}
|