Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
70
Scripts/VendorInfo/SBBaker.cs
Normal file
70
Scripts/VendorInfo/SBBaker.cs
Normal file
@@ -0,0 +1,70 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Server.Items;
|
||||
|
||||
namespace Server.Mobiles
|
||||
{
|
||||
public class SBBaker : SBInfo
|
||||
{
|
||||
private readonly List<GenericBuyInfo> m_BuyInfo = new InternalBuyInfo();
|
||||
private readonly IShopSellInfo m_SellInfo = new InternalSellInfo();
|
||||
public SBBaker()
|
||||
{
|
||||
}
|
||||
|
||||
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("1031235", typeof(FreshGinger), 505, 10, 11235, 0));
|
||||
Add(new GenericBuyInfo(typeof(BreadLoaf), 6, 20, 0x103B, 0));
|
||||
Add(new GenericBuyInfo(typeof(BreadLoaf), 5, 20, 0x103C, 0));
|
||||
Add(new GenericBuyInfo(typeof(ApplePie), 7, 20, 0x1041, 0)); //OSI just has Pie, not Apple/Fruit/Meat
|
||||
Add(new GenericBuyInfo(typeof(Cake), 13, 20, 0x9E9, 0));
|
||||
Add(new GenericBuyInfo(typeof(Muffins), 3, 20, 0x9EA, 0));
|
||||
Add(new GenericBuyInfo(typeof(SackFlour), 3, 20, 0x1039, 0));
|
||||
Add(new GenericBuyInfo(typeof(FrenchBread), 5, 20, 0x98C, 0));
|
||||
Add(new GenericBuyInfo(typeof(Cookies), 3, 20, 0x160b, 0));
|
||||
Add(new GenericBuyInfo(typeof(CheesePizza), 8, 10, 0x1040, 0)); // OSI just has Pizza
|
||||
Add(new GenericBuyInfo(typeof(JarHoney), 3, 20, 0x9ec, 0));
|
||||
Add(new GenericBuyInfo(typeof(BowlFlour), 7, 20, 0xA1E, 0));
|
||||
}
|
||||
}
|
||||
|
||||
public class InternalSellInfo : GenericSellInfo
|
||||
{
|
||||
public InternalSellInfo()
|
||||
{
|
||||
Add(typeof(BreadLoaf), 3);
|
||||
Add(typeof(FrenchBread), 1);
|
||||
Add(typeof(Cake), 5);
|
||||
Add(typeof(Cookies), 3);
|
||||
Add(typeof(Muffins), 2);
|
||||
Add(typeof(CheesePizza), 4);
|
||||
Add(typeof(ApplePie), 5);
|
||||
Add(typeof(PeachCobbler), 5);
|
||||
Add(typeof(Quiche), 6);
|
||||
Add(typeof(Dough), 4);
|
||||
Add(typeof(JarHoney), 1);
|
||||
Add(typeof(Pitcher), 5);
|
||||
Add(typeof(SackFlour), 1);
|
||||
Add(typeof(Eggs), 1);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user