cfg_repfairyland.lua 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. -- 此文件工具自动生成,不要修改
  2. ---@class cfg_repfairyland_column
  3. ---@field id number @唯一id column=1 A
  4. ---策划备注
  5. ---@field cehuakan string @备注 column=2 B
  6. ---关卡名称
  7. ---@field name StringList @关卡名称 column=3 C
  8. ---到达等级可进入挑战
  9. ---填空=无限制
  10. ---@field level number @等级限制 column=4 D
  11. ---开服天数到达X天可进入挑战
  12. ---填空=无限制
  13. ---@field startDay number @开服天数限制 column=5 E
  14. ---检测全身穿戴的装备的强化等级,到达配置等级后可进入挑战
  15. ---填空=无限制
  16. ---@field strengthenLevel number @强化等级限制 column=6 F
  17. ---关联cfg_map_info表ID
  18. ---@field mapId number @地图id column=7 G
  19. ---关联cfg_mapMove表ID
  20. ---@field mapMove number @传送id column=8 H
  21. ---关联cfg_repfairyland_monster表
  22. ---@field monster number @怪物波次ID column=9 I
  23. ---进入副本后,左侧目标显示
  24. ---BOSS名称、BOSS状态、BOSS坐标
  25. ---@field repTarget string @副本目标 column=10 J
  26. local cfg_repfairyland =
  27. {
  28. {id=10001, cehuakan="残暴的 冰后", name={"秘境1层"}, level=20, mapId=10001, mapMove=63, monster=10001},
  29. {id=10002, cehuakan="残暴的 魔鬼戈登", name={"秘境2层"}, level=30, mapId=10002, mapMove=64, monster=10002},
  30. {id=10003, cehuakan="残暴的 魔王巴洛克", name={"秘境3层"}, level=45, mapId=10003, mapMove=65, monster=10003},
  31. {id=10004, cehuakan="残暴的 海魔希特拉", name={"秘境4层"}, level=65, mapId=10004, mapMove=66, monster=10004},
  32. {id=10005, cehuakan="炽炎魔", name={"秘境5层"}, level=100, mapId=10005, mapMove=67, monster=10005},
  33. {id=10006, cehuakan="丛林召唤者", name={"秘境6层"}, level=150, mapId=10006, mapMove=68, monster=10006},
  34. {id=10007, cehuakan="天魔菲尼斯", name={"秘境7层"}, level=170, mapId=10007, mapMove=128, monster=10007},
  35. {id=10008, cehuakan="疯魔", name={"秘境8层"}, level=200, mapId=10008, mapMove=129, monster=10008},
  36. {id=10009, cehuakan="玛雅之手", name={"秘境9层"}, level=250, mapId=10009, mapMove=130, monster=10009},
  37. {id=10010, cehuakan="幽灵巨蛛", name={"秘境10层"}, level=300, mapId=10010, mapMove=131, monster=10010},
  38. {id=10011, cehuakan="闪电巨人", name={"秘境11层"}, level=350, mapId=10011, mapMove=132, monster=10011},
  39. {id=10012, cehuakan="巨斧战士", name={"秘境12层"}, level=400, mapId=10012, mapMove=133, monster=10012},
  40. {id=10013, cehuakan="幽灵火焰巨人", name={"秘境13层"}, level=450, mapId=10013, mapMove=134, monster=10013},
  41. {id=10014, cehuakan="毒巨魔", name={"秘境14层"}, level=500, mapId=10014, mapMove=135, monster=10014},
  42. }
  43. local defaults = {startDay=0, strengthenLevel=0, repTarget=""}
  44. local mt = {__index = defaults}
  45. for _, v in ipairs(cfg_repfairyland) do
  46. setmetatable(v, mt)
  47. end
  48. return cfg_repfairyland