Files
abysmal-isle/Scripts/Scripts-master/Quests/Naruto Quest/OrochimaruPants.cs
Unstable Kitsune b918192e4e Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
2023-11-28 23:20:26 -05:00

40 lines
687 B
C#

using System;
using Server.Items;
namespace Server.Items
{
public class OrochimaruPants : BasePants
{
[Constructable]
public OrochimaruPants() : this( 0 )
{
}
[Constructable]
public OrochimaruPants( int hue ) : base( 0x1539, hue )
{
Weight = 2.0;
Hue = 1;
Name = "Orochimaru Legs";
LootType = LootType.Blessed;
}
public OrochimaruPants( Serial serial ) : base( serial )
{
}
public override void Serialize( GenericWriter writer )
{
base.Serialize( writer );
writer.Write( (int) 0 ); // version
}
public override void Deserialize( GenericReader reader )
{
base.Deserialize( reader );
int version = reader.ReadInt();
}
}
}