namespace XmdsCommonServer.Plugin { public class XmdsGameConfig { #region PK相关. /// /// 首次攻击增加. /// public int PK_ATK_ADD = 0; /// /// 击杀玩家增加. /// public int PK_KILL_ADD = 100; /// /// PK值在线刷新时间. /// public int PK_VALUE_UPDATE_CYCLE = 60000; /// /// 在线衰退值. /// public int PK_VALUE_REDUCE = 1; /// /// 黑名PK值区间. /// public int[] PK_LEVEL_BLACK_RANGE = { 1, 100 }; /// /// 黄名PK值区间. /// public int[] PK_LEVEL_YELLOW_RANGE = { 101, 300 }; /// /// 红名PK值区间. /// public int[] PK_LEVEL_RED_RANGE = { 301, int.MaxValue }; #endregion public static XmdsGameConfig Instance { get; private set; } public XmdsGameConfig() { Instance = this; } } }