12345678910111213141516171819202122232425262728293031 |
- -- 此文件工具自动生成,不要修改
- ---@class cfg_spot_column
- ---@field id number @编号 column=1 A
- ---1普通摆摊
- ---2特权摆摊
- ---@field type number @类型 column=2 B
- ---关联map_info表
- ---@field map number @地图ID column=3 C
- ---该地图的摊位总数
- ---@field maxSpot number @摊位总数 column=4 D
- ---x最大#y最大#x最小#y最小
- ---@field position IntListList @摊位位置 column=5 E
- ---等级不够时隐藏该选项
- ---@field level number @等级限制 column=6 F
- ---1类型:摆摊时间#道具id#数量
- ---时间单位:小时
- ---2类型:摆摊时间#所需次数
- ---@field cost IntListList @消耗 column=7 G
- ---关联cfg_model_default表ID
- ---格式:
- ---职业ID#cfg_model_default表ID|职业#cfg_model_default表ID|职业#cfg_model_default表ID
- ---@field model IntListList @摊位模型 column=8 H
- ---摊位的橙色字显示
- ---@field name string @摊位等级 column=9 I
- local cfg_spot =
- {
- {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="摊位"},
- {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="摊位"},
- {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="商店"},
- }
- return cfg_spot
|