mirror of
https://github.com/ServUO/ServUO
synced 2026-08-11 20:23:04 -04:00
- Cleanup of various double calls and simplified code where possible. Co-authored-by: TrueUO <knight.daniel.r@gmail.com>
41 lines
No EOL
955 B
C#
41 lines
No EOL
955 B
C#
using Server.Engines.Craft;
|
|
|
|
namespace Server.Items
|
|
{
|
|
[Flipable(0x1022, 0x1023)]
|
|
public class FletcherTools : BaseTool
|
|
{
|
|
public override CraftSystem CraftSystem => DefBowFletching.CraftSystem;
|
|
public override int LabelNumber => 1044559; // Fletcher's Tools
|
|
|
|
[Constructable]
|
|
public FletcherTools()
|
|
: base(0x1022)
|
|
{
|
|
}
|
|
|
|
[Constructable]
|
|
public FletcherTools(int uses)
|
|
: base(uses, 0x1022)
|
|
{
|
|
Weight = 2.0;
|
|
}
|
|
|
|
public FletcherTools(Serial serial)
|
|
: base(serial)
|
|
{
|
|
}
|
|
|
|
public override void Serialize(GenericWriter writer)
|
|
{
|
|
base.Serialize(writer);
|
|
writer.Write(0); // version
|
|
}
|
|
|
|
public override void Deserialize(GenericReader reader)
|
|
{
|
|
base.Deserialize(reader);
|
|
int version = reader.ReadInt();
|
|
}
|
|
}
|
|
} |