cfg_spot.lua 1.5 KB

12345678910111213141516171819202122232425262728293031
  1. -- 此文件工具自动生成,不要修改
  2. ---@class cfg_spot_column
  3. ---@field id number @编号 column=1 A
  4. ---1普通摆摊
  5. ---2特权摆摊
  6. ---@field type number @类型 column=2 B
  7. ---关联map_info表
  8. ---@field map number @地图ID column=3 C
  9. ---该地图的摊位总数
  10. ---@field maxSpot number @摊位总数 column=4 D
  11. ---x最大#y最大#x最小#y最小
  12. ---@field position IntListList @摊位位置 column=5 E
  13. ---等级不够时隐藏该选项
  14. ---@field level number @等级限制 column=6 F
  15. ---1类型:摆摊时间#道具id#数量
  16. ---时间单位:小时
  17. ---2类型:摆摊时间#所需次数
  18. ---@field cost IntListList @消耗 column=7 G
  19. ---关联cfg_model_default表ID
  20. ---格式:
  21. ---职业ID#cfg_model_default表ID|职业#cfg_model_default表ID|职业#cfg_model_default表ID
  22. ---@field model IntListList @摊位模型 column=8 H
  23. ---摊位的橙色字显示
  24. ---@field name string @摊位等级 column=9 I
  25. local cfg_spot =
  26. {
  27. {id=1, type=1, map=1001, maxSpot=40, position={{160,144,120,104}}, level=30, cost={{4,10020001,1000},{8,10020001,2000},{12,10020001,3000}}, model={{1,1},{2,2},{3,3}}, name="摊位"},
  28. {id=2, type=1, map=1004, maxSpot=2, position={{196,136,156,116}}, level=30, cost={{4,10020001,1000},{8,10020001,2000},{12,10020001,3000}}, model={{1,1},{2,2},{3,3}}, name="摊位"},
  29. {id=3, type=1, map=21000, maxSpot=160, position={{146,148,106,108}}, level=300, cost={{4,10020001,1000},{8,10020001,2000},{12,10020001,3000}}, model={{1,1},{2,2},{3,3}}, name="商店"},
  30. }
  31. return cfg_spot