export_table
Export game numeric tables as Lua record arrays or JSON text, with optional column filtering to reduce size. Rejects outputs over 1MB to guide narrowing.
Instructions
导出当前工作区的数值表为 lua record 数组模块(return { [1] = { Key = v, ... } })或 JSON 数组文本(format 缺省 lua)。中文列名自动转 ["列名"] 字符串键;columns 可选收窄导出列。产物超 1MB 拒绝并引导收窄。先 list_tables 拿表名。
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| table | Yes | 表名(来自 list_tables) | |
| format | No | 导出格式(缺省 lua) | |
| columns | No | 导出列子集(可选;大表收窄产物) |