ModernUO/Scripts/Mobiles/Monsters/ML/Labyrinth/Pyre.cs
eos a0e13d5007 - Future ML craftables added to the special repair list until the craft system is updated.
- Items can now be repaired while wearing them.
- Items can now be fortified while wearing them.
- Fixed repair deed messages not sending.
- Sound effect added to powder of fortifying.
- Map issue for fishing and SOSs fixed, where it would not allow fishing in empty resource banks when not on the target SOS map.
- Added proximity spawner.
- Improved spawner mouseover menu, now also shows types set on the spawner which are not yet spawned.
- Fixed spawners only deleting half of their spawned objects when deleted.
- Added the ability to set TextDefinition objects in the props gump.
- WaitTeleporters now round delays to nearest in the remaining time messages.
- Updated TextDefinition to be more usable; made it parsable from string and added safe serialization/deserialization methods.
- Improved checking whether a mobile can flee.
- Monsters that give ML minor artifacts will no longer flee when low on hits (like paragons).
- Monsters that give ML minor artifacts will no longer spawn as paragon.
- Fixed issue with pets not eating certain foods.
- AI and targeting fixes for Red Death, Pyre and Swoop.
- Fame and karma added to Rend.
- Swoop corrected to have 0 karma.
- Stat and skill tweaks for Putrefier.
- Changelings will no longer show their fame title when morphed.
- Added travel restrictions for ML dungeons.
- Fixed issue of travel restriction message displaying twice.
- Monster teleporting is no longer affected by region travel restrictions.
2012-03-07 18:59:52 +00:00

85 lines
2 KiB
C#

using System;
using System.Collections;
using System.Collections.Generic;
using Server;
using Server.Items;
using Server.Spells;
namespace Server.Mobiles
{
[CorpseName( "a Pyre corpse" )]
public class Pyre : Phoenix
{
[Constructable]
public Pyre()
{
Name = "Pyre";
Hue = 0x489;
FightMode = FightMode.Closest;
SetStr( 605, 611 );
SetDex( 391, 519 );
SetInt( 669, 818 );
SetHits( 1783, 1939 );
SetDamage( 30 );
SetDamageType( ResistanceType.Physical, 50 );
SetDamageType( ResistanceType.Fire, 50 );
SetResistance( ResistanceType.Physical, 65 );
SetResistance( ResistanceType.Fire, 72, 75 );
SetResistance( ResistanceType.Poison, 36, 41 );
SetResistance( ResistanceType.Energy, 50, 51 );
SetSkill( SkillName.Wrestling, 121.9, 130.6 );
SetSkill( SkillName.Tactics, 114.4, 117.4 );
SetSkill( SkillName.MagicResist, 147.7, 153.0 );
SetSkill( SkillName.Poisoning, 122.8, 124.0 );
SetSkill( SkillName.Magery, 121.8, 127.8 );
SetSkill( SkillName.EvalInt, 103.6, 117.0 );
SetSkill( SkillName.Meditation, 100.0, 110.0 );
Fame = 21000;
Karma = -21000;
}
public override void GenerateLoot()
{
AddLoot( LootPack.AosUltraRich, 4 );
}
public override WeaponAbility GetWeaponAbility()
{
if ( Utility.RandomBool() )
return WeaponAbility.ParalyzingBlow;
else
return WeaponAbility.BleedAttack;
}
public override bool GivesMLMinorArtifact{ get{ return true; } }
public override int TreasureMapLevel{ get{ return 5; } }
public override bool HasAura{ get{ return true; } }
public Pyre( 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();
}
}
}