Adds assemblies config, fixes crash bugs. (#134)
This commit is contained in:
parent
0140eb73b4
commit
8ec166bcd0
3223 changed files with 191 additions and 191 deletions
29
Projects/UOContent/Items/Quivers/ElvenQuiver.cs
Normal file
29
Projects/UOContent/Items/Quivers/ElvenQuiver.cs
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
namespace Server.Items
|
||||
{
|
||||
[Flippable(0x2FB7, 0x3171)]
|
||||
public class ElvenQuiver : BaseQuiver
|
||||
{
|
||||
[Constructible]
|
||||
public ElvenQuiver() => WeightReduction = 30;
|
||||
|
||||
public ElvenQuiver(Serial serial) : base(serial)
|
||||
{
|
||||
}
|
||||
|
||||
public override int LabelNumber => 1032657; // elven quiver
|
||||
|
||||
public override void Serialize(IGenericWriter writer)
|
||||
{
|
||||
base.Serialize(writer);
|
||||
|
||||
writer.WriteEncodedInt(0); // version
|
||||
}
|
||||
|
||||
public override void Deserialize(IGenericReader reader)
|
||||
{
|
||||
base.Deserialize(reader);
|
||||
|
||||
int version = reader.ReadEncodedInt();
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue