Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
93
Scripts/Mobiles/Normal/Spectre.cs
Normal file
93
Scripts/Mobiles/Normal/Spectre.cs
Normal file
@@ -0,0 +1,93 @@
|
||||
using System;
|
||||
using Server.Items;
|
||||
|
||||
namespace Server.Mobiles
|
||||
{
|
||||
[CorpseName("a ghostly corpse")]
|
||||
public class Spectre : BaseCreature
|
||||
{
|
||||
[Constructable]
|
||||
public Spectre()
|
||||
: base(AIType.AI_Mage, FightMode.Closest, 10, 1, 0.2, 0.4)
|
||||
{
|
||||
this.Name = "a spectre";
|
||||
this.Body = 26;
|
||||
this.Hue = 0x4001;
|
||||
this.BaseSoundID = 0x482;
|
||||
|
||||
this.SetStr(76, 100);
|
||||
this.SetDex(76, 95);
|
||||
this.SetInt(36, 60);
|
||||
|
||||
this.SetHits(46, 60);
|
||||
|
||||
this.SetDamage(7, 11);
|
||||
|
||||
this.SetDamageType(ResistanceType.Physical, 50);
|
||||
this.SetDamageType(ResistanceType.Cold, 50);
|
||||
|
||||
this.SetResistance(ResistanceType.Physical, 25, 30);
|
||||
this.SetResistance(ResistanceType.Cold, 15, 25);
|
||||
this.SetResistance(ResistanceType.Poison, 10, 20);
|
||||
|
||||
this.SetSkill(SkillName.EvalInt, 55.1, 70.0);
|
||||
this.SetSkill(SkillName.Magery, 55.1, 70.0);
|
||||
this.SetSkill(SkillName.MagicResist, 55.1, 70.0);
|
||||
this.SetSkill(SkillName.Tactics, 45.1, 60.0);
|
||||
this.SetSkill(SkillName.Wrestling, 45.1, 55.0);
|
||||
|
||||
this.Fame = 4000;
|
||||
this.Karma = -4000;
|
||||
|
||||
this.VirtualArmor = 28;
|
||||
|
||||
this.PackReg(10);
|
||||
}
|
||||
|
||||
public Spectre(Serial serial)
|
||||
: base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
public override bool BleedImmune
|
||||
{
|
||||
get
|
||||
{
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
public override TribeType Tribe { get { return TribeType.Undead; } }
|
||||
|
||||
public override OppositionGroup OppositionGroup
|
||||
{
|
||||
get
|
||||
{
|
||||
return OppositionGroup.FeyAndUndead;
|
||||
}
|
||||
}
|
||||
public override Poison PoisonImmune
|
||||
{
|
||||
get
|
||||
{
|
||||
return Poison.Lethal;
|
||||
}
|
||||
}
|
||||
public override void GenerateLoot()
|
||||
{
|
||||
this.AddLoot(LootPack.Meager);
|
||||
}
|
||||
|
||||
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();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user