15 lines
190 B
Lua
Executable File
15 lines
190 B
Lua
Executable File
local mall_gold = {
|
|
[1]={
|
|
["name"]="一点金币"
|
|
},
|
|
[2]={
|
|
["name"]="一些金币"
|
|
},
|
|
[3]={
|
|
["name"]="成堆的金币"
|
|
}
|
|
}
|
|
local config = {
|
|
data=mall_gold,count=3
|
|
}
|
|
return config |