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.
36 lines
No EOL
875 B
C#
36 lines
No EOL
875 B
C#
namespace Server.Items
|
|
{
|
|
public class Matchcord : Item, ICommodity
|
|
{
|
|
public override int LabelNumber => 1095184;
|
|
|
|
TextDefinition ICommodity.Description => LabelNumber;
|
|
bool ICommodity.IsDeedable => true;
|
|
|
|
[Constructable]
|
|
public Matchcord() : this(1) { }
|
|
|
|
[Constructable]
|
|
public Matchcord(int amount)
|
|
: base(5153)
|
|
{
|
|
Hue = 1171;
|
|
Stackable = true;
|
|
Amount = amount;
|
|
}
|
|
|
|
public Matchcord(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();
|
|
}
|
|
}
|
|
} |