Overwrite

Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
Unstable Kitsune
2023-11-28 23:20:26 -05:00
parent 3cd54811de
commit b918192e4e
11608 changed files with 2644205 additions and 47 deletions

View File

@@ -0,0 +1,67 @@
using System;
using System.Collections.Generic;
using Server.Items;
namespace Server.Mobiles
{
public class SBLeatherArmor : SBInfo
{
private readonly List<GenericBuyInfo> m_BuyInfo = new InternalBuyInfo();
private readonly IShopSellInfo m_SellInfo = new InternalSellInfo();
public SBLeatherArmor()
{
}
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(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);
}
}
}
}