4.4宝箱&皮肤资源 (#711)
@ -33,13 +33,7 @@ const Serv = {
|
||||
let isGs = game === 'gs'
|
||||
|
||||
// 根据uid判断当前服务器类型。官服0 B服1 国际2
|
||||
let uidPrefix = uid.toString()
|
||||
if (uidPrefix.length == 10) {
|
||||
uidPrefix = uidPrefix.slice(0, 2)
|
||||
} else {
|
||||
uidPrefix = uidPrefix.slice(0, 1)
|
||||
}
|
||||
let servType = { 1: 0, 2: 0, 3: 0, 4: 0, 5: 1, 6: 2, 7: 2, 8: 2, 18: 2, 9: 2 }[uidPrefix]
|
||||
let servType = { 1: 0, 2: 0, 3: 0, 4: 0, 5: 1, 6: 2, 7: 2, 8: 2, 18: 2, 9: 2 }[String(uid).slice(0, -8)]
|
||||
|
||||
// 获取原神、星铁对应服务选择的配置
|
||||
let servCfg = (Cfg.get(isGs ? 'profileServer' : 'srProfileServer', '0') || '0').toString()
|
||||
|
BIN
resources/meta-gs/character/凯亚/imgs/side2.webp
Normal file
After Width: | Height: | Size: 20 KiB |
BIN
resources/meta-gs/character/可莉/imgs/side2.webp
Normal file
After Width: | Height: | Size: 23 KiB |
@ -12,7 +12,9 @@
|
||||
"desc": "月海亭的秘书,体内流淌着仙兽「麒麟」的血脉。",
|
||||
"cncv": "林簌",
|
||||
"jpcv": "上田丽奈",
|
||||
"costume": false,
|
||||
"costume": [
|
||||
203701
|
||||
],
|
||||
"ver": 1,
|
||||
"baseAttr": {
|
||||
"hp": 9797,
|
||||
|
BIN
resources/meta-gs/character/甘雨/imgs/face2.webp
Normal file
After Width: | Height: | Size: 23 KiB |
BIN
resources/meta-gs/character/甘雨/imgs/side2.webp
Normal file
After Width: | Height: | Size: 27 KiB |
BIN
resources/meta-gs/character/甘雨/imgs/splash2.webp
Normal file
After Width: | Height: | Size: 307 KiB |
@ -12,7 +12,9 @@
|
||||
"desc": "气质出尘的仙家子弟。隐修在璃月群山之间,个性也如仙人般淡漠疏离。",
|
||||
"cncv": "秦紫翼",
|
||||
"jpcv": "川澄绫子",
|
||||
"costume": false,
|
||||
"costume": [
|
||||
206301
|
||||
],
|
||||
"ver": 1,
|
||||
"baseAttr": {
|
||||
"hp": 12993,
|
||||
|
BIN
resources/meta-gs/character/申鹤/imgs/face2.webp
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
resources/meta-gs/character/申鹤/imgs/side2.webp
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
resources/meta-gs/character/申鹤/imgs/splash2.webp
Normal file
After Width: | Height: | Size: 273 KiB |
BIN
resources/meta-gs/character/行秋/imgs/face2.webp
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
resources/meta-gs/character/行秋/imgs/side2.webp
Normal file
After Width: | Height: | Size: 20 KiB |
BIN
resources/meta-gs/character/行秋/imgs/splash2.webp
Normal file
After Width: | Height: | Size: 212 KiB |
@ -4,22 +4,22 @@ export * from './pool.js'
|
||||
export const chestInfo = {
|
||||
common: {
|
||||
title: '普通宝箱',
|
||||
max: 2867
|
||||
max: 2980
|
||||
},
|
||||
exquisite: {
|
||||
title: '精致宝箱',
|
||||
max: 2076
|
||||
max: 2219
|
||||
},
|
||||
precious: {
|
||||
title: '珍贵宝箱',
|
||||
max: 632
|
||||
max: 682
|
||||
},
|
||||
luxurious: {
|
||||
title: '华丽宝箱',
|
||||
max: 242
|
||||
max: 259
|
||||
},
|
||||
magic: {
|
||||
title: '奇馈宝箱',
|
||||
max: 221
|
||||
max: 241
|
||||
}
|
||||
}
|