#W# Initial Commit: Avatars Conquest
This commit is contained in:
commit
5df497787a
7510 changed files with 416048 additions and 0 deletions
57
Scripts/Mobiles/Towns/Sales/SBButcher.cs
Normal file
57
Scripts/Mobiles/Towns/Sales/SBButcher.cs
Normal file
|
|
@ -0,0 +1,57 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Server.Items;
|
||||
|
||||
namespace Server.Mobiles
|
||||
{
|
||||
public class SBButcher : SBInfo
|
||||
{
|
||||
private List<GenericBuyInfo> m_BuyInfo = new InternalBuyInfo();
|
||||
private IShopSellInfo m_SellInfo = new InternalSellInfo();
|
||||
|
||||
public SBButcher()
|
||||
{
|
||||
}
|
||||
|
||||
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( Bacon ), 7, 20, 0x979, 0 ) );
|
||||
Add( new GenericBuyInfo( typeof( Ham ), 26, 20, 0x9C9, 0 ) );
|
||||
Add( new GenericBuyInfo( typeof( Sausage ), 18, 20, 0x9C0, 0 ) );
|
||||
Add( new GenericBuyInfo( typeof( RawChickenLeg ), 6, 20, 0x1607, 0 ) );
|
||||
Add( new GenericBuyInfo( typeof( RawBird ), 9, 20, 0x9B9, 0 ) );
|
||||
Add( new GenericBuyInfo( typeof( RawHam ), 9, 20, 0x096F, 0 ) );
|
||||
Add( new GenericBuyInfo( typeof( RawLambLeg ), 9, 20, 0x1609, 0 ) );
|
||||
Add( new GenericBuyInfo( typeof( RawSlabOfBacon ), 9, 20, 0x0E0F, 0 ) );
|
||||
Add( new GenericBuyInfo( typeof( RawRibs ), 16, 20, 0x9F1, 0 ) );
|
||||
Add( new GenericBuyInfo( typeof( ButcherKnife ), 13, 20, 0x13F6, 0 ) );
|
||||
Add( new GenericBuyInfo( typeof( Cleaver ), 13, 20, 0xEC3, 0 ) );
|
||||
Add( new GenericBuyInfo( typeof( SkinningKnife ), 13, 20, 0xEC4, 0 ) );
|
||||
}
|
||||
}
|
||||
|
||||
public class InternalSellInfo : GenericSellInfo
|
||||
{
|
||||
public InternalSellInfo()
|
||||
{
|
||||
Add( typeof( RawRibs ), 8 );
|
||||
Add( typeof( RawLambLeg ), 4 );
|
||||
Add( typeof( RawChickenLeg ), 3 );
|
||||
Add( typeof( RawHam ), 4 );
|
||||
Add( typeof( RawBird ), 4 );
|
||||
Add( typeof( RawSlabOfBacon ), 4 );
|
||||
Add( typeof( Bacon ), 3 );
|
||||
Add( typeof( Sausage ), 9 );
|
||||
Add( typeof( Ham ), 13 );
|
||||
Add( typeof( ButcherKnife ), 7 );
|
||||
Add( typeof( Cleaver ), 7 );
|
||||
Add( typeof( SkinningKnife ), 7 );
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue