源战役客户端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

96 lines
3.0 KiB

  1. Config = Config or {}
  2. local Config = Config
  3. Config.ConfigStarShadow = {}
  4. --英灵吞噬颜色选择菜单
  5. Config.ConfigStarShadow.EatTabColor = {
  6. [1] = {id = 1, color = 3, desc = "橙色装备"},
  7. [2] = {id = 2, color = 2, desc = "紫色装备"},
  8. [3] = {id = 3, color = 1, desc = "蓝色装备"},
  9. [4] = {id = 4, color = 999, desc = "任意品质"},
  10. }
  11. --英灵吞噬阶数选择菜单
  12. Config.ConfigStarShadow.EatTabGrade = {
  13. [1] = {id = 1, grade = 8, desc = "八阶及以下"},
  14. [2] = {id = 2, grade = 7, desc = "七阶及以下"},
  15. [3] = {id = 3, grade = 6, desc = "六阶及以下"},
  16. [4] = {id = 4, grade = 5, desc = "五阶及以下"},
  17. [5] = {id = 5, grade = 4, desc = "四阶及以下"},
  18. [6] = {id = 6, grade = 3, desc = "三阶及以下"},
  19. [7] = {id = 7, grade = 2, desc = "二阶及以下"},
  20. [8] = {id = 8, grade = 999, desc = "任意阶数"},
  21. }
  22. Config.ConfigStarShadow.open_day = 12
  23. --默认选中某颜色以下(包括该颜色), 任意是999
  24. Config.ConfigStarShadow.DefaultSelectColor = 1
  25. --默认选中某阶数以下(包括该阶数), 任意是999
  26. Config.ConfigStarShadow.DefaultSelectGrade = 3
  27. --魂坛开放等级
  28. Config.ConfigStarShadow.OpenTanLevel = 95
  29. --合成开放等级
  30. Config.ConfigStarShadow.OpenComposeLevel = 95
  31. --分解御魂可获得的物品
  32. Config.ConfigStarShadow.ResolveReward = 21020001
  33. --星痕区域描述
  34. Config.ConfigStarShadow.AreaDesc = {
  35. [1] = "1区域星痕基础属性",
  36. [2] = "2区域星痕基础属性",
  37. [3] = "3区域星痕基础属性",
  38. [4] = "4区域星痕基础属性",
  39. }
  40. --可一键分解的陨石石头
  41. Config.ConfigStarShadow.ResolveStone = {
  42. [1] = 5903002,
  43. [2] = 5903003,
  44. [3] = 5903004,
  45. }
  46. --点击跳转
  47. Config.ConfigStarShadow.Goto = {
  48. [1] = "<a@starshadowsuit1>###</a>",
  49. [2] = "<a@starshadowsuit2>###</a>",
  50. [3] = "<a@starshadowsuit3>###</a>",
  51. [4] = "<a@starshadowsuit4>###</a>",
  52. [5] = "<a@starshadowsuit5>###</a>",
  53. [6] = "<a@starshadowsuit6>###</a>",
  54. [7] = "<a@starshadowsuit7>###</a>",
  55. [8] = "<a@starshadowsuit8>###</a>",
  56. [9] = "<a@starshadowsuit9>###</a>",
  57. [10] = "<a@starshadowsuit10>###</a>",
  58. [11] = "<a@starshadowsuit11>###</a>",
  59. [12] = "<a@starshadowsuit12>###</a>",
  60. [13] = "<a@starshadowsuit13>###</a>",
  61. [14] = "<a@starshadowsuit14>###</a>",
  62. [15] = "<a@starshadowsuit15>###</a>",
  63. [16] = "<a@starshadowsuit16>###</a>",
  64. [17] = "<a@starshadowsuit17>###</a>",
  65. [18] = "<a@starshadowsuit18>###</a>",
  66. [19] = "<a@starshadowsuit19>###</a>",
  67. [20] = "<a@starshadowsuit20>###</a>",
  68. [21] = "<a@starshadowsuit21>###</a>",
  69. [22] = "<a@starshadowsuit22>###</a>",
  70. [23] = "<a@starshadowsuit23>###</a>",
  71. [24] = "<a@starshadowsuit24>###</a>",
  72. [25] = "<a@starshadowsuit25>###</a>",
  73. [26] = "<a@starshadowsuit26>###</a>",
  74. [27] = "<a@starshadowsuit27>###</a>",
  75. [28] = "<a@starshadowsuit28>###</a>",
  76. [29] = "<a@starshadowsuit29>###</a>",
  77. [30] = "<a@starshadowsuit30>###</a>",
  78. [31] = "<a@starshadowsuit31>###</a>",
  79. [32] = "<a@starshadowsuit32>###</a>",
  80. [33] = "<a@starshadowsuit33>###</a>",
  81. [34] = "<a@starshadowsuit34>###</a>",
  82. [35] = "<a@starshadowsuit35>###</a>",
  83. }