PlayParticipationEnum.cs 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. using System.ComponentModel;
  2. namespace ET
  3. {
  4. /// <summary>
  5. /// 游戏玩法
  6. /// </summary>
  7. public enum PlayParticipationEnum
  8. {
  9. [Description("蜃中楼")]
  10. CHUN_ZHONG_LOU = 901,
  11. [Description("服装店")]
  12. FU_ZHUANG_DIAN = 902,
  13. [Description("服装养护")]
  14. FU_ZHUANG_YANG_CHENG = 903,
  15. [Description("服装合成")]
  16. FU_ZHUANG_HE_CHENG = 904,
  17. [Description("服装分解")]
  18. FU_ZHUANG_FEN_JIE = 905,
  19. [Description("摘星")]
  20. ZAI_XING = 906,
  21. [Description("织物修复")]
  22. ZHI_WU_XIU_FU = 907,
  23. [Description("金属修复")]
  24. JIN_SHU_XIU_FU = 908,
  25. [Description("书画修复")]
  26. SHU_HUA_XIU_FU = 909,
  27. [Description("查阅建档")]
  28. CHA_YUE_JIAN_DNAG = 910,
  29. [Description("田野调查")]
  30. TIAN_YE_DIAO_CHA = 911,
  31. [Description("图鉴")]
  32. TU_JIAN = 912,
  33. [Description("商城")]
  34. SHANG_CHENG = 913,
  35. [Description("拍照")]
  36. PAI_ZHAO = 914,
  37. [Description("每日任务")]
  38. MEI_RI_REN_WU = 915,
  39. [Description("每日登陆")]
  40. MEI_RI_DNEG_LU = 916,
  41. [Description("词牌")]
  42. CI_PAI = 917,
  43. [Description("技能书分解")]
  44. SKILL_BOOK_FEN_JIE = 918,
  45. }
  46. }