Files
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

59 lines
1.7 KiB
C#

/* Scripted By
* █▀▀▀ █▀▀ █▀▀█ █▀▀ █▀▀ ▀█ █▀ █▀▀█ █▀▀█
* █▀▀▀ ▀▀█ █ █ █ █▀ █▄█ █▄▄█ █ █
* █▄▄▄ ▀▀▀ █▀▀▀ ▀▀▀ ▀▀▀ ▀ ▀ ▀ █ █
* █
*
* █ █ █▀█ ▄▀█ █▀▀ █▀▀ █▀▀ █▀ █▀   █▀▀ █▀█ █▀█▀█
* █▄█ █▄█ █▀█ █▄▄ █▄▄ ██▄ ▄█ ▄█ ▄ █▄▄ █▄█ █ ▀ █
*/
using System;
using Server.Engines.Craft;
namespace Server.Items
{
[FlipableAttribute(0xE8A, 0xE89)]
public class EverlastingBlowpipe : BaseEverlastingTool
{
//public override int LabelNumber { get { return 1044609; } } // Blow Pipe
[Constructable]
public EverlastingBlowpipe()
: base(0xE8A)
{
Name = "Everlasting Blowpipe";
Weight = 1.0;
Hue = 1150;
}
public EverlastingBlowpipe(Serial serial)
: base(serial)
{
}
public override CraftSystem CraftSystem
{
get
{
return DefGlassblowing.CraftSystem;
}
}
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();
if (Weight != 1.0)
Weight = 1.0;
}
}
}