- [X] Deletes serialization annotations - [X] Updates to ModernUO.Serialization.Annotations nuget - [X] Updates serializer to v2.0 - [X] Changes all `Serializable()` to `SerializationGenerator()` - [X] Updates to schema generator v2.0
29 lines
782 B
C#
29 lines
782 B
C#
using ModernUO.Serialization;
|
|
|
|
namespace Server.Items
|
|
{
|
|
[SerializationGenerator(0)]
|
|
public partial class MischiefMaker : MagicalShortbow
|
|
{
|
|
[Constructible]
|
|
public MischiefMaker()
|
|
{
|
|
Hue = 0x8AB;
|
|
Slayer = SlayerName.Silver;
|
|
Balanced = true;
|
|
Attributes.WeaponSpeed = 35;
|
|
Attributes.WeaponDamage = 45;
|
|
}
|
|
|
|
public override int LabelNumber => 1072910; // Mischief Maker
|
|
|
|
public override void GetDamageTypes(
|
|
Mobile wielder, out int phys, out int fire, out int cold, out int pois,
|
|
out int nrgy, out int chaos, out int direct
|
|
)
|
|
{
|
|
phys = fire = pois = nrgy = chaos = direct = 0;
|
|
cold = 100;
|
|
}
|
|
}
|
|
}
|