mirror of
https://github.com/yoimiya-kokomi/miao-plugin.git
synced 2024-11-25 01:21:55 +00:00
调整#抽卡记录
#抽卡统计
的页面样式
This commit is contained in:
parent
25a9855494
commit
ce846e8a5f
@ -213,6 +213,19 @@ let GachaData = {
|
||||
noWaiRate = (noWaiRate * 100).toFixed(1)
|
||||
}
|
||||
|
||||
fiveLog.unshift({
|
||||
id: 888,
|
||||
isUp: true,
|
||||
count: noFiveNum,
|
||||
date: moment().format('MM-DD')
|
||||
})
|
||||
itemMap['888'] = {
|
||||
name: '即将获得',
|
||||
star: 5,
|
||||
abbr: '即将获得',
|
||||
img: 'gacha/imgs/no-avatar.webp'
|
||||
}
|
||||
|
||||
return {
|
||||
stat: {
|
||||
allNum,
|
||||
@ -362,9 +375,22 @@ let GachaData = {
|
||||
})
|
||||
versionData.push(getCurr())
|
||||
|
||||
let stat = {}
|
||||
lodash.forEach(versionData, (ds) => {
|
||||
lodash.forEach(ds.stats, (num, key) => {
|
||||
if (!stat[key]) {
|
||||
stat[key] = num
|
||||
} else {
|
||||
stat[key] += num
|
||||
}
|
||||
})
|
||||
})
|
||||
stat.avgUpNum = stat.upNum === 0 ? 0 : ((stat.totalNum / stat.upNum).toFixed(1))
|
||||
|
||||
return {
|
||||
versionData,
|
||||
itemMap
|
||||
itemMap,
|
||||
totalStat: stat
|
||||
}
|
||||
},
|
||||
|
||||
|
@ -1,9 +1,14 @@
|
||||
.avatar-cont {
|
||||
background: rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
.user-banner .stat-li {
|
||||
width: auto;
|
||||
min-width: 75px;
|
||||
}
|
||||
.gacha-list .gacha-item {
|
||||
height: 38px;
|
||||
display: flex;
|
||||
background: rgba(0, 0, 0, 0.4);
|
||||
}
|
||||
.gacha-list .gacha-item .date {
|
||||
width: 97px;
|
||||
@ -53,13 +58,27 @@
|
||||
.gacha-list .gacha-item.wai .process {
|
||||
background-color: rgba(85, 85, 85, 0.8);
|
||||
}
|
||||
.gacha-list .gacha-item.wai .bar {
|
||||
position: relative;
|
||||
}
|
||||
.gacha-list .gacha-item.wai .bar:after {
|
||||
content: "";
|
||||
display: block;
|
||||
position: absolute;
|
||||
right: -33px;
|
||||
top: -2px;
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
background: url('./imgs/wai.webp') center no-repeat;
|
||||
background-size: 100% 100%;
|
||||
}
|
||||
.gacha-list .gacha-item.up .name {
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
/*background: rgba(0, 0, 0, .5);*/
|
||||
color: #ffd484;
|
||||
}
|
||||
.gacha-list .gacha-item.up .process,
|
||||
.gacha-list .gacha-item.up .icon {
|
||||
background-color: rgba(0, 0, 0, 0.5);
|
||||
/* background-color: rgba(0, 0, 0, .5);*/
|
||||
}
|
||||
.gacha-list .icon {
|
||||
width: 32px;
|
||||
@ -87,7 +106,6 @@
|
||||
padding-right: 15px;
|
||||
}
|
||||
.gacha-list .process .bar {
|
||||
background: green;
|
||||
border-radius: 0 5px 5px 0;
|
||||
height: 26px;
|
||||
line-height: 26px;
|
||||
@ -100,11 +118,11 @@
|
||||
min-width: 18px;
|
||||
}
|
||||
.gacha-list .process .bar.good {
|
||||
background: #6939b7;
|
||||
background: #168b2c;
|
||||
color: #fff;
|
||||
}
|
||||
.gacha-list .process .bar.normal {
|
||||
background: #168b2c;
|
||||
background: #6939b7;
|
||||
color: #fff;
|
||||
}
|
||||
.gacha-list .process .bar.bad {
|
||||
|
@ -7,7 +7,7 @@
|
||||
|
||||
{{/block}}
|
||||
|
||||
{{ set statMap = { allNum:'抽卡总数', fiveNum:'金卡数', fiveAvg:'平均出金' } }}
|
||||
{{ set statMap = { allNum:'抽卡总数', fiveNum:'金卡数',wai:'歪 T.T',fourNum:'紫卡数', fiveAvg:'平均出金', upYs:'UP原石' } }}
|
||||
|
||||
{{block 'main'}}
|
||||
<div class="basic">
|
||||
@ -18,7 +18,7 @@
|
||||
<div class="user-info">
|
||||
<div class="name">
|
||||
<strong>{{face.name}}</strong>
|
||||
{{if face.level && face.level > 1}} Lv.{{face.level}}{{/if}}
|
||||
|
||||
</div>
|
||||
<div class="uid">
|
||||
{{if uid}}<span> #{{uid}}</span>{{/if}}
|
||||
@ -39,6 +39,8 @@
|
||||
{{/if}}
|
||||
</div>
|
||||
|
||||
<div class="ck-notice"><strong>#抽卡帮助</strong>获取抽卡链接,<strong>#更新抽卡记录</strong>更新抽卡信息,<strong>#抽卡统计</strong><strong>#角色统计</strong>可查看按卡池分析结果</div>
|
||||
|
||||
<div class="cont avatar-cont">
|
||||
<div class="gacha-list">
|
||||
{{each gacha.fiveLog ds idx}}
|
||||
@ -58,7 +60,7 @@
|
||||
</div>
|
||||
<div class="process">
|
||||
{{set count = ds.count}}
|
||||
<div class="bar {{count<=10?'gold': (count<max*0.4 ? 'good' : (count<max*0.8) ? 'normal': 'bad')}}"
|
||||
<div class="bar {{count<=10?'gold': (count<max*0.5 ? 'good' : (count<max*0.83) ? 'normal': 'bad')}}"
|
||||
style="width:{{count/max*100}}%">{{count}}
|
||||
</div>
|
||||
</div>
|
||||
|
@ -2,6 +2,14 @@
|
||||
background: rgba(0, 0, 0, .1);
|
||||
}
|
||||
|
||||
.user-banner {
|
||||
.stat-li {
|
||||
width: auto;
|
||||
min-width: 75px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.gacha-list {
|
||||
@size: 32px;
|
||||
@padding: 3px;
|
||||
@ -10,6 +18,7 @@
|
||||
.gacha-item {
|
||||
height: @height;
|
||||
display: flex;
|
||||
background: rgba(0, 0, 0, .4);
|
||||
|
||||
.date {
|
||||
width: @size + 65px;
|
||||
@ -67,7 +76,6 @@
|
||||
|
||||
|
||||
&.wai {
|
||||
|
||||
.name {
|
||||
color: #aaa;
|
||||
}
|
||||
@ -75,16 +83,32 @@
|
||||
.name, .icon, .process {
|
||||
background-color: rgba(85, 85, 85, 0.8);
|
||||
}
|
||||
|
||||
.bar {
|
||||
position: relative;
|
||||
|
||||
&:after {
|
||||
content: "";
|
||||
display: block;
|
||||
position: absolute;
|
||||
right: -33px;
|
||||
top: -2px;
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
background: url('./imgs/wai.webp') center no-repeat;
|
||||
background-size: 100% 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.up {
|
||||
.name {
|
||||
background: rgba(0, 0, 0, .5);
|
||||
/*background: rgba(0, 0, 0, .5);*/
|
||||
color: rgb(255, 212, 132);
|
||||
}
|
||||
|
||||
.process, .icon {
|
||||
background-color: rgba(0, 0, 0, .5);
|
||||
/* background-color: rgba(0, 0, 0, .5);*/
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -99,13 +123,13 @@
|
||||
height: @size;
|
||||
margin: @padding 0;
|
||||
border-radius: 5px;
|
||||
|
||||
&.star5 {
|
||||
background: url('../common/item/bg5.png') 100% 100% no-repeat;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
span {
|
||||
display: block;
|
||||
width: @size;
|
||||
@ -122,13 +146,14 @@
|
||||
@pd: 3px;
|
||||
|
||||
.bar {
|
||||
background: green;
|
||||
border-radius: 0 5px 5px 0;
|
||||
height: @size - @pd * 2;
|
||||
line-height: @size - @pd * 2;
|
||||
margin: @padding + @pd 0;
|
||||
padding-left: 5px;
|
||||
}
|
||||
|
||||
.bar {
|
||||
&.gold {
|
||||
background: #ffeb73;
|
||||
color: #6f4b00;
|
||||
@ -136,12 +161,12 @@
|
||||
}
|
||||
|
||||
&.good {
|
||||
background: #6939b7;
|
||||
background: #168b2c;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
&.normal {
|
||||
background: #168b2c;
|
||||
background: #6939b7;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
@ -150,11 +175,8 @@
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
@ -58,16 +58,17 @@
|
||||
}
|
||||
.gacha-pool .stat-info {
|
||||
display: flex;
|
||||
padding: 8px 20px 0;
|
||||
padding: 10px 20px 0;
|
||||
}
|
||||
.gacha-pool .stat-info .info {
|
||||
min-width: 60px;
|
||||
padding: 0 20px 0 10px;
|
||||
}
|
||||
.gacha-pool .stat-info .info .num {
|
||||
color: #ffde9d;
|
||||
height: 25px;
|
||||
line-height: 25px;
|
||||
font-size: 20px;
|
||||
font-size: 22px;
|
||||
text-shadow: 0 0 2px #000;
|
||||
}
|
||||
.gacha-pool .stat-info .info .title {
|
||||
@ -91,13 +92,19 @@
|
||||
}
|
||||
.gacha-stat .gacha-item .item-card {
|
||||
width: 69px;
|
||||
border-radius: 6px;
|
||||
background: #fff;
|
||||
}
|
||||
.gacha-stat .item-icon {
|
||||
border-radius: 6px 6px 10px 0;
|
||||
box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.6);
|
||||
}
|
||||
.gacha-stat .item-life {
|
||||
top: initial;
|
||||
left: initial;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
border-radius: 5px 0 0 0;
|
||||
border-radius: 10px 0 0 0;
|
||||
font-size: 16px;
|
||||
padding: 0 6px;
|
||||
min-width: 20px;
|
||||
@ -105,17 +112,28 @@
|
||||
line-height: 22px;
|
||||
text-align: center;
|
||||
}
|
||||
.gacha-stat .item-life.life5 {
|
||||
background: #ffeb73;
|
||||
.gacha-stat .item-name {
|
||||
font-size: 14px;
|
||||
line-height: 24px;
|
||||
color: #000;
|
||||
}
|
||||
.gacha-stat .up-card {
|
||||
box-shadow: 0 0 8px 0 #ffeb73, 0 0 0 1px #fff100;
|
||||
background: #fff;
|
||||
}
|
||||
.gacha-stat .up-card .item-life {
|
||||
color: #6f4b00;
|
||||
background: #ffeb73;
|
||||
box-shadow: 0 0 3px 0 #6f4b00;
|
||||
}
|
||||
.gacha-stat .item-life.life1 {
|
||||
.gacha-stat .up-card .item-name {
|
||||
color: #6f4b00;
|
||||
}
|
||||
.gacha-stat .normal-card {
|
||||
box-shadow: 0 0 0 1px #fff;
|
||||
}
|
||||
.gacha-stat .normal-card .item-life {
|
||||
background: #333;
|
||||
color: #fff;
|
||||
}
|
||||
.gacha-stat .item-name {
|
||||
font-size: 15px;
|
||||
line-height: 24px;
|
||||
}
|
||||
/*# sourceMappingURL=gacha-stat.css.map */
|
@ -8,7 +8,7 @@
|
||||
|
||||
{{/block}}
|
||||
|
||||
{{ set statMap = { allNum:'抽卡总数', fiveNum:'金卡数', fiveAvg:'平均出金' } }}
|
||||
{{ set statMap = { totalNum:'抽卡总数', star5Num:'金卡',c5UpNum:'UP角色',w5UpNum:'UP武器', star4Num:'紫卡',avgUpNum:'平均UP抽' } }}
|
||||
|
||||
{{block 'main'}}
|
||||
<div class="basic">
|
||||
@ -19,14 +19,13 @@
|
||||
<div class="user-info">
|
||||
<div class="name">
|
||||
<strong>{{face.name}}</strong>
|
||||
{{if face.level && face.level > 1}} Lv.{{face.level}}{{/if}}
|
||||
</div>
|
||||
<div class="uid">
|
||||
{{if uid}}<span> #{{uid}}</span>{{/if}}
|
||||
</div>
|
||||
</div>
|
||||
{{if gacha && gacha.stat }}
|
||||
{{set stat = gacha.stat }}
|
||||
{{if gacha && gacha.totalStat }}
|
||||
{{set stat = gacha.totalStat }}
|
||||
<div class="stat">
|
||||
{{each statMap title key}}
|
||||
{{if stat[key] }}
|
||||
@ -39,6 +38,14 @@
|
||||
</div>
|
||||
{{/if}}
|
||||
</div>
|
||||
|
||||
<div class="ck-notice">
|
||||
<strong>#角色统计/#武器统计</strong>角色/武器池统计,
|
||||
<strong>#常驻统计</strong>常驻池统计,
|
||||
<strong>#全部统计</strong>全部抽卡统计,
|
||||
<strong>#抽卡帮助</strong> 获取帮助
|
||||
</div>
|
||||
|
||||
{{each gacha.versionData vData}}
|
||||
{{set stats = vData.stats}}
|
||||
<div class="cont avatar-cont">
|
||||
@ -75,7 +82,7 @@
|
||||
{{set item = gacha.itemMap[ds.id]}}
|
||||
{{if item.star === 4 || item.star === 5}}
|
||||
<div class="gacha-item">
|
||||
<div class="item-card">
|
||||
<div class="item-card {{ds.isUp ? 'up-card':'normal-card'}}">
|
||||
<div class="item-icon star{{item.star}}">
|
||||
<div class="item-bg" style="background-image:url({{_res_path}}{{item.img}})"></div>
|
||||
<div class="item-life {{ds.isUp ? 'life5': 'life1'}}">{{ds.num}}</div>
|
||||
|
@ -68,16 +68,17 @@
|
||||
|
||||
.stat-info {
|
||||
display: flex;
|
||||
padding: 8px 20px 0;
|
||||
padding: 10px 20px 0;
|
||||
|
||||
.info {
|
||||
min-width: 60px;
|
||||
padding: 0 20px 0 10px;
|
||||
|
||||
.num {
|
||||
color: #ffde9d;
|
||||
height: 25px;
|
||||
line-height: 25px;
|
||||
font-size: 20px;
|
||||
font-size: 22px;
|
||||
text-shadow: 0 0 2px #000;
|
||||
}
|
||||
|
||||
@ -107,37 +108,60 @@
|
||||
|
||||
.item-card {
|
||||
width: 69px;
|
||||
border-radius: 6px;
|
||||
background: #fff;
|
||||
}
|
||||
}
|
||||
|
||||
.item-icon {
|
||||
border-radius: 6px 6px 10px 0;
|
||||
box-shadow: 0 0 3px 0 rgba(0, 0, 0, .6);
|
||||
}
|
||||
|
||||
.item-life {
|
||||
top: initial;
|
||||
left: initial;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
border-radius: 5px 0 0 0;
|
||||
border-radius: 10px 0 0 0;
|
||||
font-size: 16px;
|
||||
padding: 0 6px;
|
||||
min-width: 20px;
|
||||
height: 22px;
|
||||
line-height: 22px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
&.life5 {
|
||||
background: #ffeb73;
|
||||
.item-name {
|
||||
font-size: 14px;
|
||||
line-height: 24px;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.up-card {
|
||||
box-shadow: 0 0 8px 0 #ffeb73, 0 0 0 1px #fff100;
|
||||
background: #fff;
|
||||
|
||||
.item-life {
|
||||
color: #6f4b00;
|
||||
background: #ffeb73;
|
||||
box-shadow: 0 0 3px 0 #6f4b00;
|
||||
}
|
||||
|
||||
&.life1 {
|
||||
.item-name {
|
||||
color: #6f4b00;
|
||||
}
|
||||
}
|
||||
|
||||
.normal-card {
|
||||
box-shadow: 0 0 0 1px #fff;
|
||||
|
||||
.item-life {
|
||||
background: #333;
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
|
||||
.item-name {
|
||||
font-size: 15px;
|
||||
line-height: 24px;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
BIN
resources/gacha/imgs/no-avatar.webp
Normal file
BIN
resources/gacha/imgs/no-avatar.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 42 KiB |
BIN
resources/gacha/imgs/wai.webp
Normal file
BIN
resources/gacha/imgs/wai.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.0 KiB |
@ -24,7 +24,8 @@ export const poolName = {
|
||||
妮露: '翩舞歈莲',
|
||||
纳西妲: '月草的赐慧',
|
||||
流浪者: '余火变相',
|
||||
艾尔海森: '敕诫枢谋'
|
||||
艾尔海森: '敕诫枢谋',
|
||||
迪希雅: '烈阳烁金'
|
||||
}
|
||||
|
||||
export const poolDetail = [
|
||||
@ -457,5 +458,15 @@ export const poolDetail = [
|
||||
char4: ['行秋', '凝光', '北斗'],
|
||||
weapon5: ['若水', '护摩之杖'],
|
||||
weapon4: ['西风剑', '西风秘典', '千岩古剑', '弓藏', '匣里灭辰']
|
||||
},
|
||||
{
|
||||
version: '3.5',
|
||||
half: '上半',
|
||||
from: '2023-03-01 06:00:00',
|
||||
to: '2023-03-21 17:59:59',
|
||||
char5: ['迪希雅', '赛诺'],
|
||||
char4: ['班尼特', '芭芭拉', '柯莱'],
|
||||
weapon5: ['苇海信标', '赤沙之杖'],
|
||||
weapon4: ['暗巷闪光', '昭心', '祭礼大剑', '暗巷猎手', '匣里灭辰']
|
||||
}
|
||||
]
|
||||
|
834
tools/meta/talent.json
Normal file
834
tools/meta/talent.json
Normal file
@ -0,0 +1,834 @@
|
||||
{
|
||||
"10000002": {
|
||||
"name": "神里绫华",
|
||||
"talentId": {
|
||||
"10018": 232,
|
||||
"10019": 239,
|
||||
"10024": 231
|
||||
},
|
||||
"talentKey": {
|
||||
"10018": "e",
|
||||
"10019": "q",
|
||||
"10024": "a"
|
||||
}
|
||||
},
|
||||
"10000003": {
|
||||
"name": "琴",
|
||||
"talentId": {
|
||||
"10031": 331,
|
||||
"10033": 332,
|
||||
"10034": 339
|
||||
},
|
||||
"talentKey": {
|
||||
"10031": "a",
|
||||
"10033": "e",
|
||||
"10034": "q"
|
||||
}
|
||||
},
|
||||
"10000006": {
|
||||
"name": "丽莎",
|
||||
"talentId": {
|
||||
"10060": 431,
|
||||
"10061": 432,
|
||||
"10062": 439
|
||||
},
|
||||
"talentKey": {
|
||||
"10060": "a",
|
||||
"10061": "e",
|
||||
"10062": "q"
|
||||
}
|
||||
},
|
||||
"10000014": {
|
||||
"name": "芭芭拉",
|
||||
"talentId": {
|
||||
"10070": 1431,
|
||||
"10071": 1432,
|
||||
"10072": 1439
|
||||
},
|
||||
"talentKey": {
|
||||
"10070": "a",
|
||||
"10071": "e",
|
||||
"10072": "q"
|
||||
}
|
||||
},
|
||||
"10000015": {
|
||||
"name": "凯亚",
|
||||
"talentId": {
|
||||
"10073": 1531,
|
||||
"10074": 1532,
|
||||
"10075": 1539
|
||||
},
|
||||
"talentKey": {
|
||||
"10073": "a",
|
||||
"10074": "e",
|
||||
"10075": "q"
|
||||
}
|
||||
},
|
||||
"10000016": {
|
||||
"name": "迪卢克",
|
||||
"talentId": {
|
||||
"10160": 1631,
|
||||
"10161": 1632,
|
||||
"10165": 1639
|
||||
},
|
||||
"talentKey": {
|
||||
"10160": "a",
|
||||
"10161": "e",
|
||||
"10165": "q"
|
||||
}
|
||||
},
|
||||
"10000020": {
|
||||
"name": "雷泽",
|
||||
"talentId": {
|
||||
"10201": 2031,
|
||||
"10202": 2032,
|
||||
"10203": 2039
|
||||
},
|
||||
"talentKey": {
|
||||
"10201": "a",
|
||||
"10202": "e",
|
||||
"10203": "q"
|
||||
}
|
||||
},
|
||||
"10000021": {
|
||||
"name": "安柏",
|
||||
"talentId": {
|
||||
"10017": 2139,
|
||||
"10032": 2132,
|
||||
"10041": 2131
|
||||
},
|
||||
"talentKey": {
|
||||
"10017": "q",
|
||||
"10032": "e",
|
||||
"10041": "a"
|
||||
}
|
||||
},
|
||||
"10000022": {
|
||||
"name": "温迪",
|
||||
"talentId": {
|
||||
"10221": 2231,
|
||||
"10224": 2232,
|
||||
"10225": 2239
|
||||
},
|
||||
"talentKey": {
|
||||
"10221": "a",
|
||||
"10224": "e",
|
||||
"10225": "q"
|
||||
}
|
||||
},
|
||||
"10000023": {
|
||||
"name": "香菱",
|
||||
"talentId": {
|
||||
"10231": 2331,
|
||||
"10232": 2332,
|
||||
"10235": 2339
|
||||
},
|
||||
"talentKey": {
|
||||
"10231": "a",
|
||||
"10232": "e",
|
||||
"10235": "q"
|
||||
}
|
||||
},
|
||||
"10000024": {
|
||||
"name": "北斗",
|
||||
"talentId": {
|
||||
"10241": 2431,
|
||||
"10242": 2432,
|
||||
"10245": 2439
|
||||
},
|
||||
"talentKey": {
|
||||
"10241": "a",
|
||||
"10242": "e",
|
||||
"10245": "q"
|
||||
}
|
||||
},
|
||||
"10000025": {
|
||||
"name": "行秋",
|
||||
"talentId": {
|
||||
"10381": 2531,
|
||||
"10382": 2532,
|
||||
"10385": 2539
|
||||
},
|
||||
"talentKey": {
|
||||
"10381": "a",
|
||||
"10382": "e",
|
||||
"10385": "q"
|
||||
}
|
||||
},
|
||||
"10000026": {
|
||||
"name": "魈",
|
||||
"talentId": {
|
||||
"10261": 2631,
|
||||
"10262": 2632,
|
||||
"10265": 2639
|
||||
},
|
||||
"talentKey": {
|
||||
"10261": "a",
|
||||
"10262": "e",
|
||||
"10265": "q"
|
||||
}
|
||||
},
|
||||
"10000027": {
|
||||
"name": "凝光",
|
||||
"talentId": {
|
||||
"10271": 2731,
|
||||
"10272": 2732,
|
||||
"10274": 2739
|
||||
},
|
||||
"talentKey": {
|
||||
"10271": "a",
|
||||
"10272": "e",
|
||||
"10274": "q"
|
||||
}
|
||||
},
|
||||
"10000029": {
|
||||
"name": "可莉",
|
||||
"talentId": {
|
||||
"10291": 2931,
|
||||
"10292": 2932,
|
||||
"10295": 2939
|
||||
},
|
||||
"talentKey": {
|
||||
"10291": "a",
|
||||
"10292": "e",
|
||||
"10295": "q"
|
||||
}
|
||||
},
|
||||
"10000030": {
|
||||
"name": "钟离",
|
||||
"talentId": {
|
||||
"10301": 3031,
|
||||
"10302": 3032,
|
||||
"10303": 3039
|
||||
},
|
||||
"talentKey": {
|
||||
"10301": "a",
|
||||
"10302": "e",
|
||||
"10303": "q"
|
||||
}
|
||||
},
|
||||
"10000031": {
|
||||
"name": "菲谢尔",
|
||||
"talentId": {
|
||||
"10311": 3131,
|
||||
"10312": 3132,
|
||||
"10313": 3139
|
||||
},
|
||||
"talentKey": {
|
||||
"10311": "a",
|
||||
"10312": "e",
|
||||
"10313": "q"
|
||||
}
|
||||
},
|
||||
"10000032": {
|
||||
"name": "班尼特",
|
||||
"talentId": {
|
||||
"10321": 3231,
|
||||
"10322": 3232,
|
||||
"10323": 3239
|
||||
},
|
||||
"talentKey": {
|
||||
"10321": "a",
|
||||
"10322": "e",
|
||||
"10323": "q"
|
||||
}
|
||||
},
|
||||
"10000033": {
|
||||
"name": "达达利亚",
|
||||
"talentId": {
|
||||
"10331": 3331,
|
||||
"10332": 3332,
|
||||
"10333": 3339
|
||||
},
|
||||
"talentKey": {
|
||||
"10331": "a",
|
||||
"10332": "e",
|
||||
"10333": "q"
|
||||
}
|
||||
},
|
||||
"10000034": {
|
||||
"name": "诺艾尔",
|
||||
"talentId": {
|
||||
"10341": 3431,
|
||||
"10342": 3432,
|
||||
"10343": 3439
|
||||
},
|
||||
"talentKey": {
|
||||
"10341": "a",
|
||||
"10342": "e",
|
||||
"10343": "q"
|
||||
}
|
||||
},
|
||||
"10000035": {
|
||||
"name": "七七",
|
||||
"talentId": {
|
||||
"10351": 3531,
|
||||
"10352": 3532,
|
||||
"10353": 3539
|
||||
},
|
||||
"talentKey": {
|
||||
"10351": "a",
|
||||
"10352": "e",
|
||||
"10353": "q"
|
||||
}
|
||||
},
|
||||
"10000036": {
|
||||
"name": "重云",
|
||||
"talentId": {
|
||||
"10401": 3631,
|
||||
"10402": 3632,
|
||||
"10403": 3639
|
||||
},
|
||||
"talentKey": {
|
||||
"10401": "a",
|
||||
"10402": "e",
|
||||
"10403": "q"
|
||||
}
|
||||
},
|
||||
"10000037": {
|
||||
"name": "甘雨",
|
||||
"talentId": {
|
||||
"10371": 3731,
|
||||
"10372": 3732,
|
||||
"10373": 3739
|
||||
},
|
||||
"talentKey": {
|
||||
"10371": "a",
|
||||
"10372": "e",
|
||||
"10373": "q"
|
||||
}
|
||||
},
|
||||
"10000038": {
|
||||
"name": "阿贝多",
|
||||
"talentId": {
|
||||
"10386": 3831,
|
||||
"10387": 3832,
|
||||
"10388": 3839
|
||||
},
|
||||
"talentKey": {
|
||||
"10386": "a",
|
||||
"10387": "e",
|
||||
"10388": "q"
|
||||
}
|
||||
},
|
||||
"10000039": {
|
||||
"name": "迪奥娜",
|
||||
"talentId": {
|
||||
"10391": 3931,
|
||||
"10392": 3932,
|
||||
"10395": 3939
|
||||
},
|
||||
"talentKey": {
|
||||
"10391": "a",
|
||||
"10392": "e",
|
||||
"10395": "q"
|
||||
}
|
||||
},
|
||||
"10000041": {
|
||||
"name": "莫娜",
|
||||
"talentId": {
|
||||
"10411": 4131,
|
||||
"10412": 4132,
|
||||
"10415": 4139
|
||||
},
|
||||
"talentKey": {
|
||||
"10411": "a",
|
||||
"10412": "e",
|
||||
"10415": "q"
|
||||
}
|
||||
},
|
||||
"10000042": {
|
||||
"name": "刻晴",
|
||||
"talentId": {
|
||||
"10421": 4231,
|
||||
"10422": 4232,
|
||||
"10425": 4239
|
||||
},
|
||||
"talentKey": {
|
||||
"10421": "a",
|
||||
"10422": "e",
|
||||
"10425": "q"
|
||||
}
|
||||
},
|
||||
"10000043": {
|
||||
"name": "砂糖",
|
||||
"talentId": {
|
||||
"10431": 4331,
|
||||
"10432": 4332,
|
||||
"10435": 4339
|
||||
},
|
||||
"talentKey": {
|
||||
"10431": "a",
|
||||
"10432": "e",
|
||||
"10435": "q"
|
||||
}
|
||||
},
|
||||
"10000044": {
|
||||
"name": "辛焱",
|
||||
"talentId": {
|
||||
"10441": 4431,
|
||||
"10442": 4432,
|
||||
"10443": 4439
|
||||
},
|
||||
"talentKey": {
|
||||
"10441": "a",
|
||||
"10442": "e",
|
||||
"10443": "q"
|
||||
}
|
||||
},
|
||||
"10000045": {
|
||||
"name": "罗莎莉亚",
|
||||
"talentId": {
|
||||
"10451": 4531,
|
||||
"10452": 4532,
|
||||
"10453": 4539
|
||||
},
|
||||
"talentKey": {
|
||||
"10451": "a",
|
||||
"10452": "e",
|
||||
"10453": "q"
|
||||
}
|
||||
},
|
||||
"10000046": {
|
||||
"name": "胡桃",
|
||||
"talentId": {
|
||||
"10461": 4631,
|
||||
"10462": 4632,
|
||||
"10463": 4639
|
||||
},
|
||||
"talentKey": {
|
||||
"10461": "a",
|
||||
"10462": "e",
|
||||
"10463": "q"
|
||||
}
|
||||
},
|
||||
"10000047": {
|
||||
"name": "枫原万叶",
|
||||
"talentId": {
|
||||
"10471": 4731,
|
||||
"10472": 4732,
|
||||
"10475": 4739
|
||||
},
|
||||
"talentKey": {
|
||||
"10471": "a",
|
||||
"10472": "e",
|
||||
"10475": "q"
|
||||
}
|
||||
},
|
||||
"10000048": {
|
||||
"name": "烟绯",
|
||||
"talentId": {
|
||||
"10481": 4831,
|
||||
"10482": 4832,
|
||||
"10485": 4839
|
||||
},
|
||||
"talentKey": {
|
||||
"10481": "a",
|
||||
"10482": "e",
|
||||
"10485": "q"
|
||||
}
|
||||
},
|
||||
"10000049": {
|
||||
"name": "宵宫",
|
||||
"talentId": {
|
||||
"10491": 4931,
|
||||
"10492": 4932,
|
||||
"10495": 4939
|
||||
},
|
||||
"talentKey": {
|
||||
"10491": "a",
|
||||
"10492": "e",
|
||||
"10495": "q"
|
||||
}
|
||||
},
|
||||
"10000050": {
|
||||
"name": "托马",
|
||||
"talentId": {
|
||||
"10501": 5031,
|
||||
"10502": 5032,
|
||||
"10505": 5039
|
||||
},
|
||||
"talentKey": {
|
||||
"10501": "a",
|
||||
"10502": "e",
|
||||
"10505": "q"
|
||||
}
|
||||
},
|
||||
"10000051": {
|
||||
"name": "优菈",
|
||||
"talentId": {
|
||||
"10511": 5131,
|
||||
"10512": 5132,
|
||||
"10515": 5139
|
||||
},
|
||||
"talentKey": {
|
||||
"10511": "a",
|
||||
"10512": "e",
|
||||
"10515": "q"
|
||||
}
|
||||
},
|
||||
"10000052": {
|
||||
"name": "雷电将军",
|
||||
"talentId": {
|
||||
"10521": 5231,
|
||||
"10522": 5232,
|
||||
"10525": 5239
|
||||
},
|
||||
"talentKey": {
|
||||
"10521": "a",
|
||||
"10522": "e",
|
||||
"10525": "q"
|
||||
}
|
||||
},
|
||||
"10000053": {
|
||||
"name": "早柚",
|
||||
"talentId": {
|
||||
"10531": 5331,
|
||||
"10532": 5332,
|
||||
"10535": 5339
|
||||
},
|
||||
"talentKey": {
|
||||
"10531": "a",
|
||||
"10532": "e",
|
||||
"10535": "q"
|
||||
}
|
||||
},
|
||||
"10000054": {
|
||||
"name": "珊瑚宫心海",
|
||||
"talentId": {
|
||||
"10541": 5431,
|
||||
"10542": 5432,
|
||||
"10545": 5439
|
||||
},
|
||||
"talentKey": {
|
||||
"10541": "a",
|
||||
"10542": "e",
|
||||
"10545": "q"
|
||||
}
|
||||
},
|
||||
"10000055": {
|
||||
"name": "五郎",
|
||||
"talentId": {
|
||||
"10551": 5531,
|
||||
"10552": 5532,
|
||||
"10555": 5539
|
||||
},
|
||||
"talentKey": {
|
||||
"10551": "a",
|
||||
"10552": "e",
|
||||
"10555": "q"
|
||||
}
|
||||
},
|
||||
"10000056": {
|
||||
"name": "九条裟罗",
|
||||
"talentId": {
|
||||
"10561": 5631,
|
||||
"10562": 5632,
|
||||
"10565": 5639
|
||||
},
|
||||
"talentKey": {
|
||||
"10561": "a",
|
||||
"10562": "e",
|
||||
"10565": "q"
|
||||
}
|
||||
},
|
||||
"10000057": {
|
||||
"name": "荒泷一斗",
|
||||
"talentId": {
|
||||
"10571": 5731,
|
||||
"10572": 5732,
|
||||
"10575": 5739
|
||||
},
|
||||
"talentKey": {
|
||||
"10571": "a",
|
||||
"10572": "e",
|
||||
"10575": "q"
|
||||
}
|
||||
},
|
||||
"10000058": {
|
||||
"name": "八重神子",
|
||||
"talentId": {
|
||||
"10581": 5831,
|
||||
"10582": 5832,
|
||||
"10585": 5839
|
||||
},
|
||||
"talentKey": {
|
||||
"10581": "a",
|
||||
"10582": "e",
|
||||
"10585": "q"
|
||||
}
|
||||
},
|
||||
"10000059": {
|
||||
"name": "鹿野院平藏",
|
||||
"talentId": {
|
||||
"10591": 5931,
|
||||
"10592": 5932,
|
||||
"10595": 5939
|
||||
},
|
||||
"talentKey": {
|
||||
"10591": "a",
|
||||
"10592": "e",
|
||||
"10595": "q"
|
||||
}
|
||||
},
|
||||
"10000060": {
|
||||
"name": "夜兰",
|
||||
"talentId": {
|
||||
"10606": 6031,
|
||||
"10607": 6032,
|
||||
"10610": 6039
|
||||
},
|
||||
"talentKey": {
|
||||
"10606": "a",
|
||||
"10607": "e",
|
||||
"10610": "q"
|
||||
}
|
||||
},
|
||||
"10000062": {
|
||||
"name": "埃洛伊",
|
||||
"talentId": {
|
||||
"10621": 6231,
|
||||
"10622": 6232,
|
||||
"10625": 6239
|
||||
},
|
||||
"talentKey": {
|
||||
"10621": "a",
|
||||
"10622": "e",
|
||||
"10625": "q"
|
||||
}
|
||||
},
|
||||
"10000063": {
|
||||
"name": "申鹤",
|
||||
"talentId": {
|
||||
"10631": 6331,
|
||||
"10632": 6332,
|
||||
"10635": 6339
|
||||
},
|
||||
"talentKey": {
|
||||
"10631": "a",
|
||||
"10632": "e",
|
||||
"10635": "q"
|
||||
}
|
||||
},
|
||||
"10000064": {
|
||||
"name": "云堇",
|
||||
"talentId": {
|
||||
"10641": 6431,
|
||||
"10642": 6432,
|
||||
"10643": 6439
|
||||
},
|
||||
"talentKey": {
|
||||
"10641": "a",
|
||||
"10642": "e",
|
||||
"10643": "q"
|
||||
}
|
||||
},
|
||||
"10000065": {
|
||||
"name": "久岐忍",
|
||||
"talentId": {
|
||||
"10651": 6531,
|
||||
"10652": 6532,
|
||||
"10655": 6539
|
||||
},
|
||||
"talentKey": {
|
||||
"10651": "a",
|
||||
"10652": "e",
|
||||
"10655": "q"
|
||||
}
|
||||
},
|
||||
"10000066": {
|
||||
"name": "神里绫人",
|
||||
"talentId": {
|
||||
"10661": 6631,
|
||||
"10662": 6632,
|
||||
"10665": 6639
|
||||
},
|
||||
"talentKey": {
|
||||
"10661": "a",
|
||||
"10662": "e",
|
||||
"10665": "q"
|
||||
}
|
||||
},
|
||||
"10000067": {
|
||||
"name": "柯莱",
|
||||
"talentId": {
|
||||
"10671": 6731,
|
||||
"10672": 6732,
|
||||
"10675": 6739
|
||||
},
|
||||
"talentKey": {
|
||||
"10671": "a",
|
||||
"10672": "e",
|
||||
"10675": "q"
|
||||
}
|
||||
},
|
||||
"10000068": {
|
||||
"name": "多莉",
|
||||
"talentId": {
|
||||
"10681": 6831,
|
||||
"10682": 6832,
|
||||
"10685": 6839
|
||||
},
|
||||
"talentKey": {
|
||||
"10681": "a",
|
||||
"10682": "e",
|
||||
"10685": "q"
|
||||
}
|
||||
},
|
||||
"10000069": {
|
||||
"name": "提纳里",
|
||||
"talentId": {
|
||||
"10691": 6931,
|
||||
"10692": 6932,
|
||||
"10695": 6939
|
||||
},
|
||||
"talentKey": {
|
||||
"10691": "a",
|
||||
"10692": "e",
|
||||
"10695": "q"
|
||||
}
|
||||
},
|
||||
"10000070": {
|
||||
"name": "妮露",
|
||||
"talentId": {
|
||||
"10701": 7031,
|
||||
"10702": 7032,
|
||||
"10705": 7039
|
||||
},
|
||||
"talentKey": {
|
||||
"10701": "a",
|
||||
"10702": "e",
|
||||
"10705": "q"
|
||||
}
|
||||
},
|
||||
"10000071": {
|
||||
"name": "赛诺",
|
||||
"talentId": {
|
||||
"10711": 7131,
|
||||
"10712": 7132,
|
||||
"10715": 7139
|
||||
},
|
||||
"talentKey": {
|
||||
"10711": "a",
|
||||
"10712": "e",
|
||||
"10715": "q"
|
||||
}
|
||||
},
|
||||
"10000072": {
|
||||
"name": "坎蒂丝",
|
||||
"talentId": {
|
||||
"10721": 7231,
|
||||
"10722": 7232,
|
||||
"10725": 7239
|
||||
},
|
||||
"talentKey": {
|
||||
"10721": "a",
|
||||
"10722": "e",
|
||||
"10725": "q"
|
||||
}
|
||||
},
|
||||
"10000073": {
|
||||
"name": "纳西妲",
|
||||
"talentId": {
|
||||
"10731": 7331,
|
||||
"10732": 7332,
|
||||
"10735": 7339
|
||||
},
|
||||
"talentKey": {
|
||||
"10731": "a",
|
||||
"10732": "e",
|
||||
"10735": "q"
|
||||
}
|
||||
},
|
||||
"10000074": {
|
||||
"name": "莱依拉",
|
||||
"talentId": {
|
||||
"10741": 7431,
|
||||
"10742": 7432,
|
||||
"10745": 7439
|
||||
},
|
||||
"talentKey": {
|
||||
"10741": "a",
|
||||
"10742": "e",
|
||||
"10745": "q"
|
||||
}
|
||||
},
|
||||
"10000075": {
|
||||
"name": "流浪者",
|
||||
"talentId": {
|
||||
"10751": 7531,
|
||||
"10752": 7532,
|
||||
"10755": 7539
|
||||
},
|
||||
"talentKey": {
|
||||
"10751": "a",
|
||||
"10752": "e",
|
||||
"10755": "q"
|
||||
}
|
||||
},
|
||||
"10000076": {
|
||||
"name": "珐露珊",
|
||||
"talentId": {
|
||||
"10761": 7631,
|
||||
"10762": 7632,
|
||||
"10765": 7639
|
||||
},
|
||||
"talentKey": {
|
||||
"10761": "a",
|
||||
"10762": "e",
|
||||
"10765": "q"
|
||||
}
|
||||
},
|
||||
"10000077": {
|
||||
"name": "瑶瑶",
|
||||
"talentId": {
|
||||
"10771": 7731,
|
||||
"10772": 7732,
|
||||
"10775": 7739
|
||||
},
|
||||
"talentKey": {
|
||||
"10771": "a",
|
||||
"10772": "e",
|
||||
"10775": "q"
|
||||
}
|
||||
},
|
||||
"10000078": {
|
||||
"name": "艾尔海森",
|
||||
"talentId": {
|
||||
"10781": 7831,
|
||||
"10782": 7832,
|
||||
"10785": 7839
|
||||
},
|
||||
"talentKey": {
|
||||
"10781": "a",
|
||||
"10782": "e",
|
||||
"10785": "q"
|
||||
}
|
||||
},
|
||||
"10000079": {
|
||||
"name": "迪希雅",
|
||||
"talentId": {
|
||||
"10791": 7931,
|
||||
"10792": 7932,
|
||||
"10795": 7939
|
||||
},
|
||||
"talentKey": {
|
||||
"10791": "a",
|
||||
"10792": "e",
|
||||
"10795": "q"
|
||||
}
|
||||
},
|
||||
"10000080": {
|
||||
"name": "米卡",
|
||||
"talentId": {
|
||||
"10801": 8031,
|
||||
"10802": 8032,
|
||||
"10805": 8039
|
||||
},
|
||||
"talentKey": {
|
||||
"10801": "a",
|
||||
"10802": "e",
|
||||
"10805": "q"
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user