ModernUO/Scripts/Mobiles/Monsters/ML/Bedlam/MasterJonath.cs
eos 43e5982fbb - Terrible Hatchlings quest fixed to only reward SE weapons and armor.
- Slayer and opposition systems now account for inheritance.
- Added Satyrs to the fey opposition group.
- Added fey slayer vulnerability to cu sidhes.
- Added reptilian and dragon slayer vulnerabilities to reptalons.
- Various mage AI additions for necromancers. (Spirit speak for healing, pain spike and strangle for damage, automatic mage/necro bias by skill value.)
- Fixed a targeting issue not accounting for FightMode.Evil versus low karma targeting.
- Added melee damage bonus for Talisman killer properties.
- Added general ML loot for ML areas.
- Added ML minor artifact drops for named ML mobs.
- Added named ML mobs for Bedlam.
2012-02-26 05:11:25 +00:00

96 lines
2.1 KiB
C#

using System;
using Server;
using Server.Items;
namespace Server.Mobiles
{
[CorpseName( "a Master Jonath corpse" )]
public class MasterJonath : BoneMagi
{
[Constructable]
public MasterJonath()
{
Name = "Master Jonath";
Hue = 0x455;
SetStr( 109, 131 );
SetDex( 98, 110 );
SetInt( 232, 259 );
SetHits( 766, 920 );
SetDamage( 10, 15 );
SetDamageType( ResistanceType.Physical, 100 );
SetResistance( ResistanceType.Physical, 55, 60 );
SetResistance( ResistanceType.Fire, 43, 49 );
SetResistance( ResistanceType.Cold, 45, 80 );
SetResistance( ResistanceType.Poison, 41, 45 );
SetResistance( ResistanceType.Energy, 54, 55 );
SetSkill( SkillName.Wrestling, 80.5, 88.6 );
SetSkill( SkillName.Tactics, 88.5, 95.1 );
SetSkill( SkillName.MagicResist, 102.7, 102.9 );
SetSkill( SkillName.Magery, 100.0, 106.6 );
SetSkill( SkillName.EvalInt, 99.6, 106.9 );
SetSkill( SkillName.Necromancy, 100.0, 106.6 );
SetSkill( SkillName.SpiritSpeak, 99.6, 106.9 );
Fame = 18000;
Karma = -18000;
if ( Utility.RandomBool() )
PackNecroScroll( Utility.RandomMinMax( 5, 9 ) );
else
PackScroll( 4, 7 );
PackReg( 7 );
PackReg( 7 );
PackReg( 8 );
}
public override void GenerateLoot()
{
AddLoot( LootPack.AosUltraRich, 4 );
}
// TODO: Special move?
/*
// TODO: uncomment once added
public override void OnDeath( Container c )
{
base.OnDeath( c );
if ( Utility.RandomDouble() < 0.05 )
c.DropItem( new ParrotItem() );
if ( Utility.RandomDouble() < 0.15 )
c.DropItem( new DisintegratingThesisNotes() );
}
*/
public override bool GivesMLMinorArtifact{ get{ return true; } }
public override int TreasureMapLevel{ get{ return 5; } }
public MasterJonath( 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();
}
}
}