using System;
using System.Collections;
using Server.Items;
namespace Server.Mobiles
{
public class SBNinjaDealer : SBInfo
{
private ArrayList m_BuyInfo = new InternalBuyInfo();
private IShopSellInfo m_SellInfo = new InternalSellInfo();
public SBNinjaDealer()
{
}
public override IShopSellInfo SellInfo { get { return m_SellInfo; } }
public override ArrayList BuyInfo { get { return m_BuyInfo; } }
public class InternalBuyInfo : ArrayList
{
public InternalBuyInfo()
{
Add( new GenericBuyInfo( typeof( BookOfNinjitsu ), 100, 999, 0x23A0, 0 ) );
Add( new GenericBuyInfo( typeof( LeatherNinjaHood ), 100, 999, 0x278E, 0 ) );
Add( new GenericBuyInfo( "Leather Ninja Jacket", typeof( LeatherNinjaJacket ), 100, 999, 0x2793, 0 ) );
Add( new GenericBuyInfo( typeof( LeatherNinjaMitts ), 100, 999, 0x2792, 0 ) );
Add( new GenericBuyInfo( typeof( LeatherNinjaPants ), 100, 999, 0x2791, 0 ) );
Add( new GenericBuyInfo( typeof( NinjaTabi ), 100, 999, 0x2797, 0 ) );
}
}
public class InternalSellInfo : GenericSellInfo
{
public InternalSellInfo()
{
Add( typeof( BookOfNinjitsu ), 50 );
Add( typeof( LeatherNinjaPants ), 50 );
Add( typeof( LeatherNinjaHood ), 50 );
Add( typeof( LeatherNinjaJacket ), 50 );
Add( typeof( LeatherNinjaMitts ), 50 );
Add( typeof( NinjaTabi ), 50 );
}
}
}
} Total votes: 0
Bulunamadı.
Sunucular 1 hafta önce
Sunucular 1 hafta önce
Duyurular 1 hafta önce
Ultima Online 2 hafta önce
Ultima Online 2 hafta önce
Ultima Online 2 hafta önce
Duyurular 2 hafta önce
Sunucular 3 hafta önce
Sunucular 3 hafta önce
Ultima Online 3 hafta önce
2025-12-27 21:13
2025-12-23 23:17
2025-11-27 19:07
2024-10-31 22:47
2024-10-14 17:45
2024-09-26 14:21
2024-07-08 22:50
2024-07-08 22:34


Yorumlar (0)