Files
Unstable Kitsune b918192e4e Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
2023-11-28 23:20:26 -05:00

153 lines
3.5 KiB
C#

using System;
using System.Collections;
using Server.Items;
using Server.Targeting;
using Server.ContextMenus;
using Server.Gumps;
using Server.Misc;
using Server.Network;
using Server.Spells;
using Server.Accounting;
namespace Server.Mobiles
{
[CorpseName( "Orthal's corpse" )]
public class Orthal : Mobile
{
public virtual bool IsInvulnerable{ get{ return true; } }
[Constructable]
public Orthal()
{
Name = "Orthal";
Title = "the Shipmate";
Body = 0x190;
Hue = Utility.RandomSkinHue();
Blessed = true;
CantWalk = true;
Direction = Direction.South;
Boots bt = new Boots();
bt.Hue = 0;
AddItem( bt );
LongPants lp = new LongPants();
lp.Hue = 0;
AddItem( lp );
FancyShirt fs = new FancyShirt();
fs.Hue = 0;
AddItem( fs );
TricorneHat th = new TricorneHat();
th.Hue = 0;
AddItem( th );
Scimitar sc = new Scimitar();
AddItem( sc );
GoldBeadNecklace gn = new GoldBeadNecklace();
AddItem( gn );
GoldBracelet gb = new GoldBracelet();
AddItem( gb );
GoldEarrings ge = new GoldEarrings();
AddItem( ge );
GoldRing gr = new GoldRing();
AddItem( gr );
HairItemID = 0x203D; // PonyTail
HairHue = 1149;
FacialHairItemID = 0x204D; // Vandyke
FacialHairHue = 1149;
}
public Orthal( Serial serial ) : base( serial )
{
}
public override void GetContextMenuEntries (Mobile from, System.Collections.Generic.List<ContextMenuEntry> list)
{
base.GetContextMenuEntries( from, list );
list.Add( new OrthalEntry( from, this ) );
}
public override void Serialize( GenericWriter writer )
{
base.Serialize( writer );
writer.Write( (int) 0 );
}
public override void Deserialize( GenericReader reader )
{
base.Deserialize( reader );
int version = reader.ReadInt();
}
public class OrthalEntry : ContextMenuEntry
{
private Mobile m_Mobile;
private Mobile m_Giver;
public OrthalEntry( Mobile from, Mobile giver ) : base( 6146, 3 )
{
m_Mobile = from;
m_Giver = giver;
}
public override void OnClick()
{
if( !( m_Mobile is PlayerMobile ) )
return;
PlayerMobile mobile = (PlayerMobile) m_Mobile;
{
if ( ! mobile.HasGump( typeof( OrthalGump ) ) )
{
mobile.SendGump( new OrthalGump( mobile ));
}
}
}
}
public override bool OnDragDrop( Mobile from, Item dropped )
{
Mobile m = from;
PlayerMobile mobile = m as PlayerMobile;
if ( mobile != null)
{
if( dropped is LetterToOrthal )
{
dropped.Delete();
mobile.SendGump( new OrthalStartGump( mobile ));
return true;
}
if( dropped is HeadOfBritainLettuce )
{
dropped.Delete();
mobile.AddToBackpack( new EnchantedRope() );
mobile.AddToBackpack( new LetterToKyvon() );
mobile.SendGump( new OrthalFinishGump( mobile ));
return true;
}
else
{
mobile.SendMessage("I have no need for this item.");
}
}
else
{
this.PrivateOverheadMessage( MessageType.Regular, 1153, false, "I have no need for this item.", mobile.NetState );
}
return false;
}
}
}