Files
abysmal-isle/Scripts/Scripts-master/Items/Armors/MarchNewMobiles/AFireDaemon.cs
Unstable Kitsune b918192e4e Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
2023-11-28 23:20:26 -05:00

60 lines
2.8 KiB
C#

using System;
using Server.Items;
namespace Server.Mobiles
{
[CorpseName( " corpse of a A Fire Daemon" )]
public class AFireDaemon : Daemon
{
[Constructable]
public AFireDaemon() : base()
{
Name = "A Fire Daemon";
Hue = 1174;
//Body = 9;
//BaseSoundID = 357;
SetStr( 98 );
SetDex( 111 );
SetInt( 87 );
SetHits( 256 );
SetDamage( 39 );
SetDamageType( ResistanceType.Physical, 5 );
SetDamageType( ResistanceType.Cold, 5 );
SetDamageType( ResistanceType.Fire, 80 );
SetDamageType( ResistanceType.Energy, 5 );
SetDamageType( ResistanceType.Poison, 5 );
SetResistance( ResistanceType.Physical, 25 );
SetResistance( ResistanceType.Cold, 25 );
SetResistance( ResistanceType.Fire, 100 );
SetResistance( ResistanceType.Energy, 25 );
SetResistance( ResistanceType.Poison, 25 );
Tamable = true;
Fame = 1000;
Karma = -1500;
VirtualArmor = 30;
PackGold( 1000, 1000 );
}
public override bool AutoDispel{ get{ return true; } }
public AFireDaemon( Serial serial ) : base( serial )
{
}
public override void Serialize( GenericWriter writer )
{
base.Serialize( writer );
writer.Write( (int) 0 );
}
public override void Deserialize( GenericReader reader )
{
base.Deserialize( reader );
int version = reader.ReadInt();
}
}
}