mirror of
https://github.com/yoimiya-kokomi/miao-plugin.git
synced 2024-11-16 12:51:30 +00:00
23 lines
340 B
JavaScript
23 lines
340 B
JavaScript
|
// 报箱数统计
|
||
|
export const chestInfo = {
|
||
|
common: {
|
||
|
title: '普通宝箱',
|
||
|
max: 2542
|
||
|
},
|
||
|
exquisite: {
|
||
|
title: '精致宝箱',
|
||
|
max: 1594
|
||
|
},
|
||
|
precious: {
|
||
|
title: '珍贵宝箱',
|
||
|
max: 488
|
||
|
},
|
||
|
luxurious: {
|
||
|
title: '豪华宝箱',
|
||
|
max: 185
|
||
|
},
|
||
|
magic: {
|
||
|
title: '奇馈宝箱',
|
||
|
max: 146
|
||
|
}
|
||
|
}
|