Overwrite

Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
Unstable Kitsune
2023-11-28 23:20:26 -05:00
parent 3cd54811de
commit b918192e4e
11608 changed files with 2644205 additions and 47 deletions

View File

@@ -0,0 +1,59 @@
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();
}
}
}