mirror of
https://github.com/ServUO/ServUO
synced 2026-08-11 20:23:04 -04:00
- Removed the Expansion folder in Services. - Put everything that was in that folder in its appropriate location. NO FILES WERE ACTUALLY CHANGED IN THIS PR - SIMPLY MOVED.
42 lines
930 B
C#
42 lines
930 B
C#
namespace Server.Items
|
|
{
|
|
public class Potash : Item, ICommodity
|
|
{
|
|
public override int LabelNumber => 1116319; // potash
|
|
|
|
TextDefinition ICommodity.Description => LabelNumber;
|
|
bool ICommodity.IsDeedable => true;
|
|
|
|
[Constructable]
|
|
public Potash()
|
|
: this(1)
|
|
{
|
|
}
|
|
|
|
[Constructable]
|
|
public Potash(int amount)
|
|
: base(0x423A)
|
|
{
|
|
Stackable = true;
|
|
Amount = amount;
|
|
Hue = 1102;
|
|
}
|
|
|
|
public Potash(Serial serial)
|
|
: base(serial)
|
|
{
|
|
}
|
|
|
|
public override void Serialize(GenericWriter writer)
|
|
{
|
|
base.Serialize(writer);
|
|
writer.Write(0);
|
|
}
|
|
|
|
public override void Deserialize(GenericReader reader)
|
|
{
|
|
base.Deserialize(reader);
|
|
int version = reader.ReadInt();
|
|
}
|
|
}
|
|
}
|