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,74 @@
// Created by Script Creator
using System;
using Server.Items;
namespace Server.Mobiles
{
[CorpseName( " corpse of a Frost Orc" )]
public class FrostOrc : OrcishMage
{
[Constructable]
public FrostOrc() : base()
{
Name = "Frost Orc";
Hue = 1153;
//Body = 140; // Uncomment these lines and input values
//BaseSoundID = 0x45A; // To use your own custom body and sound.
SetStr( 100 );
SetDex( 200 );
SetInt( 500 );
SetHits( 400 );
SetDamage( 50 );
SetDamageType( ResistanceType.Physical, 100 );
SetDamageType( ResistanceType.Cold, 100 );
SetDamageType( ResistanceType.Fire, 0 );
SetDamageType( ResistanceType.Energy, 0 );
SetDamageType( ResistanceType.Poison, 100 );
SetResistance( ResistanceType.Physical, 100 );
SetResistance( ResistanceType.Cold, 100 );
SetResistance( ResistanceType.Fire, 0 );
SetResistance( ResistanceType.Energy, 0 );
SetResistance( ResistanceType.Poison, 100 );
Fame = 500;
Karma = -5000;
VirtualArmor = 70;
switch ( Utility.Random( 10 ))
{
case 0: AddItem( new RandomSnowGlobeDeed() ); break;
}
}
public override void GenerateLoot()
{
PackGold( 250, 500 );
PackItem( new Longsword() );
}
public override bool AutoDispel{ get{ return true; } }
public override bool BardImmune{ get{ return true; } }
public override bool Unprovokable{ get{ return true; } }
public override Poison HitPoison{ get{ return Poison. Deadly ; } }
public FrostOrc( 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();
}
}
}