Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
41
Scripts/Items/Artifacts/Decorative/Web.cs
Normal file
41
Scripts/Items/Artifacts/Decorative/Web.cs
Normal file
@@ -0,0 +1,41 @@
|
||||
using System;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
public class Web : Item
|
||||
{
|
||||
public override bool IsArtifact { get { return true; } }
|
||||
private static readonly int[] m_itemids = new int[]
|
||||
{
|
||||
0x10d7, 0x10d8, 0x10dd
|
||||
};
|
||||
[Constructable]
|
||||
public Web()
|
||||
: base(m_itemids[Utility.Random(3)])
|
||||
{
|
||||
}
|
||||
|
||||
[Constructable]
|
||||
public Web(int itemid)
|
||||
: base(itemid)
|
||||
{
|
||||
}
|
||||
|
||||
public Web(Serial serial)
|
||||
: base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
public override void Serialize(GenericWriter writer)
|
||||
{
|
||||
base.Serialize(writer);
|
||||
writer.Write((int)0);
|
||||
}
|
||||
|
||||
public override void Deserialize(GenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
int version = reader.ReadInt();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user