fix: Fixes arbitrage by adjusting prices. (#1500)

This commit is contained in:
Kamron Batman 2023-09-15 19:22:35 -07:00 committed by GitHub
parent 3481f60f5b
commit 25eaff0b68
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 21 additions and 21 deletions

View file

@ -23,7 +23,7 @@ namespace Server.Mobiles
public InternalSellInfo()
{
Add(typeof(Hides), 2);
Add(typeof(ThighBoots), 28);
Add(typeof(ThighBoots), 7);
}
}
}

View file

@ -101,7 +101,7 @@ namespace Server.Mobiles
}
Add(typeof(RecallRune), 13);
Add(typeof(Spellbook), 25);
Add(typeof(Spellbook), 9);
var types = Loot.RegularScrollTypes;

View file

@ -28,7 +28,7 @@ namespace Server.Mobiles
{
public InternalSellInfo()
{
Add(typeof(BlankScroll), 6);
Add(typeof(BlankScroll), 3);
Add(typeof(MapmakersPen), 4);
Add(typeof(BlankMap), 2);
Add(typeof(CityMap), 3);

View file

@ -13,12 +13,12 @@ namespace Server.Mobiles
{
public InternalBuyInfo()
{
Add(new GenericBuyInfo(typeof(LeatherGorget), 31, 20, 0x13C7, 0));
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(LeatherArms), 37, 20, 0x13CD, 0));
Add(new GenericBuyInfo(typeof(LeatherChest), 47, 20, 0x13CC, 0));
Add(new GenericBuyInfo(typeof(LeatherLegs), 36, 20, 0x13CB, 0));
Add(new GenericBuyInfo(typeof(LeatherGloves), 31, 20, 0x13C6, 0));
Add(new GenericBuyInfo(typeof(StuddedGorget), 50, 20, 0x13D6, 0));
Add(new GenericBuyInfo(typeof(StuddedArms), 57, 20, 0x13DC, 0));
@ -28,13 +28,13 @@ namespace Server.Mobiles
Add(new GenericBuyInfo(typeof(FemaleStuddedChest), 62, 20, 0x1C02, 0));
Add(new GenericBuyInfo(typeof(FemalePlateChest), 207, 20, 0x1C04, 0));
Add(new GenericBuyInfo(typeof(FemaleLeatherChest), 36, 20, 0x1C06, 0));
Add(new GenericBuyInfo(typeof(LeatherShorts), 28, 20, 0x1C00, 0));
Add(new GenericBuyInfo(typeof(LeatherSkirt), 25, 20, 0x1C08, 0));
Add(new GenericBuyInfo(typeof(LeatherBustierArms), 25, 20, 0x1C0A, 0));
Add(new GenericBuyInfo(typeof(LeatherBustierArms), 30, 20, 0x1C0B, 0));
Add(new GenericBuyInfo(typeof(StuddedBustierArms), 50, 20, 0x1C0C, 0));
Add(new GenericBuyInfo(typeof(StuddedBustierArms), 47, 20, 0x1C0D, 0));
Add(new GenericBuyInfo(typeof(FemaleLeatherChest), 116, 20, 0x1C06, 0));
Add(new GenericBuyInfo(typeof(LeatherShorts), 86, 20, 0x1C00, 0));
Add(new GenericBuyInfo(typeof(LeatherSkirt), 87, 20, 0x1C08, 0));
Add(new GenericBuyInfo(typeof(LeatherBustierArms), 97, 20, 0x1C0A, 0));
Add(new GenericBuyInfo(typeof(LeatherBustierArms), 97, 20, 0x1C0B, 0));
Add(new GenericBuyInfo(typeof(StuddedBustierArms), 97, 20, 0x1C0C, 0));
Add(new GenericBuyInfo(typeof(StuddedBustierArms), 97, 20, 0x1C0D, 0));
Add(new GenericBuyInfo(typeof(Bag), 6, 20, 0xE76, 0));
Add(new GenericBuyInfo(typeof(Pouch), 6, 20, 0xE79, 0));
@ -59,11 +59,11 @@ namespace Server.Mobiles
Add(typeof(SkinningKnife), 7);
Add(typeof(LeatherArms), 18);
Add(typeof(LeatherChest), 23);
Add(typeof(LeatherGloves), 15);
Add(typeof(LeatherGorget), 15);
Add(typeof(LeatherLegs), 18);
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(StuddedArms), 43);

View file

@ -21,7 +21,7 @@ namespace Server.Mobiles
Add(new GenericBuyInfo(typeof(CompositeBow), 45, 20, 0x26C2, 0));
}
Add(new GenericBuyInfo(typeof(Bolt), 2, Utility.Random(30, 60), 0x1BFB, 0));
Add(new GenericBuyInfo(typeof(Bolt), 3, Utility.Random(30, 60), 0x1BFB, 0));
Add(new GenericBuyInfo(typeof(Bow), 40, 20, 0x13B2, 0));
Add(new GenericBuyInfo(typeof(Arrow), 2, Utility.Random(30, 60), 0xF3F, 0));
Add(new GenericBuyInfo(typeof(Feather), 2, Utility.Random(30, 60), 0x1BD1, 0));