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 EpauletteBearingTheCrestOfBlackthorn6 : Cloak
|
||||
{
|
||||
public override bool IsArtifact { get { return true; } }
|
||||
|
||||
public override int LabelNumber { get { return 1123325; } } // Epaulette
|
||||
|
||||
[Constructable]
|
||||
public EpauletteBearingTheCrestOfBlackthorn6()
|
||||
{
|
||||
ReforgedSuffix = ReforgedSuffix.Blackthorn;
|
||||
ItemID = 0x9985;
|
||||
Attributes.AttackChance = 3;
|
||||
Attributes.DefendChance = 3;
|
||||
Attributes.SpellDamage = 3;
|
||||
Hue = 2019;
|
||||
|
||||
Layer = Layer.OuterTorso;
|
||||
}
|
||||
|
||||
public EpauletteBearingTheCrestOfBlackthorn6(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 FancyDressBearingTheCrestOfBlackthorn6 : FancyDress
|
||||
{
|
||||
public override bool IsArtifact { get { return true; } }
|
||||
|
||||
[Constructable]
|
||||
public FancyDressBearingTheCrestOfBlackthorn6()
|
||||
: base()
|
||||
{
|
||||
ReforgedSuffix = ReforgedSuffix.Blackthorn;
|
||||
Attributes.AttackChance = 3;
|
||||
Attributes.DefendChance = 3;
|
||||
Attributes.SpellDamage = 3;
|
||||
Hue = 2019;
|
||||
}
|
||||
|
||||
public FancyDressBearingTheCrestOfBlackthorn6(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 FemaleKimonoBearingTheCrestOfBlackthorn6 : FemaleKimono
|
||||
{
|
||||
public override bool IsArtifact { get { return true; } }
|
||||
|
||||
[Constructable]
|
||||
public FemaleKimonoBearingTheCrestOfBlackthorn6()
|
||||
: base()
|
||||
{
|
||||
ReforgedSuffix = ReforgedSuffix.Blackthorn;
|
||||
Attributes.AttackChance = 3;
|
||||
Attributes.DefendChance = 3;
|
||||
Attributes.SpellDamage = 3;
|
||||
Hue = 2019;
|
||||
}
|
||||
|
||||
public FemaleKimonoBearingTheCrestOfBlackthorn6(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 GargishEpauletteBearingTheCrestOfBlackthorn6 : 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 GargishEpauletteBearingTheCrestOfBlackthorn6()
|
||||
{
|
||||
ReforgedSuffix = ReforgedSuffix.Blackthorn;
|
||||
ItemID = 0x9986;
|
||||
Attributes.AttackChance = 3;
|
||||
Attributes.DefendChance = 3;
|
||||
Attributes.SpellDamage = 3;
|
||||
Hue = 2019;
|
||||
|
||||
Layer = Layer.OuterTorso;
|
||||
}
|
||||
|
||||
public GargishEpauletteBearingTheCrestOfBlackthorn6(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 GargishFancyBearingTheCrestOfBlackthorn6 : GargishFancyRobe
|
||||
{
|
||||
public override bool IsArtifact { get { return true; } }
|
||||
|
||||
[Constructable]
|
||||
public GargishFancyBearingTheCrestOfBlackthorn6()
|
||||
: base()
|
||||
{
|
||||
ReforgedSuffix = ReforgedSuffix.Blackthorn;
|
||||
Attributes.AttackChance = 3;
|
||||
Attributes.DefendChance = 3;
|
||||
Attributes.SpellDamage = 3;
|
||||
Hue = 2019;
|
||||
}
|
||||
|
||||
public GargishFancyBearingTheCrestOfBlackthorn6(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 GargishRobeBearingTheCrestOfBlackthorn6 : GargishRobe
|
||||
{
|
||||
public override bool IsArtifact { get { return true; } }
|
||||
|
||||
[Constructable]
|
||||
public GargishRobeBearingTheCrestOfBlackthorn6()
|
||||
: base()
|
||||
{
|
||||
ReforgedSuffix = ReforgedSuffix.Blackthorn;
|
||||
Attributes.AttackChance = 3;
|
||||
Attributes.DefendChance = 3;
|
||||
Attributes.SpellDamage = 3;
|
||||
Hue = 2019;
|
||||
}
|
||||
|
||||
public GargishRobeBearingTheCrestOfBlackthorn6(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 GildedDressBearingTheCrestOfBlackthorn6 : GildedDress
|
||||
{
|
||||
public override bool IsArtifact { get { return true; } }
|
||||
|
||||
[Constructable]
|
||||
public GildedDressBearingTheCrestOfBlackthorn6()
|
||||
: base()
|
||||
{
|
||||
ReforgedSuffix = ReforgedSuffix.Blackthorn;
|
||||
Attributes.AttackChance = 3;
|
||||
Attributes.DefendChance = 3;
|
||||
Attributes.SpellDamage = 3;
|
||||
Hue = 2019;
|
||||
}
|
||||
|
||||
public GildedDressBearingTheCrestOfBlackthorn6(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 HoodedRobeBearingTheCrestOfBlackthorn6 : 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 HoodedRobeBearingTheCrestOfBlackthorn6()
|
||||
: base(0x2683)
|
||||
{
|
||||
ReforgedSuffix = ReforgedSuffix.Blackthorn;
|
||||
Attributes.AttackChance = 3;
|
||||
Attributes.DefendChance = 3;
|
||||
Attributes.SpellDamage = 3;
|
||||
Hue = 2019;
|
||||
}
|
||||
|
||||
public HoodedRobeBearingTheCrestOfBlackthorn6(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 MaleKimonoBearingTheCrestOfBlackthorn6 : MaleKimono
|
||||
{
|
||||
public override bool IsArtifact { get { return true; } }
|
||||
|
||||
[Constructable]
|
||||
public MaleKimonoBearingTheCrestOfBlackthorn6()
|
||||
: base()
|
||||
{
|
||||
ReforgedSuffix = ReforgedSuffix.Blackthorn;
|
||||
Attributes.AttackChance = 3;
|
||||
Attributes.DefendChance = 3;
|
||||
Attributes.SpellDamage = 3;
|
||||
Hue = 2019;
|
||||
}
|
||||
|
||||
public MaleKimonoBearingTheCrestOfBlackthorn6(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 PlainDressBearingTheCrestOfBlackthorn6 : PlainDress
|
||||
{
|
||||
public override bool IsArtifact { get { return true; } }
|
||||
|
||||
[Constructable]
|
||||
public PlainDressBearingTheCrestOfBlackthorn6()
|
||||
: base()
|
||||
{
|
||||
ReforgedSuffix = ReforgedSuffix.Blackthorn;
|
||||
Attributes.AttackChance = 3;
|
||||
Attributes.DefendChance = 3;
|
||||
Attributes.SpellDamage = 3;
|
||||
Hue = 2019;
|
||||
}
|
||||
|
||||
public PlainDressBearingTheCrestOfBlackthorn6(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 RobeBearingTheCrestOfBlackthorn6 : Robe
|
||||
{
|
||||
public override bool IsArtifact { get { return true; } }
|
||||
|
||||
[Constructable]
|
||||
public RobeBearingTheCrestOfBlackthorn6()
|
||||
: base()
|
||||
{
|
||||
ReforgedSuffix = ReforgedSuffix.Blackthorn;
|
||||
Attributes.AttackChance = 3;
|
||||
Attributes.DefendChance = 3;
|
||||
Attributes.SpellDamage = 3;
|
||||
Hue = 2019;
|
||||
}
|
||||
|
||||
public RobeBearingTheCrestOfBlackthorn6(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