38 lines
955 B
C#
38 lines
955 B
C#
using System;
|
|
using Server;
|
|
using Server.Items;
|
|
using Server.Misc;
|
|
using Server.Mobiles;
|
|
|
|
namespace Server.Items
|
|
{
|
|
public class SmithsRing : GoldRing, ITradeSkillBonus
|
|
{
|
|
public Trades TradeSkill { get { return Trades.Blacksmith; } }
|
|
public double TradeBonus { get { return 5.0; } }
|
|
public NpcGuild RequiredGuild { get { return NpcGuild.BlacksmithsGuild; } }
|
|
|
|
[Constructable]
|
|
public SmithsRing()
|
|
{
|
|
Name = "ring of the master smith";
|
|
Hue = 0x482;
|
|
}
|
|
|
|
public SmithsRing( Serial serial ) : base( serial )
|
|
{
|
|
}
|
|
|
|
public override void Serialize( GenericWriter writer )
|
|
{
|
|
base.Serialize( writer );
|
|
writer.Write( (int) 0 );
|
|
}
|
|
|
|
public override void Deserialize( GenericReader reader )
|
|
{
|
|
base.Deserialize( reader );
|
|
int version = reader.ReadInt();
|
|
}
|
|
}
|
|
}
|