ModernUO/Projects/Scripts/Mobiles/Vendors/SBInfo/SE/SBSEArmor.cs
2019-08-02 18:16:11 -07:00

42 lines
No EOL
1.5 KiB
C#

using System.Collections.Generic;
using Server.Items;
namespace Server.Mobiles
{
public class SBSEArmor : SBInfo
{
public override IShopSellInfo SellInfo{ get; } = new InternalSellInfo();
public override List<GenericBuyInfo> BuyInfo{ get; } = new InternalBuyInfo();
public class InternalBuyInfo : List<GenericBuyInfo>
{
public InternalBuyInfo()
{
Add(new GenericBuyInfo(typeof(PlateHatsuburi), 76, 20, 0x2775, 0));
Add(new GenericBuyInfo(typeof(HeavyPlateJingasa), 76, 20, 0x2777, 0));
Add(new GenericBuyInfo(typeof(DecorativePlateKabuto), 95, 20, 0x2778, 0));
Add(new GenericBuyInfo(typeof(PlateDo), 310, 20, 0x277D, 0));
Add(new GenericBuyInfo(typeof(PlateHiroSode), 222, 20, 0x2780, 0));
Add(new GenericBuyInfo(typeof(PlateSuneate), 224, 20, 0x2788, 0));
Add(new GenericBuyInfo(typeof(PlateHaidate), 235, 20, 0x278D, 0));
Add(new GenericBuyInfo(typeof(ChainHatsuburi), 76, 20, 0x2774, 0));
}
}
public class InternalSellInfo : GenericSellInfo
{
public InternalSellInfo()
{
Add(typeof(PlateHatsuburi), 38);
Add(typeof(HeavyPlateJingasa), 38);
Add(typeof(DecorativePlateKabuto), 47);
Add(typeof(PlateDo), 155);
Add(typeof(PlateHiroSode), 111);
Add(typeof(PlateSuneate), 112);
Add(typeof(PlateHaidate), 117);
Add(typeof(ChainHatsuburi), 38);
}
}
}
}