4.4宝箱&皮肤资源 (#711)

This commit is contained in:
Ca(HCO₃)₂ 2024-02-06 07:18:46 +08:00 committed by GitHub
parent 694a989e0a
commit 4be3726f25
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
15 changed files with 12 additions and 14 deletions

View File

@ -33,13 +33,7 @@ const Serv = {
let isGs = game === 'gs' let isGs = game === 'gs'
// 根据uid判断当前服务器类型。官服0 B服1 国际2 // 根据uid判断当前服务器类型。官服0 B服1 国际2
let uidPrefix = uid.toString() 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)]
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 servCfg = (Cfg.get(isGs ? 'profileServer' : 'srProfileServer', '0') || '0').toString() let servCfg = (Cfg.get(isGs ? 'profileServer' : 'srProfileServer', '0') || '0').toString()

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

View File

@ -12,7 +12,9 @@
"desc": "月海亭的秘书,体内流淌着仙兽「麒麟」的血脉。", "desc": "月海亭的秘书,体内流淌着仙兽「麒麟」的血脉。",
"cncv": "林簌", "cncv": "林簌",
"jpcv": "上田丽奈", "jpcv": "上田丽奈",
"costume": false, "costume": [
203701
],
"ver": 1, "ver": 1,
"baseAttr": { "baseAttr": {
"hp": 9797, "hp": 9797,

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 307 KiB

View File

@ -12,7 +12,9 @@
"desc": "气质出尘的仙家子弟。隐修在璃月群山之间,个性也如仙人般淡漠疏离。", "desc": "气质出尘的仙家子弟。隐修在璃月群山之间,个性也如仙人般淡漠疏离。",
"cncv": "秦紫翼", "cncv": "秦紫翼",
"jpcv": "川澄绫子", "jpcv": "川澄绫子",
"costume": false, "costume": [
206301
],
"ver": 1, "ver": 1,
"baseAttr": { "baseAttr": {
"hp": 12993, "hp": 12993,

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 273 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 212 KiB

View File

@ -4,22 +4,22 @@ export * from './pool.js'
export const chestInfo = { export const chestInfo = {
common: { common: {
title: '普通宝箱', title: '普通宝箱',
max: 2867 max: 2980
}, },
exquisite: { exquisite: {
title: '精致宝箱', title: '精致宝箱',
max: 2076 max: 2219
}, },
precious: { precious: {
title: '珍贵宝箱', title: '珍贵宝箱',
max: 632 max: 682
}, },
luxurious: { luxurious: {
title: '华丽宝箱', title: '华丽宝箱',
max: 242 max: 259
}, },
magic: { magic: {
title: '奇馈宝箱', title: '奇馈宝箱',
max: 221 max: 241
} }
} }