Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
using Server;
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class CloakBearingTheCrestOfBlackthorn : Cloak
|
||||
{
|
||||
public override bool IsArtifact { get { return true; } }
|
||||
|
||||
[Constructable]
|
||||
public CloakBearingTheCrestOfBlackthorn()
|
||||
{
|
||||
ReforgedSuffix = ReforgedSuffix.Blackthorn;
|
||||
this.Hue = 1766;
|
||||
Attributes.DefendChance = 5;
|
||||
}
|
||||
|
||||
public CloakBearingTheCrestOfBlackthorn(Serial serial)
|
||||
: base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
public override void Serialize(GenericWriter writer)
|
||||
{
|
||||
base.Serialize(writer);
|
||||
writer.Write(0);
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
int version = reader.ReadInt();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
using Server;
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class GargishClothWingArmorBearingTheCrestOfBlackthorn : GargishClothWingArmor
|
||||
{
|
||||
public override bool IsArtifact { get { return true; } }
|
||||
|
||||
[Constructable]
|
||||
public GargishClothWingArmorBearingTheCrestOfBlackthorn()
|
||||
{
|
||||
ReforgedSuffix = ReforgedSuffix.Blackthorn;
|
||||
this.Hue = 1766;
|
||||
Attributes.DefendChance = 5;
|
||||
}
|
||||
|
||||
public GargishClothWingArmorBearingTheCrestOfBlackthorn(Serial serial)
|
||||
: base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
public override void Serialize(GenericWriter writer)
|
||||
{
|
||||
base.Serialize(writer);
|
||||
writer.Write(0);
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
int version = reader.ReadInt();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user