Files
abysmal-isle/Scripts/Scripts-master/Quests/Beginner Equipment Quest/Items/BloodyBatWing.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

41 lines
814 B
C#

using System;
using Server;
namespace Server.Items
{
public class BloodyBatWing : Item
{
[Constructable]
public BloodyBatWing() : this( 1 )
{
}
[Constructable]
public BloodyBatWing( int amount ) : base( 0xF78 )
{
Name = "A Bloody Bat Wing";
Stackable = false;
Hue = 38;
Weight = 0.1;
Amount = amount;
}
public BloodyBatWing( 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();
}
}
}