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

23 lines
No EOL
539 B
C#

using System.Collections.Generic;
namespace Server.Mobiles
{
public class SBRancher : 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 AnimalBuyInfo(1, typeof(PackHorse), 631, 10, 291, 0));
}
}
public class InternalSellInfo : GenericSellInfo
{
}
}
}