servuo/Scripts/Items/Tools/JointingPlane.cs
TrueUO 8067c1bbcf
Additions (#4813)
- Account vaults have been added.
- Added in new aquariums.
- All missing recipes have been added.

Bug Fixes
- Fixes an exploit with mail boxes.
- Auction Safes now work correctly in regards to bid / match bid.
- Cleanup

Co-authored-by: TrueUO <knight.daniel.r@gmail.com>
2020-07-14 09:54:52 -07:00

41 lines
No EOL
910 B
C#

using Server.Engines.Craft;
namespace Server.Items
{
[Flipable(0x1030, 0x1031)]
public class JointingPlane : BaseTool
{
public override CraftSystem CraftSystem => DefCarpentry.CraftSystem;
[Constructable]
public JointingPlane()
: base(0x1030)
{
Weight = 2.0;
}
[Constructable]
public JointingPlane(int uses)
: base(uses, 0x1030)
{
Weight = 2.0;
}
public JointingPlane(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();
}
}
}