24 lines
No EOL
564 B
C#
24 lines
No EOL
564 B
C#
using System.Collections.Generic;
|
|
using Server.Items;
|
|
|
|
namespace Server.Mobiles
|
|
{
|
|
public class SBNinja : SBInfo
|
|
{
|
|
public override IShopSellInfo SellInfo{ get; } = new InternalSellInfo();
|
|
|
|
public override List<GenericBuyInfo> BuyInfo{ get; } = new InternalBuyInfo();
|
|
|
|
public class InternalBuyInfo : List<GenericBuyInfo>
|
|
{
|
|
public InternalBuyInfo()
|
|
{
|
|
Add(new GenericBuyInfo(typeof(BookOfNinjitsu), 335, 20, 0x23A0, 0));
|
|
}
|
|
}
|
|
|
|
public class InternalSellInfo : GenericSellInfo
|
|
{
|
|
}
|
|
}
|
|
} |