#W# Source and Scripts added. Added Scripts/Settings.cs to expose some basic tweak able settings.
This commit is contained in:
parent
b51c58f514
commit
3045c83799
3512 changed files with 627673 additions and 0 deletions
80
Scripts/Mobiles/Townfolk/BrideGroom.cs
Normal file
80
Scripts/Mobiles/Townfolk/BrideGroom.cs
Normal file
|
|
@ -0,0 +1,80 @@
|
|||
using System;
|
||||
using Server;
|
||||
using Server.Items;
|
||||
using EDI = Server.Mobiles.EscortDestinationInfo;
|
||||
|
||||
namespace Server.Mobiles
|
||||
{
|
||||
public class BrideGroom : BaseEscortable
|
||||
{
|
||||
[Constructable]
|
||||
public BrideGroom()
|
||||
{
|
||||
if ( Female )
|
||||
Title = "the bride";
|
||||
else
|
||||
Title = "the groom";
|
||||
}
|
||||
|
||||
public override bool CanTeach{ get{ return true; } }
|
||||
public override bool ClickTitle{ get{ return false; } } // Do not display 'the groom' when single-clicking
|
||||
|
||||
private static int GetRandomHue()
|
||||
{
|
||||
switch ( Utility.Random( 6 ) )
|
||||
{
|
||||
default:
|
||||
case 0: return 0;
|
||||
case 1: return Utility.RandomBlueHue();
|
||||
case 2: return Utility.RandomGreenHue();
|
||||
case 3: return Utility.RandomRedHue();
|
||||
case 4: return Utility.RandomYellowHue();
|
||||
case 5: return Utility.RandomNeutralHue();
|
||||
}
|
||||
}
|
||||
|
||||
public override void InitOutfit()
|
||||
{
|
||||
if ( Female )
|
||||
AddItem( new FancyDress() );
|
||||
else
|
||||
AddItem( new FancyShirt() );
|
||||
|
||||
int lowHue = GetRandomHue();
|
||||
|
||||
AddItem( new LongPants( lowHue ) );
|
||||
|
||||
if ( Female )
|
||||
AddItem( new Shoes( lowHue ) );
|
||||
else
|
||||
AddItem( new Boots( lowHue ) );
|
||||
|
||||
if( Utility.RandomBool() )
|
||||
HairItemID = 0x203B;
|
||||
else
|
||||
HairItemID = 0x203C;
|
||||
|
||||
HairHue = this.Race.RandomHairHue();
|
||||
|
||||
PackGold( 200, 250 );
|
||||
}
|
||||
|
||||
public BrideGroom( Serial serial ) : base( serial )
|
||||
{
|
||||
}
|
||||
|
||||
public override void Serialize( GenericWriter writer )
|
||||
{
|
||||
base.Serialize( writer );
|
||||
|
||||
writer.Write( (int) 0 ); // version
|
||||
}
|
||||
|
||||
public override void Deserialize( GenericReader reader )
|
||||
{
|
||||
base.Deserialize( reader );
|
||||
|
||||
int version = reader.ReadInt();
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue