#W# Started work on guild rings.

This commit is contained in:
WarrentyExpired 2026-07-24 19:06:22 -04:00
parent 000d16eab6
commit 6cb014d51c
7 changed files with 201 additions and 2 deletions

View file

@ -0,0 +1,12 @@
using System;
using Server.Misc;
using Server.Mobiles;
namespace Server.Items
{
public interface ITradeSkillBonus
{
Trades TradeSkill { get; }
double TradeBonus { get; }
NpcGuild RequiredGuild { get; }
}
}