#W# Initial Commit: Avatars Conquest

This commit is contained in:
WarrentyExpired 2026-07-03 20:19:48 -04:00
commit 8eae46895e
7512 changed files with 416187 additions and 0 deletions

View file

@ -0,0 +1,102 @@
using System;
using System.Collections.Generic;
using Server.Items;
namespace Server.Mobiles
{
public class SBTailor: SBInfo
{
private List<GenericBuyInfo> m_BuyInfo = new InternalBuyInfo();
private IShopSellInfo m_SellInfo = new InternalSellInfo();
public SBTailor()
{
}
public override IShopSellInfo SellInfo { get { return m_SellInfo; } }
public override List<GenericBuyInfo> BuyInfo { get { return m_BuyInfo; } }
public class InternalBuyInfo : List<GenericBuyInfo>
{
public InternalBuyInfo()
{
Add( new GenericBuyInfo( typeof( SewingKit ), 3, 20, 0xF9D, 0 ) );
Add( new GenericBuyInfo( typeof( Scissors ), 11, 20, 0xF9F, 0 ) );
Add( new GenericBuyInfo( typeof( Shirt ), 12, 20, 0x1517, Utility.RandomHue() ) );
Add( new GenericBuyInfo( typeof( ShortPants ), 7, 20, 0x152E, Utility.RandomHue() ) );
Add( new GenericBuyInfo( typeof( FancyShirt ), 21, 20, 0x1EFD, Utility.RandomHue() ) );
Add( new GenericBuyInfo( typeof( LongPants ), 10, 20, 0x1539, Utility.RandomHue() ) );
Add( new GenericBuyInfo( typeof( FancyDress ), 26, 20, 0x1EFF, Utility.RandomHue() ) );
Add( new GenericBuyInfo( typeof( PlainDress ), 13, 20, 0x1F01, Utility.RandomHue() ) );
Add( new GenericBuyInfo( typeof( Kilt ), 11, 20, 0x1537, Utility.RandomHue() ) );
Add( new GenericBuyInfo( typeof( Kilt ), 11, 20, 0x1537, Utility.RandomDyedHue() ) );
Add( new GenericBuyInfo( typeof( HalfApron ), 10, 20, 0x153b, Utility.RandomHue() ) );
Add( new GenericBuyInfo( typeof( Robe ), 18, 20, 0x1F03, Utility.RandomHue() ) );
Add( new GenericBuyInfo( typeof( Cloak ), 8, 20, 0x1515, Utility.RandomHue() ) );
Add( new GenericBuyInfo( typeof( Cloak ), 8, 20, 0x1515, Utility.RandomHue() ) );
Add( new GenericBuyInfo( typeof( Doublet ), 13, 20, 0x1F7B, Utility.RandomHue() ) );
Add( new GenericBuyInfo( typeof( Tunic ), 18, 20, 0x1FA1, Utility.RandomHue() ) );
Add( new GenericBuyInfo( typeof( JesterSuit ), 26, 20, 0x1F9F, Utility.RandomHue() ) );
Add( new GenericBuyInfo( typeof( JesterHat ), 12, 20, 0x171C, Utility.RandomHue() ) );
Add( new GenericBuyInfo( typeof( FloppyHat ), 7, 20, 0x1713, Utility.RandomDyedHue() ) );
Add( new GenericBuyInfo( typeof( Hood ), 7, 20, 0x141B, Utility.RandomDyedHue() ) );
Add( new GenericBuyInfo( typeof( WideBrimHat ), 8, 20, 0x1714, Utility.RandomDyedHue() ) );
Add( new GenericBuyInfo( typeof( Cap ), 10, 20, 0x1715, Utility.RandomDyedHue() ) );
Add( new GenericBuyInfo( typeof( TallStrawHat ), 8, 20, 0x1716, Utility.RandomDyedHue() ) );
Add( new GenericBuyInfo( typeof( StrawHat ), 7, 20, 0x1717, Utility.RandomDyedHue() ) );
Add( new GenericBuyInfo( typeof( WizardsHat ), 11, 20, 0x1718, Utility.RandomDyedHue() ) );
Add( new GenericBuyInfo( typeof( LeatherCap ), 10, 20, 0x1DB9, Utility.RandomDyedHue() ) );
Add( new GenericBuyInfo( typeof( FeatheredHat ), 10, 20, 0x171A, Utility.RandomDyedHue() ) );
Add( new GenericBuyInfo( typeof( TricorneHat ), 8, 20, 0x171B, Utility.RandomDyedHue() ) );
Add( new GenericBuyInfo( typeof( Bandana ), 6, 20, 0x1540, Utility.RandomDyedHue() ) );
Add( new GenericBuyInfo( typeof( SkullCap ), 7, 20, 0x1544, Utility.RandomDyedHue() ) );
}
}
public class InternalSellInfo : GenericSellInfo
{
public InternalSellInfo()
{
Add( typeof( Scissors ), 6 );
Add( typeof( SewingKit ), 1 );
Add( typeof( FancyShirt ), 10 );
Add( typeof( Shirt ), 6 );
Add( typeof( ShortPants ), 3 );
Add( typeof( LongPants ), 5 );
Add( typeof( Cloak ), 4 );
Add( typeof( FancyDress ), 12 );
Add( typeof( Robe ), 9 );
Add( typeof( PlainDress ), 7 );
Add( typeof( Skirt ), 5 );
Add( typeof( Kilt ), 5 );
Add( typeof( Doublet ), 7 );
Add( typeof( Tunic ), 9 );
Add( typeof( JesterSuit ), 13 );
Add( typeof( FullApron ), 5 );
Add( typeof( HalfApron ), 5 );
Add( typeof( JesterHat ), 6 );
Add( typeof( FloppyHat ), 3 );
Add( typeof( Hood ), 3 );
Add( typeof( WideBrimHat ), 4 );
Add( typeof( Cap ), 5 );
Add( typeof( SkullCap ), 3 );
Add( typeof( Bandana ), 3 );
Add( typeof( TallStrawHat ), 4 );
Add( typeof( StrawHat ), 4 );
Add( typeof( WizardsHat ), 5 );
Add( typeof( Bonnet ), 4 );
Add( typeof( FeatheredHat ), 5 );
Add( typeof( TricorneHat ), 4 );
}
}
}
}