Files
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

135 lines
3.5 KiB
C#

using System;
using System.Linq;
using Server;
using Server.Mobiles;
namespace Server.Items
{
public class EtherealSoulbinder : Item
{
public override int LabelNumber { get { return 1159167; } } // ethereal soulbinder
public double MaxSoulPoint { get; set; } = 100;
private double m_SoulPoint;
[CommandProperty(AccessLevel.GameMaster)]
public double SoulPoint
{
get
{
return m_SoulPoint;
}
set
{
if (value < 0)
value = 0;
else if (value > MaxSoulPoint)
value = MaxSoulPoint;
m_SoulPoint += value;
SetHue();
InvalidateProperties();
}
}
private void SetHue()
{
if (SoulPoint <= 0)
Hue = 0;
else if (SoulPoint <= 1)
Hue = 1910; // Meager
else if (SoulPoint <= 25)
Hue = 1916; // Grand
else if (SoulPoint <= 50)
Hue = 1914; // Exalted
else if (SoulPoint <= 90)
Hue = 1922; // Legendary
else
Hue = 1919; // Mythical
}
private int GetDescription()
{
if (SoulPoint <= 0)
return 1159177; // An Empty Soulbinder
else if (SoulPoint <= 1)
return 1159176; // Meager
else if (SoulPoint <= 25)
return 1159175; // Grand
else if (SoulPoint <= 50)
return 1159174; // Exalted
else if (SoulPoint <= 90)
return 1159173; // Legendary
else
return 1159172; // Mythical
}
[Constructable]
public EtherealSoulbinder()
: base(0xA1E7)
{
}
public EtherealSoulbinder(Serial serial)
: base(serial)
{
}
public override void GetProperties(ObjectPropertyList list)
{
base.GetProperties(list);
int desc = GetDescription();
if (desc == 1159177)
{
list.Add(1159177); // An Empty Soulbinder
}
else
{
list.Add(1159178, string.Format("#{0}", desc)); // Contains a ~1_TYPE~ Soul
}
}
public override void Serialize(GenericWriter writer)
{
base.Serialize(writer);
writer.Write((int)0); // version
writer.Write(m_SoulPoint);
}
public override void Deserialize(GenericReader reader)
{
base.Deserialize(reader);
int version = reader.ReadInt();
m_SoulPoint = reader.ReadDouble();
}
public static void Initialize()
{
EventSink.CreatureDeath += CreatureDeath;
}
public static void CreatureDeath(CreatureDeathEventArgs e)
{
var bc = e.Creature as BaseCreature;
var killer = e.Killer;
if (bc != null && bc.IsSoulbound && killer is PlayerMobile && killer.Backpack != null)
{
EtherealSoulbinder es = killer.Backpack.FindItemsByType<EtherealSoulbinder>().Where(x => x.SoulPoint < x.MaxSoulPoint).FirstOrDefault();
if (es != null)
{
es.SoulPoint += bc.HitsMax / 1000;
}
}
}
}
}