123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- using CommonAI.Zone.Helper;
- namespace CommonAI
- {
- public class XmdsConstConfig
- {
-
-
-
- public enum UnitSubState : byte
- {
- NONE = 0,
- YINSHENG = 1,
- }
- public static string GetSubStateActionName(byte state)
- {
- string ret = null;
- switch (state)
- {
- case (byte)UnitActionSubStatus.Stealth:
- ret = "f_run02";
- break;
- default: break;
- }
- return ret;
- }
-
-
-
- public enum BattleFloatTipsType : byte
- {
- MIAN_YI_SIWANG = 1,
- ZHI_LIAO_SHANG_SHENG = 2,
- GONG_JI_SHANG_SHENG = 3,
- BAO_JI_SHANG_SHENG = 4,
- SHENG_DIAN_JIA = 5,
- FANG_YU_SHANG_SHENG = 6,
- }
-
-
-
- public enum SpecialState : byte
- {
- None = 0,
- WANTED = 1,
- }
-
- public enum AreaType : byte
- {
- None = 0,
- AreaFiled = 1,
- AreaDungeon = 2,
- }
-
-
-
- public const string AUTO_GUARD_MODE_MAP = "map";
-
-
-
- public const string AUTO_GUARD_MODE_POINT = "point";
-
-
-
- public const string TIPS_CAN_NOT_RIDE = "canNotRide";
- public const string TIPS_UNDER_ATTACK = "underAttack";
- public const string TIPS_BE_BUSY = "beBusy";
- public const string TIPS_MP_NOT_ENOUGH = "mpNotEnough";
- public const string TIPS_CAN_NOT_USE_SKILL = "canNotSkill";
- public const string TIPS_CAN_NOT_ENTER_SCENE = "canNotInterServer";
- public const string TIPS_REFINE_PUT_OK = "set_soul";
- public const string TIPS_REFINE_GET_OK = "get_soul";
- public const string TIPS_IN_PK_PROTECT = "safeguard";
- public const string TIPS_REFINE_BLINK = "refineItem_blink";
- public const string TIPS_FOLLOW_FAIL = "followfail";
- public const string TIPS_BAG_FULL = "bag_full";
-
- public const string TIPS_CALL_BACK_BTN = "CallBackBtn";
-
- public const string CANNOT_LAUNCH_DISPACEMENTSKILL = "cannotmove_canotlaunch_dispacementskill";
-
- public const string TIPS_FIRST_CANNOT_AUTO = "first_cannot_auto";
-
- public const string TIPS_PICK_MAX = "pick_max";
-
- public const float AUTOPICK_RANGE = 13;
-
- public const int AUTOPICK_RANGE_PVP = 1;
-
- public static int GAME_UPDATE_INTERVAL_MS = 0;
-
- public static readonly int DEFAULT_PET_TEMPLATE_ID = 500000;
- public static readonly int DEFAULT_PLAYER_TEMPLATE_ID = 500001;
-
- public static readonly int DAMAGE_CHG_MAX = 9500;
- public static readonly int SKILL_CD_REDUCE_MAX = 8000;
-
-
- public static readonly int DEFAULT_WEIGHT = 100;
-
- public static float PET_SHARE_MASTERDMG_RATIO = 0.2f;
- public static float PET_HEALD_RATIO = 1.0f;
- }
- }
|