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,88 @@
using System;
using System.Collections.Generic;
using Server.Items;
namespace Server.Mobiles
{
public class SBJewel : SBInfo
{
private readonly List<GenericBuyInfo> m_BuyInfo = new InternalBuyInfo();
private readonly IShopSellInfo m_SellInfo = new InternalSellInfo();
public SBJewel()
{
}
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(GoldRing), 27, 20, 0x108A, 0));
Add(new GenericBuyInfo(typeof(Necklace), 26, 20, 0x1085, 0));
Add(new GenericBuyInfo(typeof(GoldNecklace), 27, 20, 0x1088, 0));
Add(new GenericBuyInfo(typeof(GoldBeadNecklace), 27, 20, 0x1089, 0));
Add(new GenericBuyInfo(typeof(Beads), 27, 20, 0x108B, 0, true));
Add(new GenericBuyInfo(typeof(GoldBracelet), 27, 20, 0x1086, 0));
Add(new GenericBuyInfo(typeof(GoldEarrings), 27, 20, 0x1087, 0));
Add(new GenericBuyInfo("1060740", typeof(BroadcastCrystal), 68, 20, 0x1ED0, 0, new object[] { 500 })); // 500 charges
Add(new GenericBuyInfo("1060740", typeof(BroadcastCrystal), 131, 20, 0x1ED0, 0, new object[] { 1000 })); // 1000 charges
Add(new GenericBuyInfo("1060740", typeof(BroadcastCrystal), 256, 20, 0x1ED0, 0, new object[] { 2000 })); // 2000 charges
Add(new GenericBuyInfo("1060740", typeof(ReceiverCrystal), 6, 20, 0x1ED0, 0));
Add(new GenericBuyInfo(typeof(StarSapphire), 125, 20, 0x0F0F, 0, true));
Add(new GenericBuyInfo(typeof(Emerald), 100, 20, 0xF10, 0, true));
Add(new GenericBuyInfo(typeof(Sapphire), 100, 20, 0xF19, 0, true));
Add(new GenericBuyInfo(typeof(Ruby), 75, 20, 0xF13, 0, true));
Add(new GenericBuyInfo(typeof(Citrine), 50, 20, 0xF15, 0, true));
Add(new GenericBuyInfo(typeof(Amethyst), 100, 20, 0xF16, 0, true));
Add(new GenericBuyInfo(typeof(Tourmaline), 75, 20, 0x0F18, 0, true));
Add(new GenericBuyInfo(typeof(Amber), 50, 20, 0xF25, 0, true));
Add(new GenericBuyInfo(typeof(Diamond), 200, 20, 0xF26, 0, true));
}
}
public class InternalSellInfo : GenericSellInfo
{
public InternalSellInfo()
{
Add(typeof(Amber), 25);
Add(typeof(Amethyst), 50);
Add(typeof(Citrine), 25);
Add(typeof(Diamond), 100);
Add(typeof(Emerald), 50);
Add(typeof(Ruby), 37);
Add(typeof(Sapphire), 50);
Add(typeof(StarSapphire), 62);
Add(typeof(Tourmaline), 47);
Add(typeof(GoldRing), 13);
Add(typeof(SilverRing), 10);
Add(typeof(Necklace), 13);
Add(typeof(GoldNecklace), 13);
Add(typeof(GoldBeadNecklace), 13);
Add(typeof(SilverNecklace), 10);
Add(typeof(SilverBeadNecklace), 10);
Add(typeof(Beads), 13);
Add(typeof(GoldBracelet), 13);
Add(typeof(SilverBracelet), 10);
Add(typeof(GoldEarrings), 13);
Add(typeof(SilverEarrings), 10);
}
}
}
}