17 lines
473 B
C#
17 lines
473 B
C#
using ModernUO.Serialization;
|
|
using Server.Mobiles;
|
|
|
|
namespace Server.Engines.Quests.Ninja;
|
|
|
|
[SerializationGenerator(0, false)]
|
|
public partial class NoteForZoel : QuestItem
|
|
{
|
|
[Constructible]
|
|
public NoteForZoel() : base(0x14EF) => Hue = 0x6B9;
|
|
|
|
public override double DefaultWeight => 1.0;
|
|
|
|
public override int LabelNumber => 1063186; // A Note for Zoel
|
|
|
|
public override bool CanDrop(PlayerMobile player) => player.Quest is not EminosUndertakingQuest;
|
|
}
|