156 lines
3.5 KiB
C#
156 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 System.Collections.Generic;
|
|
|
|
namespace Server.Mobiles
|
|
{
|
|
[CorpseName( "Good luck getting a bow now" )]
|
|
public class Pilock : Mobile
|
|
{
|
|
public virtual bool IsInvulnerable{ get{ return true; } }
|
|
[Constructable]
|
|
public Pilock()
|
|
{
|
|
Name = "Pilock";
|
|
Title = "the farmer";
|
|
Body = 0x190;
|
|
CantWalk = true;
|
|
Hue = Utility.RandomSkinHue();
|
|
|
|
Item Boots = new Boots();
|
|
Boots.Hue = 2112;
|
|
Boots.Name = "Farming Boots";
|
|
Boots.Movable = false;
|
|
AddItem( Boots );
|
|
|
|
Item FancyShirt = new FancyShirt();
|
|
FancyShirt.Hue = 1267;
|
|
FancyShirt.Name = "Farming Shirt";
|
|
FancyShirt.Movable = false;
|
|
AddItem( FancyShirt );
|
|
|
|
Item LongPants = new LongPants();
|
|
LongPants.Hue = 847;
|
|
LongPants.Name = "Farming Pants";
|
|
LongPants.Movable = false;
|
|
AddItem( LongPants );
|
|
|
|
Item Cloak = new Cloak();
|
|
Cloak.Hue = 1267;
|
|
Cloak.Name = "Farming Cloak";
|
|
Cloak.Movable = false;
|
|
AddItem( Cloak );
|
|
|
|
|
|
|
|
|
|
int hairHue = 1814;
|
|
|
|
switch ( Utility.Random( 1 ) )
|
|
{
|
|
case 0: AddItem( new PonyTail( hairHue ) ); break;
|
|
case 1: AddItem( new Goatee( hairHue ) ); break;
|
|
}
|
|
|
|
Blessed = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Pilock( Serial serial ) : base( serial )
|
|
{
|
|
}
|
|
|
|
public override void GetContextMenuEntries(Mobile from, List<ContextMenuEntry> list)
|
|
{
|
|
base.GetContextMenuEntries( from, list );
|
|
list.Add( new PilockEntry( 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 PilockEntry : ContextMenuEntry
|
|
{
|
|
private Mobile m_Mobile;
|
|
private Mobile m_Giver;
|
|
|
|
public PilockEntry( 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( PilockquestGump ) ) )
|
|
{
|
|
mobile.SendGump( new PilockquestGump( mobile ));
|
|
mobile.AddToBackpack( new PilockBook() );
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
public override bool OnDragDrop( Mobile from, Item dropped )
|
|
{
|
|
Mobile m = from;
|
|
PlayerMobile mobile = m as PlayerMobile;
|
|
|
|
if ( mobile != null)
|
|
{
|
|
if( dropped is PureWhiteFeather)
|
|
{
|
|
if(dropped.Amount!=15)
|
|
{
|
|
this.PrivateOverheadMessage( MessageType.Regular, 1153, false, "That is not the amount I asked for.", mobile.NetState );
|
|
return false;
|
|
}
|
|
|
|
dropped.Delete();
|
|
mobile.AddToBackpack( new PureWhiteFeatherBow() );
|
|
|
|
|
|
return true;
|
|
}
|
|
else if ( dropped is PureWhiteFeather)
|
|
{
|
|
this.PrivateOverheadMessage( MessageType.Regular, 1153, 1054071, mobile.NetState );
|
|
return false;
|
|
}
|
|
else
|
|
{
|
|
this.PrivateOverheadMessage( MessageType.Regular, 1153, false, "I did not ask for this item.", mobile.NetState );
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
}
|
|
}
|