Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
@@ -0,0 +1,58 @@
|
||||
/* 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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user