167 lines
4.4 KiB
C#
167 lines
4.4 KiB
C#
using System;
|
|
|
|
namespace Server.Items
|
|
{
|
|
[Flipable(0x2328, 0x2329)]
|
|
public class Snowman : Item, IDyable
|
|
{
|
|
private string m_Title;
|
|
[Constructable]
|
|
public Snowman()
|
|
: this(Utility.RandomDyedHue(), GetRandomTitle())
|
|
{
|
|
}
|
|
|
|
[Constructable]
|
|
public Snowman(int hue)
|
|
: this(hue, GetRandomTitle())
|
|
{
|
|
}
|
|
|
|
[Constructable]
|
|
public Snowman(string title)
|
|
: this(Utility.RandomDyedHue(), title)
|
|
{
|
|
}
|
|
|
|
[Constructable]
|
|
public Snowman(int hue, string title)
|
|
: base(Utility.Random(0x2328, 2))
|
|
{
|
|
this.Weight = 10.0;
|
|
this.Hue = hue;
|
|
this.LootType = LootType.Blessed;
|
|
|
|
this.m_Title = title;
|
|
}
|
|
|
|
public Snowman(Serial serial)
|
|
: base(serial)
|
|
{
|
|
}
|
|
|
|
[CommandProperty(AccessLevel.GameMaster)]
|
|
public string Title
|
|
{
|
|
get
|
|
{
|
|
return this.m_Title;
|
|
}
|
|
set
|
|
{
|
|
this.m_Title = value;
|
|
this.InvalidateProperties();
|
|
}
|
|
}
|
|
public static string GetRandomTitle()
|
|
{
|
|
// All hail OSI staff
|
|
string[] titles = new string[]
|
|
{
|
|
/* 1 */ "Backflash",
|
|
/* 2 */ "Carbon",
|
|
/* 3 */ "Colbalistic",
|
|
/* 4 */ "Comforl",
|
|
/* 5 */ "Coppacchia",
|
|
/* 6 */ "Cyrus",
|
|
/* 7 */ "DannyB",
|
|
/* 8 */ "DJSoul",
|
|
/* 9 */ "DraconisRex",
|
|
/* 10 */ "Earia",
|
|
/* 11 */ "Foster",
|
|
/* 12 */ "Gonzo",
|
|
/* 13 */ "Haan",
|
|
/* 14 */ "Halona",
|
|
/* 15 */ "Hugo",
|
|
/* 16 */ "Hyacinth",
|
|
/* 17 */ "Imirian",
|
|
/* 18 */ "Jinsol",
|
|
/* 19 */ "Liciatia",
|
|
/* 20 */ "Loewen",
|
|
/* 21 */ "Loke",
|
|
/* 22 */ "Magnus",
|
|
/* 23 */ "Maleki",
|
|
/* 24 */ "Morpheus",
|
|
/* 25 */ "Obberron",
|
|
/* 26 */ "Odee",
|
|
/* 27 */ "Orbeus",
|
|
/* 28 */ "Pax",
|
|
/* 29 */ "Phields",
|
|
/* 30 */ "Pigpen",
|
|
/* 31 */ "Platinum",
|
|
/* 32 */ "Polpol",
|
|
/* 33 */ "Prume",
|
|
/* 34 */ "Quinnly",
|
|
/* 35 */ "Ragnarok",
|
|
/* 36 */ "Rend",
|
|
/* 37 */ "Roland",
|
|
/* 38 */ "RyanM",
|
|
/* 39 */ "Screach",
|
|
/* 40 */ "Seraph",
|
|
/* 41 */ "Silvani",
|
|
/* 42 */ "Sherbear",
|
|
/* 43 */ "SkyWalker",
|
|
/* 44 */ "Snark",
|
|
/* 45 */ "Sowl",
|
|
/* 46 */ "Spada",
|
|
/* 47 */ "Starblade",
|
|
/* 48 */ "Tenacious",
|
|
/* 49 */ "Tnez",
|
|
/* 50 */ "Wasia",
|
|
/* 51 */ "Zilo",
|
|
/* 52 */ "Zippy",
|
|
/* 53 */ "Zoer"
|
|
};
|
|
|
|
if (titles.Length > 0)
|
|
return titles[Utility.Random(titles.Length)];
|
|
|
|
return null;
|
|
}
|
|
|
|
public override void GetProperties(ObjectPropertyList list)
|
|
{
|
|
base.GetProperties(list);
|
|
|
|
if (this.m_Title != null)
|
|
list.Add(1062841, this.m_Title); // ~1_NAME~ the Snowman
|
|
}
|
|
|
|
public bool Dye(Mobile from, DyeTub sender)
|
|
{
|
|
if (this.Deleted)
|
|
return false;
|
|
|
|
this.Hue = sender.DyedHue;
|
|
|
|
return true;
|
|
}
|
|
|
|
public override void Serialize(GenericWriter writer)
|
|
{
|
|
base.Serialize(writer);
|
|
|
|
writer.Write((int)1); // version
|
|
|
|
writer.Write((string)this.m_Title);
|
|
}
|
|
|
|
public override void Deserialize(GenericReader reader)
|
|
{
|
|
base.Deserialize(reader);
|
|
|
|
int version = reader.ReadInt();
|
|
|
|
switch ( version )
|
|
{
|
|
case 1:
|
|
{
|
|
this.m_Title = reader.ReadString();
|
|
break;
|
|
}
|
|
}
|
|
|
|
Utility.Intern(ref this.m_Title);
|
|
}
|
|
}
|
|
} |