using System; using System.Collections.Generic; using Server.Items; namespace Server.Mobiles { public class SBLeatherArmor : SBInfo { private readonly List m_BuyInfo = new InternalBuyInfo(); private readonly IShopSellInfo m_SellInfo = new InternalSellInfo(); public SBLeatherArmor() { } public override IShopSellInfo SellInfo { get { return m_SellInfo; } } public override List BuyInfo { get { return m_BuyInfo; } } public class InternalBuyInfo : List { public InternalBuyInfo() { Add(new GenericBuyInfo(typeof(LeatherArms), 80, 20, 0x13CD, 0)); Add(new GenericBuyInfo(typeof(LeatherChest), 101, 20, 0x13CC, 0)); Add(new GenericBuyInfo(typeof(LeatherGloves), 60, 20, 0x13C6, 0)); Add(new GenericBuyInfo(typeof(LeatherGorget), 74, 20, 0x13C7, 0)); Add(new GenericBuyInfo(typeof(LeatherLegs), 80, 20, 0x13cb, 0)); Add(new GenericBuyInfo(typeof(LeatherCap), 10, 20, 0x1DB9, 0)); Add(new GenericBuyInfo(typeof(FemaleLeatherChest), 116, 20, 0x1C06, 0)); Add(new GenericBuyInfo(typeof(LeatherBustierArms), 97, 20, 0x1C0A, 0)); Add(new GenericBuyInfo(typeof(LeatherShorts), 86, 20, 0x1C00, 0)); Add(new GenericBuyInfo(typeof(LeatherSkirt), 87, 20, 0x1C08, 0)); } } public class InternalSellInfo : GenericSellInfo { public InternalSellInfo() { Add(typeof(LeatherArms), 40); Add(typeof(LeatherChest), 52); Add(typeof(LeatherGloves), 30); Add(typeof(LeatherGorget), 37); Add(typeof(LeatherLegs), 40); Add(typeof(LeatherCap), 5); Add(typeof(FemaleLeatherChest), 18); Add(typeof(FemaleStuddedChest), 25); Add(typeof(LeatherShorts), 14); Add(typeof(LeatherSkirt), 11); Add(typeof(LeatherBustierArms), 11); Add(typeof(StuddedBustierArms), 27); } } } }