Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
@@ -0,0 +1,57 @@
|
||||
using Server;
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class EpauletteBearingTheCrestOfBlackthorn1 : Cloak
|
||||
{
|
||||
public override bool IsArtifact { get { return true; } }
|
||||
|
||||
public override int LabelNumber { get { return 1123325; } } // Epaulette
|
||||
|
||||
[Constructable]
|
||||
public EpauletteBearingTheCrestOfBlackthorn1()
|
||||
{
|
||||
ReforgedSuffix = ReforgedSuffix.Blackthorn;
|
||||
ItemID = 0x9985;
|
||||
Attributes.BonusHits = 3;
|
||||
Attributes.BonusInt = 5;
|
||||
Hue = 2075;
|
||||
|
||||
Layer = Layer.OuterTorso;
|
||||
}
|
||||
|
||||
public EpauletteBearingTheCrestOfBlackthorn1(Serial serial)
|
||||
: base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
public override void Serialize(GenericWriter writer)
|
||||
{
|
||||
base.Serialize(writer);
|
||||
writer.Write(1);
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
int version = reader.ReadInt();
|
||||
|
||||
if (version == 0)
|
||||
{
|
||||
MaxHitPoints = 0;
|
||||
HitPoints = 0;
|
||||
|
||||
if (Layer != Layer.OuterTorso)
|
||||
{
|
||||
if (Parent is Mobile)
|
||||
{
|
||||
((Mobile)Parent).AddToBackpack(this);
|
||||
}
|
||||
|
||||
Layer = Layer.OuterTorso;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
using Server;
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class FancyDressBearingTheCrestOfBlackthorn1 : FancyDress
|
||||
{
|
||||
public override bool IsArtifact { get { return true; } }
|
||||
|
||||
[Constructable]
|
||||
public FancyDressBearingTheCrestOfBlackthorn1()
|
||||
: base()
|
||||
{
|
||||
ReforgedSuffix = ReforgedSuffix.Blackthorn;
|
||||
|
||||
Attributes.BonusHits = 3;
|
||||
Attributes.BonusInt = 5;
|
||||
Hue = 2075;
|
||||
}
|
||||
|
||||
public FancyDressBearingTheCrestOfBlackthorn1(Serial serial)
|
||||
: base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
public override void Serialize(GenericWriter writer)
|
||||
{
|
||||
base.Serialize(writer);
|
||||
writer.Write(1);
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
int version = reader.ReadInt();
|
||||
|
||||
if (version == 0)
|
||||
{
|
||||
MaxHitPoints = 0;
|
||||
HitPoints = 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
using Server;
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class FemaleKimonoBearingTheCrestOfBlackthorn1 : FemaleKimono
|
||||
{
|
||||
public override bool IsArtifact { get { return true; } }
|
||||
|
||||
[Constructable]
|
||||
public FemaleKimonoBearingTheCrestOfBlackthorn1()
|
||||
: base()
|
||||
{
|
||||
ReforgedSuffix = ReforgedSuffix.Blackthorn;
|
||||
Attributes.BonusHits = 3;
|
||||
Attributes.BonusInt = 5;
|
||||
Hue = 2075;
|
||||
}
|
||||
|
||||
public FemaleKimonoBearingTheCrestOfBlackthorn1(Serial serial)
|
||||
: base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
public override void Serialize(GenericWriter writer)
|
||||
{
|
||||
base.Serialize(writer);
|
||||
writer.Write(1);
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
int version = reader.ReadInt();
|
||||
|
||||
if (version == 0)
|
||||
{
|
||||
MaxHitPoints = 0;
|
||||
HitPoints = 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,59 @@
|
||||
using Server;
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class GargishEpauletteBearingTheCrestOfBlackthorn1 : Cloak
|
||||
{
|
||||
public override bool IsArtifact { get { return true; } }
|
||||
public override Race RequiredRace { get { return Race.Gargoyle; } }
|
||||
public override bool CanBeWornByGargoyles { get { return true; } }
|
||||
|
||||
public override int LabelNumber { get { return 1123326; } } // Gargish Epaulette
|
||||
|
||||
[Constructable]
|
||||
public GargishEpauletteBearingTheCrestOfBlackthorn1()
|
||||
{
|
||||
ReforgedSuffix = ReforgedSuffix.Blackthorn;
|
||||
ItemID = 0x9986;
|
||||
Attributes.BonusHits = 3;
|
||||
Attributes.BonusInt = 5;
|
||||
Hue = 2075;
|
||||
|
||||
Layer = Layer.OuterTorso;
|
||||
}
|
||||
|
||||
public GargishEpauletteBearingTheCrestOfBlackthorn1(Serial serial)
|
||||
: base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
public override void Serialize(GenericWriter writer)
|
||||
{
|
||||
base.Serialize(writer);
|
||||
writer.Write(1);
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
int version = reader.ReadInt();
|
||||
|
||||
if (version == 0)
|
||||
{
|
||||
MaxHitPoints = 0;
|
||||
HitPoints = 0;
|
||||
|
||||
if (Layer != Layer.OuterTorso)
|
||||
{
|
||||
if (Parent is Mobile)
|
||||
{
|
||||
((Mobile)Parent).AddToBackpack(this);
|
||||
}
|
||||
|
||||
Layer = Layer.OuterTorso;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
using Server;
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class GargishFancyBearingTheCrestOfBlackthorn1 : GargishFancyRobe
|
||||
{
|
||||
public override bool IsArtifact { get { return true; } }
|
||||
|
||||
[Constructable]
|
||||
public GargishFancyBearingTheCrestOfBlackthorn1()
|
||||
: base()
|
||||
{
|
||||
ReforgedSuffix = ReforgedSuffix.Blackthorn;
|
||||
Attributes.BonusHits = 3;
|
||||
Attributes.BonusInt = 5;
|
||||
Hue = 2075;
|
||||
}
|
||||
|
||||
public GargishFancyBearingTheCrestOfBlackthorn1(Serial serial)
|
||||
: base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
public override void Serialize(GenericWriter writer)
|
||||
{
|
||||
base.Serialize(writer);
|
||||
writer.Write(1);
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
int version = reader.ReadInt();
|
||||
|
||||
if (version == 0)
|
||||
{
|
||||
MaxHitPoints = 0;
|
||||
HitPoints = 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
using Server;
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class GargishRobeBearingTheCrestOfBlackthorn1 : GargishRobe
|
||||
{
|
||||
public override bool IsArtifact { get { return true; } }
|
||||
|
||||
[Constructable]
|
||||
public GargishRobeBearingTheCrestOfBlackthorn1()
|
||||
: base()
|
||||
{
|
||||
ReforgedSuffix = ReforgedSuffix.Blackthorn;
|
||||
Attributes.BonusHits = 3;
|
||||
Attributes.BonusInt = 5;
|
||||
Hue = 2075;
|
||||
}
|
||||
|
||||
public GargishRobeBearingTheCrestOfBlackthorn1(Serial serial)
|
||||
: base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
public override void Serialize(GenericWriter writer)
|
||||
{
|
||||
base.Serialize(writer);
|
||||
writer.Write(1);
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
int version = reader.ReadInt();
|
||||
|
||||
if (version == 0)
|
||||
{
|
||||
MaxHitPoints = 0;
|
||||
HitPoints = 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
using Server;
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class GildedDressBearingTheCrestOfBlackthorn1 : GildedDress
|
||||
{
|
||||
public override bool IsArtifact { get { return true; } }
|
||||
|
||||
[Constructable]
|
||||
public GildedDressBearingTheCrestOfBlackthorn1()
|
||||
: base()
|
||||
{
|
||||
ReforgedSuffix = ReforgedSuffix.Blackthorn;
|
||||
Attributes.BonusHits = 3;
|
||||
Attributes.BonusInt = 5;
|
||||
Hue = 2075;
|
||||
}
|
||||
|
||||
public GildedDressBearingTheCrestOfBlackthorn1(Serial serial)
|
||||
: base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
public override void Serialize(GenericWriter writer)
|
||||
{
|
||||
base.Serialize(writer);
|
||||
writer.Write(1);
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
int version = reader.ReadInt();
|
||||
|
||||
if (version == 0)
|
||||
{
|
||||
MaxHitPoints = 0;
|
||||
HitPoints = 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,47 @@
|
||||
using Server;
|
||||
using System;
|
||||
using Server.Engines.Craft;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
[Flipable(0x2684, 0x2683)]
|
||||
public class HoodedRobeBearingTheCrestOfBlackthorn1 : BaseOuterTorso, IRepairable
|
||||
{
|
||||
public CraftSystem RepairSystem { get { return DefTailoring.CraftSystem; } }
|
||||
public override int LabelNumber { get { return 1029863; } } // Hooded Robe
|
||||
public override bool IsArtifact { get { return true; } }
|
||||
|
||||
[Constructable]
|
||||
public HoodedRobeBearingTheCrestOfBlackthorn1()
|
||||
: base(0x2683)
|
||||
{
|
||||
ReforgedSuffix = ReforgedSuffix.Blackthorn;
|
||||
Attributes.BonusHits = 3;
|
||||
Attributes.BonusInt = 5;
|
||||
Hue = 2075;
|
||||
}
|
||||
|
||||
public HoodedRobeBearingTheCrestOfBlackthorn1(Serial serial)
|
||||
: base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
public override void Serialize(GenericWriter writer)
|
||||
{
|
||||
base.Serialize(writer);
|
||||
writer.Write(1);
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
int version = reader.ReadInt();
|
||||
|
||||
if (version == 0)
|
||||
{
|
||||
MaxHitPoints = 0;
|
||||
HitPoints = 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
using Server;
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class MaleKimonoBearingTheCrestOfBlackthorn1 : MaleKimono
|
||||
{
|
||||
public override bool IsArtifact { get { return true; } }
|
||||
|
||||
[Constructable]
|
||||
public MaleKimonoBearingTheCrestOfBlackthorn1()
|
||||
: base()
|
||||
{
|
||||
ReforgedSuffix = ReforgedSuffix.Blackthorn;
|
||||
Attributes.BonusHits = 3;
|
||||
Attributes.BonusInt = 5;
|
||||
Hue = 2075;
|
||||
}
|
||||
|
||||
public MaleKimonoBearingTheCrestOfBlackthorn1(Serial serial)
|
||||
: base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
public override void Serialize(GenericWriter writer)
|
||||
{
|
||||
base.Serialize(writer);
|
||||
writer.Write(1);
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
int version = reader.ReadInt();
|
||||
|
||||
if (version == 0)
|
||||
{
|
||||
MaxHitPoints = 0;
|
||||
HitPoints = 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
using Server;
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class PlainDressBearingTheCrestOfBlackthorn1 : PlainDress
|
||||
{
|
||||
public override bool IsArtifact { get { return true; } }
|
||||
|
||||
[Constructable]
|
||||
public PlainDressBearingTheCrestOfBlackthorn1()
|
||||
: base()
|
||||
{
|
||||
ReforgedSuffix = ReforgedSuffix.Blackthorn;
|
||||
Attributes.BonusHits = 3;
|
||||
Attributes.BonusInt = 5;
|
||||
Hue = 2075;
|
||||
}
|
||||
|
||||
public PlainDressBearingTheCrestOfBlackthorn1(Serial serial)
|
||||
: base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
public override void Serialize(GenericWriter writer)
|
||||
{
|
||||
base.Serialize(writer);
|
||||
writer.Write(1);
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
int version = reader.ReadInt();
|
||||
|
||||
if (version == 0)
|
||||
{
|
||||
MaxHitPoints = 0;
|
||||
HitPoints = 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
using Server;
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class RobeBearingTheCrestOfBlackthorn1 : Robe
|
||||
{
|
||||
public override bool IsArtifact { get { return true; } }
|
||||
|
||||
[Constructable]
|
||||
public RobeBearingTheCrestOfBlackthorn1()
|
||||
: base()
|
||||
{
|
||||
ReforgedSuffix = ReforgedSuffix.Blackthorn;
|
||||
Attributes.BonusHits = 3;
|
||||
Attributes.BonusInt = 5;
|
||||
Hue = 2075;
|
||||
}
|
||||
|
||||
public RobeBearingTheCrestOfBlackthorn1(Serial serial)
|
||||
: base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
public override void Serialize(GenericWriter writer)
|
||||
{
|
||||
base.Serialize(writer);
|
||||
writer.Write(1);
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
int version = reader.ReadInt();
|
||||
|
||||
if (version == 0)
|
||||
{
|
||||
MaxHitPoints = 0;
|
||||
HitPoints = 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user