1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
-
- namespace XmdsCommonServer.Plugin
- {
- public class XmdsGameConfig
- {
- #region PK相关.
-
-
-
- public int PK_ATK_ADD = 0;
-
-
-
- public int PK_KILL_ADD = 100;
-
-
-
- public int PK_VALUE_UPDATE_CYCLE = 60000;
-
-
-
- public int PK_VALUE_REDUCE = 1;
-
-
-
- public int[] PK_LEVEL_BLACK_RANGE = { 1, 100 };
-
-
-
- public int[] PK_LEVEL_YELLOW_RANGE = { 101, 300 };
-
-
-
- public int[] PK_LEVEL_RED_RANGE = { 301, int.MaxValue };
- #endregion
- public static XmdsGameConfig Instance
- {
- get;
- private set;
- }
- public XmdsGameConfig() { Instance = this; }
- }
- }
|