Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
43
Scripts/Scripts-master/Items/Clothing/Sash Pack/Ltsashg.cs
Normal file
43
Scripts/Scripts-master/Items/Clothing/Sash Pack/Ltsashg.cs
Normal file
@@ -0,0 +1,43 @@
|
||||
|
||||
using System;
|
||||
using Server;
|
||||
using Server.Items;
|
||||
|
||||
namespace Server.Items
|
||||
{
|
||||
[FlipableAttribute( 0x153B, 0x153C )]
|
||||
public class Ltsashg : BaseMiddleTorso
|
||||
{
|
||||
public override void GetProperties(ObjectPropertyList list)
|
||||
{
|
||||
base.GetProperties(list); list.Add(1075085);
|
||||
}
|
||||
|
||||
[Constructable]
|
||||
public Ltsashg() : base ( 0x1541 )
|
||||
{
|
||||
Weight = 2.0;
|
||||
Name = "The Golden Sash";
|
||||
Hue = 1177;
|
||||
|
||||
Attributes.Luck = 200;
|
||||
|
||||
}
|
||||
|
||||
public Ltsashg( 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