Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
@@ -0,0 +1,58 @@
|
||||
using Server;
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class EpauletteBearingTheCrestOfBlackthorn7 : Cloak
|
||||
{
|
||||
public override bool IsArtifact { get { return true; } }
|
||||
|
||||
public override int LabelNumber { get { return 1123325; } } // Epaulette
|
||||
|
||||
[Constructable]
|
||||
public EpauletteBearingTheCrestOfBlackthorn7()
|
||||
{
|
||||
ReforgedSuffix = ReforgedSuffix.Blackthorn;
|
||||
ItemID = 0x9985;
|
||||
Attributes.RegenMana = 2;
|
||||
Attributes.DefendChance = 5;
|
||||
Attributes.Luck = 140;
|
||||
Hue = 1194;
|
||||
|
||||
Layer = Layer.OuterTorso;
|
||||
}
|
||||
|
||||
public EpauletteBearingTheCrestOfBlackthorn7(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 FancyDressBearingTheCrestOfBlackthorn7 : FancyDress
|
||||
{
|
||||
public override bool IsArtifact { get { return true; } }
|
||||
|
||||
[Constructable]
|
||||
public FancyDressBearingTheCrestOfBlackthorn7()
|
||||
: base()
|
||||
{
|
||||
ReforgedSuffix = ReforgedSuffix.Blackthorn;
|
||||
Attributes.RegenMana = 2;
|
||||
Attributes.DefendChance = 5;
|
||||
Attributes.Luck = 140;
|
||||
Hue = 1194;
|
||||
}
|
||||
|
||||
public FancyDressBearingTheCrestOfBlackthorn7(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,44 @@
|
||||
using Server;
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class FemaleKimonoBearingTheCrestOfBlackthorn7 : FemaleKimono
|
||||
{
|
||||
public override bool IsArtifact { get { return true; } }
|
||||
|
||||
[Constructable]
|
||||
public FemaleKimonoBearingTheCrestOfBlackthorn7()
|
||||
: base()
|
||||
{
|
||||
ReforgedSuffix = ReforgedSuffix.Blackthorn;
|
||||
Attributes.RegenMana = 2;
|
||||
Attributes.DefendChance = 5;
|
||||
Attributes.Luck = 140;
|
||||
Hue = 1194;
|
||||
}
|
||||
|
||||
public FemaleKimonoBearingTheCrestOfBlackthorn7(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,60 @@
|
||||
using Server;
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class GargishEpauletteBearingTheCrestOfBlackthorn7 : 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 GargishEpauletteBearingTheCrestOfBlackthorn7()
|
||||
{
|
||||
ReforgedSuffix = ReforgedSuffix.Blackthorn;
|
||||
ItemID = 0x9986;
|
||||
Attributes.RegenMana = 2;
|
||||
Attributes.DefendChance = 5;
|
||||
Attributes.Luck = 140;
|
||||
Hue = 1194;
|
||||
|
||||
Layer = Layer.OuterTorso;
|
||||
}
|
||||
|
||||
public GargishEpauletteBearingTheCrestOfBlackthorn7(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 GargishFancyBearingTheCrestOfBlackthorn7 : GargishFancyRobe
|
||||
{
|
||||
public override bool IsArtifact { get { return true; } }
|
||||
|
||||
[Constructable]
|
||||
public GargishFancyBearingTheCrestOfBlackthorn7()
|
||||
: base()
|
||||
{
|
||||
ReforgedSuffix = ReforgedSuffix.Blackthorn;
|
||||
Attributes.RegenMana = 2;
|
||||
Attributes.DefendChance = 5;
|
||||
Attributes.Luck = 140;
|
||||
Hue = 1194;
|
||||
}
|
||||
|
||||
public GargishFancyBearingTheCrestOfBlackthorn7(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,44 @@
|
||||
using Server;
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class GargishRobeBearingTheCrestOfBlackthorn7 : GargishRobe
|
||||
{
|
||||
public override bool IsArtifact { get { return true; } }
|
||||
|
||||
[Constructable]
|
||||
public GargishRobeBearingTheCrestOfBlackthorn7()
|
||||
: base()
|
||||
{
|
||||
ReforgedSuffix = ReforgedSuffix.Blackthorn;
|
||||
Attributes.RegenMana = 2;
|
||||
Attributes.DefendChance = 5;
|
||||
Attributes.Luck = 140;
|
||||
Hue = 1194;
|
||||
}
|
||||
|
||||
public GargishRobeBearingTheCrestOfBlackthorn7(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,44 @@
|
||||
using Server;
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class GildedDressBearingTheCrestOfBlackthorn7 : GildedDress
|
||||
{
|
||||
public override bool IsArtifact { get { return true; } }
|
||||
|
||||
[Constructable]
|
||||
public GildedDressBearingTheCrestOfBlackthorn7()
|
||||
: base()
|
||||
{
|
||||
ReforgedSuffix = ReforgedSuffix.Blackthorn;
|
||||
Attributes.RegenMana = 2;
|
||||
Attributes.DefendChance = 5;
|
||||
Attributes.Luck = 140;
|
||||
Hue = 1194;
|
||||
}
|
||||
|
||||
public GildedDressBearingTheCrestOfBlackthorn7(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,48 @@
|
||||
using Server;
|
||||
using System;
|
||||
using Server.Engines.Craft;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
[Flipable(0x2684, 0x2683)]
|
||||
public class HoodedRobeBearingTheCrestOfBlackthorn7 : 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 HoodedRobeBearingTheCrestOfBlackthorn7()
|
||||
: base(0x2683)
|
||||
{
|
||||
ReforgedSuffix = ReforgedSuffix.Blackthorn;
|
||||
Attributes.RegenMana = 2;
|
||||
Attributes.DefendChance = 5;
|
||||
Attributes.Luck = 140;
|
||||
Hue = 1194;
|
||||
}
|
||||
|
||||
public HoodedRobeBearingTheCrestOfBlackthorn7(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,44 @@
|
||||
using Server;
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class MaleKimonoBearingTheCrestOfBlackthorn7 : MaleKimono
|
||||
{
|
||||
public override bool IsArtifact { get { return true; } }
|
||||
|
||||
[Constructable]
|
||||
public MaleKimonoBearingTheCrestOfBlackthorn7()
|
||||
: base()
|
||||
{
|
||||
ReforgedSuffix = ReforgedSuffix.Blackthorn;
|
||||
Attributes.RegenMana = 2;
|
||||
Attributes.DefendChance = 5;
|
||||
Attributes.Luck = 140;
|
||||
Hue = 1194;
|
||||
}
|
||||
|
||||
public MaleKimonoBearingTheCrestOfBlackthorn7(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,44 @@
|
||||
using Server;
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class PlainDressBearingTheCrestOfBlackthorn7 : PlainDress
|
||||
{
|
||||
public override bool IsArtifact { get { return true; } }
|
||||
|
||||
[Constructable]
|
||||
public PlainDressBearingTheCrestOfBlackthorn7()
|
||||
: base()
|
||||
{
|
||||
ReforgedSuffix = ReforgedSuffix.Blackthorn;
|
||||
Attributes.RegenMana = 2;
|
||||
Attributes.DefendChance = 5;
|
||||
Attributes.Luck = 140;
|
||||
Hue = 1194;
|
||||
}
|
||||
|
||||
public PlainDressBearingTheCrestOfBlackthorn7(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,44 @@
|
||||
using Server;
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class RobeBearingTheCrestOfBlackthorn7 : Robe
|
||||
{
|
||||
public override bool IsArtifact { get { return true; } }
|
||||
|
||||
[Constructable]
|
||||
public RobeBearingTheCrestOfBlackthorn7()
|
||||
: base()
|
||||
{
|
||||
ReforgedSuffix = ReforgedSuffix.Blackthorn;
|
||||
Attributes.RegenMana = 2;
|
||||
Attributes.DefendChance = 5;
|
||||
Attributes.Luck = 140;
|
||||
Hue = 1194;
|
||||
}
|
||||
|
||||
public RobeBearingTheCrestOfBlackthorn7(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