Files
abysmal-isle/Scripts/VendorInfo/SBTinker.cs
Unstable Kitsune b918192e4e Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
2023-11-28 23:20:26 -05:00

149 lines
5.9 KiB
C#

using System;
using System.Collections.Generic;
using Server.Items;
namespace Server.Mobiles
{
public class SBTinker : SBInfo
{
private readonly List<GenericBuyInfo> m_BuyInfo;
private readonly IShopSellInfo m_SellInfo = new InternalSellInfo();
public SBTinker(BaseVendor owner)
{
m_BuyInfo = new InternalBuyInfo(owner);
}
public override IShopSellInfo SellInfo
{
get
{
return m_SellInfo;
}
}
public override List<GenericBuyInfo> BuyInfo
{
get
{
return m_BuyInfo;
}
}
public class InternalBuyInfo : List<GenericBuyInfo>
{
public InternalBuyInfo(BaseVendor owner)
{
Add(new GenericBuyInfo(typeof(Clock), 22, 20, 0x104B, 0));
Add(new GenericBuyInfo(typeof(Nails), 3, 20, 0x102E, 0));
Add(new GenericBuyInfo(typeof(ClockParts), 3, 20, 0x104F, 0, true));
Add(new GenericBuyInfo(typeof(AxleGears), 3, 20, 0x1051, 0, true));
Add(new GenericBuyInfo(typeof(Gears), 2, 20, 0x1053, 0, true));
Add(new GenericBuyInfo(typeof(Hinge), 2, 20, 0x1055, 0, true));
Add(new GenericBuyInfo(typeof(Sextant), 13, 20, 0x1057, 0));
Add(new GenericBuyInfo(typeof(SextantParts), 5, 20, 0x1059, 0, true));
Add(new GenericBuyInfo(typeof(Axle), 2, 20, 0x105B, 0, true));
Add(new GenericBuyInfo(typeof(Springs), 3, 20, 0x105D, 0, true));
Add(new GenericBuyInfo("1024111", typeof(Key), 8, 20, 0x100F, 0));
Add(new GenericBuyInfo("1024112", typeof(Key), 8, 20, 0x1010, 0));
Add(new GenericBuyInfo("1024115", typeof(Key), 8, 20, 0x1013, 0));
Add(new GenericBuyInfo(typeof(KeyRing), 8, 20, 0x1010, 0));
Add(new GenericBuyInfo(typeof(Lockpick), 12, 20, 0x14FC, 0, true));
Add(new GenericBuyInfo(typeof(TinkersTools), 7, 20, 0x1EBC, 0));
Add(new GenericBuyInfo(typeof(Board), 3, 20, 0x1BD7, 0, true));
Add(new GenericBuyInfo(typeof(IronIngot), 5, 16, 0x1BF2, 0, true));
Add(new GenericBuyInfo(typeof(SewingKit), 3, 20, 0xF9D, 0));
Add(new GenericBuyInfo(typeof(DrawKnife), 10, 20, 0x10E4, 0));
Add(new GenericBuyInfo(typeof(Froe), 10, 20, 0x10E5, 0));
Add(new GenericBuyInfo(typeof(Scorp), 10, 20, 0x10E7, 0));
Add(new GenericBuyInfo(typeof(Inshave), 10, 20, 0x10E6, 0));
Add(new GenericBuyInfo(typeof(ButcherKnife), 13, 20, 0x13F6, 0));
Add(new GenericBuyInfo(typeof(Scissors), 11, 20, 0xF9F, 0));
Add(new GenericBuyInfo(typeof(Tongs), 13, 14, 0xFBB, 0));
Add(new GenericBuyInfo(typeof(DovetailSaw), 12, 20, 0x1028, 0));
Add(new GenericBuyInfo(typeof(Saw), 15, 20, 0x1034, 0));
Add(new GenericBuyInfo(typeof(Hammer), 17, 20, 0x102A, 0));
Add(new GenericBuyInfo(typeof(SmithHammer), 23, 20, 0x13E3, 0));
// TODO: Sledgehammer
Add(new GenericBuyInfo(typeof(Shovel), 12, 20, 0xF39, 0));
Add(new GenericBuyInfo(typeof(MouldingPlane), 11, 20, 0x102C, 0));
Add(new GenericBuyInfo(typeof(JointingPlane), 10, 20, 0x1030, 0));
Add(new GenericBuyInfo(typeof(SmoothingPlane), 11, 20, 0x1032, 0));
Add(new GenericBuyInfo(typeof(Pickaxe), 25, 20, 0xE86, 0));
Add(new GenericBuyInfo(typeof(Drums), 21, 20, 0x0E9C, 0));
Add(new GenericBuyInfo(typeof(Tambourine), 21, 20, 0x0E9E, 0));
Add(new GenericBuyInfo(typeof(LapHarp), 21, 20, 0x0EB2, 0));
Add(new GenericBuyInfo(typeof(Lute), 21, 20, 0x0EB3, 0));
if (owner != null && owner.Race == Race.Gargoyle)
{
Add(new GenericBuyInfo(typeof(AudChar), 33, 20, 0x403B, 0));
Add(new GenericBuyInfo("1080201", typeof(StatuetteEngravingTool), 1253, 20, 0x12B3, 0));
Add(new GenericBuyInfo(typeof(BasketWeavingBook), 10625, 20, 0xFBE, 0));
}
}
}
public class InternalSellInfo : GenericSellInfo
{
public InternalSellInfo()
{
Add(typeof(Drums), 10);
Add(typeof(Tambourine), 10);
Add(typeof(LapHarp), 10);
Add(typeof(Lute), 10);
Add(typeof(Shovel), 6);
Add(typeof(SewingKit), 1);
Add(typeof(Scissors), 6);
Add(typeof(Tongs), 7);
Add(typeof(Key), 1);
Add(typeof(DovetailSaw), 6);
Add(typeof(MouldingPlane), 6);
Add(typeof(Nails), 1);
Add(typeof(JointingPlane), 6);
Add(typeof(SmoothingPlane), 6);
Add(typeof(Saw), 7);
Add(typeof(Clock), 11);
Add(typeof(ClockParts), 1);
Add(typeof(AxleGears), 1);
Add(typeof(Gears), 1);
Add(typeof(Hinge), 1);
Add(typeof(Sextant), 6);
Add(typeof(SextantParts), 2);
Add(typeof(Axle), 1);
Add(typeof(Springs), 1);
Add(typeof(DrawKnife), 5);
Add(typeof(Froe), 5);
Add(typeof(Inshave), 5);
Add(typeof(Scorp), 5);
Add(typeof(Lockpick), 6);
Add(typeof(TinkerTools), 3);
Add(typeof(Board), 1);
Add(typeof(Log), 1);
Add(typeof(Pickaxe), 16);
Add(typeof(Hammer), 3);
Add(typeof(SmithHammer), 11);
Add(typeof(ButcherKnife), 6);
}
}
}
}