- [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
26 lines
691 B
C#
26 lines
691 B
C#
using ModernUO.Serialization;
|
|
|
|
namespace Server.Items
|
|
{
|
|
[SerializationGenerator(0, false)]
|
|
public partial class TheMostKnowledgePerson : BaseOuterTorso
|
|
{
|
|
[Constructible]
|
|
public TheMostKnowledgePerson() : base(0x2684)
|
|
{
|
|
Hue = 0x117;
|
|
StrRequirement = 0;
|
|
|
|
Attributes.BonusHits = 3 + Utility.RandomMinMax(0, 2);
|
|
}
|
|
|
|
public override int LabelNumber => 1094893; // The Most Knowledge Person [Replica]
|
|
|
|
public override int InitMinHits => 150;
|
|
public override int InitMaxHits => 150;
|
|
|
|
public override bool CanFortify => false;
|
|
|
|
public override bool CanBeBlessed => false;
|
|
}
|
|
}
|