34 lines
734 B
C#
34 lines
734 B
C#
using System.Collections.Generic;
|
|
using Server.Items;
|
|
|
|
namespace Server.Mobiles
|
|
{
|
|
public class SBFurtrader : SBInfo
|
|
{
|
|
private List<GenericBuyInfo> m_BuyInfo = new InternalBuyInfo();
|
|
private IShopSellInfo m_SellInfo = new InternalSellInfo();
|
|
|
|
public SBFurtrader()
|
|
{
|
|
}
|
|
|
|
public override IShopSellInfo SellInfo => m_SellInfo;
|
|
public override List<GenericBuyInfo> BuyInfo => m_BuyInfo;
|
|
|
|
public class InternalBuyInfo : List<GenericBuyInfo>
|
|
{
|
|
public InternalBuyInfo()
|
|
{
|
|
Add( new GenericBuyInfo( typeof( Hides ), 3, 40, 0x1079, 0 ) );
|
|
}
|
|
}
|
|
|
|
public class InternalSellInfo : GenericSellInfo
|
|
{
|
|
public InternalSellInfo()
|
|
{
|
|
Add( typeof( Hides ), 2 );
|
|
}
|
|
}
|
|
}
|
|
}
|