@sjtdev/koishi-plugin-dota2tracker 1.2.8 → 1.2.9-pre.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/changelog.md +11 -0
- package/lib/index.js +7 -1
- package/package.json +1 -1
- package/template/hero/hero_1.ejs +23 -9
- package/template/match/match_1.ejs +5 -0
- package/template/player/player_1.ejs +5 -6
package/changelog.md
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
### 1.2.9-pre.2
|
|
2
|
+
**改进**:
|
|
3
|
+
- 现在可在战报模板`match_1`和玩家信息模板中正确显示打野玩家的对线结果为“野区霸主”并有对应的图标,而不是跟随默认的中路对线结果。
|
|
4
|
+
|
|
5
|
+
### 1.2.9-pre
|
|
6
|
+
**修复**:
|
|
7
|
+
- `查询英雄`:尝试修复DOTA2 7.37版本更新后API变动导致部分英雄查询报错。
|
|
8
|
+
|
|
9
|
+
**改进**:
|
|
10
|
+
- `查询英雄`:命石技能的技能名栏位添加对应命石图标与背景色用于标识。
|
|
11
|
+
|
|
1
12
|
# 1.2.8
|
|
2
13
|
**新增**:
|
|
3
14
|
- 新增周报功能,效果等同日报。
|
package/lib/index.js
CHANGED
|
@@ -642,6 +642,9 @@ function getFormattedMatchData(match) {
|
|
|
642
642
|
case "OFF_LANE":
|
|
643
643
|
player.laneResult = laneResult[!player.isRadiant ? "bottom" : "top"][player.team];
|
|
644
644
|
break;
|
|
645
|
+
case "JUNGLE":
|
|
646
|
+
player.laneResult = "jungle";
|
|
647
|
+
break;
|
|
645
648
|
default:
|
|
646
649
|
player.laneResult = laneResult.mid[player.team];
|
|
647
650
|
break;
|
|
@@ -1531,6 +1534,7 @@ async function apply(ctx, config) {
|
|
|
1531
1534
|
else
|
|
1532
1535
|
hero.facets[i].description_loc = formatHeroDesc(hero.facets[i].description_loc, ab.special_values, "facet" /* Facet */);
|
|
1533
1536
|
ab.ability_is_facet = true;
|
|
1537
|
+
ab.facet = hero.facets[i];
|
|
1534
1538
|
hero.abilities.push(ab);
|
|
1535
1539
|
});
|
|
1536
1540
|
}
|
|
@@ -1538,6 +1542,9 @@ async function apply(ctx, config) {
|
|
|
1538
1542
|
const all_special_values = [...hero.abilities.flatMap((ab) => ab.special_values), ...hero.facet_abilities.flatMap((fas) => fas.abilities.flatMap((fa) => fa.special_values))];
|
|
1539
1543
|
hero.abilities.forEach((ab) => {
|
|
1540
1544
|
ab.facets_loc.forEach((facet, i) => {
|
|
1545
|
+
i = i + (hero.facets.length - ab.facets_loc.length);
|
|
1546
|
+
if (i < 0)
|
|
1547
|
+
return;
|
|
1541
1548
|
if (facet) {
|
|
1542
1549
|
if (!hero.facets[i].abilities)
|
|
1543
1550
|
hero.facets[i].abilities = [];
|
|
@@ -1735,7 +1742,6 @@ async function apply(ctx, config) {
|
|
|
1735
1742
|
for (let player of broadPlayers) {
|
|
1736
1743
|
const random2 = new import_koishi2.Random(() => simpleHashToSeed(`${match.id}-${player.steamAccountId}-${player.playerSlot}`));
|
|
1737
1744
|
let broadPlayerMessage = `${player.steamAccount.name}的${random2.pick(HEROES_CHINESE[player.hero.id])}`;
|
|
1738
|
-
console.log([player.deathContribution, player.killContribution]);
|
|
1739
1745
|
if (player.isRadiant == match.didRadiantWin) {
|
|
1740
1746
|
if (player.deathContribution < 0.2 || player.killContribution > 0.75 || player.heroDamage / player.networth > 1.5 || player.towerDamage > 1e4 || player.imp > 0)
|
|
1741
1747
|
broadPlayerMessage += random2.pick(WIN_POSITIVE);
|
package/package.json
CHANGED
package/template/hero/hero_1.ejs
CHANGED
|
@@ -204,7 +204,8 @@
|
|
|
204
204
|
gap: 10px; /* 可选:设置项目之间的间距 */
|
|
205
205
|
}
|
|
206
206
|
|
|
207
|
-
.facet
|
|
207
|
+
.facets > .facet ,
|
|
208
|
+
.skill > .facet {
|
|
208
209
|
flex: 1 1 calc(50% - 10px); /* 每行两个项目 */
|
|
209
210
|
box-sizing: border-box; /* 包含padding和border在宽度和高度的计算中 */
|
|
210
211
|
background-color: #181f24;
|
|
@@ -212,10 +213,11 @@
|
|
|
212
213
|
border: 1px solid #2b2f33;
|
|
213
214
|
}
|
|
214
215
|
|
|
215
|
-
.facet:nth-child(odd):last-child {
|
|
216
|
+
.facets > .facet:nth-child(odd):last-child {
|
|
216
217
|
flex-basis: 100%; /* 最后一个奇数项目占据整行 */
|
|
217
218
|
}
|
|
218
|
-
.facet > .name_back
|
|
219
|
+
.facets > .facet > .name_back ,
|
|
220
|
+
.skill > .facet > .name_back {
|
|
219
221
|
position: absolute;
|
|
220
222
|
height: 50px;
|
|
221
223
|
width: 100%;
|
|
@@ -343,6 +345,8 @@
|
|
|
343
345
|
background-color: #1f272b;
|
|
344
346
|
padding: 8px;
|
|
345
347
|
font-weight: 100;
|
|
348
|
+
height: auto;
|
|
349
|
+
width: auto;
|
|
346
350
|
}
|
|
347
351
|
.skill > .title > .name {
|
|
348
352
|
font-family: "KaiTi", "楷体", "楷体_GB2312", "STKaiti", serif;
|
|
@@ -357,6 +361,10 @@
|
|
|
357
361
|
background-color: #5b93d1;
|
|
358
362
|
}
|
|
359
363
|
|
|
364
|
+
.skill > .title.name_back > img{
|
|
365
|
+
width: 16px;
|
|
366
|
+
}
|
|
367
|
+
|
|
360
368
|
.skill img.scepter,
|
|
361
369
|
.skill img.shard {
|
|
362
370
|
position: absolute;
|
|
@@ -685,8 +693,9 @@
|
|
|
685
693
|
<div class="skills">
|
|
686
694
|
${hero.abilities//.filter((item) => dotaconstants.abilities[item.name]?.behavior != "Hidden")
|
|
687
695
|
.map((item) => `
|
|
688
|
-
<div class="skill" data-innate="${item.ability_is_innate&&!item.ability_is_facet}">
|
|
689
|
-
<p class="title">
|
|
696
|
+
<div class="skill${item.facet?' facet':''}" data-innate="${item.ability_is_innate&&!item.ability_is_facet}">
|
|
697
|
+
<p class="title${item.facet?(' name_back type_' + item.facet?.color):''}">
|
|
698
|
+
${item.facet?`<img src="${utils.getImageUrl(item.facet?.icon, ImageType.IconsFacets)}">`:""}
|
|
690
699
|
<span class="name">${item.name_loc}</span>
|
|
691
700
|
${item.ability_is_innate&&!item.ability_is_facet?`<span class="is_innate">先天技能</span>`:""}
|
|
692
701
|
${item.ability_is_granted_by_scepter ?`<img src="${utils.getImageUrl("scepter")}" class="scepter">`:""}
|
|
@@ -712,7 +721,12 @@
|
|
|
712
721
|
</div>
|
|
713
722
|
</div>
|
|
714
723
|
<p class="description">${item.desc_loc}</p>
|
|
715
|
-
${item.facets_loc
|
|
724
|
+
${item.facets_loc
|
|
725
|
+
.reduce((acc, facet_loc, index) => {
|
|
726
|
+
index = index + (hero.facets.length - item.facets_loc.length);
|
|
727
|
+
if (index >= 0) acc.push(facet_loc);
|
|
728
|
+
return acc;},[])
|
|
729
|
+
.map((facet_loc,index)=>(facet_loc!=""?`
|
|
716
730
|
<div class="facet">
|
|
717
731
|
<div class="name_back type_${hero.facets[index].color}"></div>
|
|
718
732
|
<div class="name_line type_${hero.facets[index].color}"></div>
|
|
@@ -727,12 +741,12 @@
|
|
|
727
741
|
</div>
|
|
728
742
|
</div>
|
|
729
743
|
`:"")).join("")}
|
|
730
|
-
${item.ability_has_scepter&&!item.ability_is_granted_by_scepter
|
|
744
|
+
${item.ability_has_scepter&&!item.ability_is_granted_by_scepter&&item.scepter_loc
|
|
731
745
|
? `<p class="aghanim_description">
|
|
732
746
|
<span class="title"><img src="${utils.getImageUrl("scepter")}"class="scepter">阿哈利姆神杖</span>
|
|
733
747
|
<span class="desc">${item.scepter_loc}</span>
|
|
734
748
|
</p>` : ""}
|
|
735
|
-
${item.ability_has_shard&&!item.ability_is_granted_by_shard
|
|
749
|
+
${item.ability_has_shard&&!item.ability_is_granted_by_shard&&item.shard_loc
|
|
736
750
|
? `<p class="aghanim_description">
|
|
737
751
|
<span class="title"><img src="${utils.getImageUrl("shard")}"class="shard">阿哈利姆魔晶</span>
|
|
738
752
|
<span class="desc">${item.shard_loc}</span>
|
|
@@ -760,7 +774,7 @@
|
|
|
760
774
|
`<span class="alternative shard">
|
|
761
775
|
<img src="${utils.getImageUrl("shard")}"/>${sv.values_shard.map(value => (value > 0 ? '<span class="plus">+</span>' : "") + value + (sv.is_percentage ? "%" : "")).join(" / ")}
|
|
762
776
|
</span>` : "" }
|
|
763
|
-
${sv.facet_bonus.name ?
|
|
777
|
+
${sv.facet_bonus.name && hero.facets.some(facet=>facet.name==sv.facet_bonus.name) ?
|
|
764
778
|
`<span class="alternative facet">
|
|
765
779
|
<span class="facet"><span class="name_back type_${hero.facets.find(facet=>facet.name==sv.facet_bonus.name).color}"><img src="${utils.getImageUrl(hero.facets.find(facet=>facet.name==sv.facet_bonus.name).icon, ImageType.IconsFacets)}" />${sv.facet_bonus.values.map(value => value + (sv.is_percentage ? "%" : "")).join(" / ")}</span></span>
|
|
766
780
|
</span>` : "" }
|
|
@@ -345,6 +345,10 @@
|
|
|
345
345
|
content: "对线被碾";
|
|
346
346
|
}
|
|
347
347
|
|
|
348
|
+
.hero .player_lane.jungle::after {
|
|
349
|
+
content: "野区霸主";
|
|
350
|
+
}
|
|
351
|
+
|
|
348
352
|
.hero .player_lane.victory svg path {
|
|
349
353
|
fill: lightgreen;
|
|
350
354
|
}
|
|
@@ -682,6 +686,7 @@
|
|
|
682
686
|
fail: `<svg viewBox="0 0 36 36"><path fill="#ff6961" d="M36 32a4 4 0 0 1-4 4H4a4 4 0 0 1-4-4V4a4 4 0 0 1 4-4h28a4 4 0 0 1 4 4v28z"></path><circle fill="#FFF" cx="27" cy="7" r="3"></circle><path fill="#FFF" d="M13.06 13.06l2.367-2.366l3.859 1.158l-2.635 2.847a10.018 10.018 0 0 1 4.392 3.379l5.017-5.017a1.5 1.5 0 0 0-.63-2.497l-9.999-3a1.495 1.495 0 0 0-1.492.376l-3 3a1.5 1.5 0 1 0 2.121 2.12zm16.065 4.949a1.496 1.496 0 0 0-1.262-.503l-6.786.617a9.966 9.966 0 0 1 1.464 2.879l3.548-.322l-1.554 6.995a1.499 1.499 0 1 0 2.928.65l2-9a1.5 1.5 0 0 0-.338-1.316zM13 16a8 8 0 1 0 0 16a8 8 0 0 0 0-16zm0 14a6 6 0 1 1 .002-12.002A6 6 0 0 1 13 30z"></path></svg>`,
|
|
683
687
|
stomped: `<svg viewBox="-1 0 19 19"><path d="M16.417 9.579A7.917 7.917 0 1 1 8.5 1.662a7.917 7.917 0 0 1 7.917 7.917zm-2.458 2.96a.396.396 0 0 0-.396-.397h-.667a1.527 1.527 0 0 0-1.249-1.114.777.777 0 0 0 .014-.145V9.378a.794.794 0 0 0-.792-.792H8.201a2.984 2.984 0 0 0-1.682-.516l-.11.002V7.42h2.997a.396.396 0 1 0 0-.792H6.41v-1.3a.396.396 0 0 0-.396-.397H4.891a.396.396 0 0 0 0 .792h.727V8.21a2.997 2.997 0 1 0 3.836 3.466h.71a1.526 1.526 0 1 0 2.732 1.26h.667a.396.396 0 0 0 .396-.397zM8.078 9.507a2.205 2.205 0 1 1-1.559-.646 2.19 2.19 0 0 1 1.559.646zm4.078 3.03a.734.734 0 1 1-.733-.734.735.735 0 0 1 .733.733z"/></svg>`,
|
|
684
688
|
tie: `<svg fill="#fff" viewBox="0 0 512.001 512.001"><g><g><path d="M120.988,239.868c-4.496,10.625-5.122,20.183-5.157,20.811c-0.267,4.607,3.243,8.547,7.849,8.829 c4.618,0.29,8.574-3.228,8.873-7.833c0.265-4.771,2.339-13.092,5.884-19.44C137.421,242.113,141.397,242.649,120.988,239.868z"/></g></g><g><g><path d="M391.178,255.418c-0.211,8.054-2.458,17.62-6.74,28.398c-1.708,4.299,0.393,9.168,4.692,10.875 c4.293,1.708,9.167-0.39,10.875-4.692c5.103-12.842,7.74-24.392,7.943-34.581H391.178z"/></g></g><g><g><path d="M164.769,210.51c1.046,3.339,1.397,6.953,0.893,10.65c-0.293,2.146-0.857,4.188-1.648,6.1c0,0,51.266,3.416,198.065,3.949 c-0.086-6.331,2.19-12.199,6.244-16.732C217.627,214.046,164.769,210.51,164.769,210.51z"/></g></g><g><g><circle cx="37.179" cy="128.669" r="29.491"/></g></g><g><g><path d="M510.146,391.511l-37.916-66.985c14.35-49.173,20.678-68.137,20.678-68.137l8.949-67.014 c1.502-10.977-6.248-21.075-17.235-22.468l-18.183-2.305c-10.984-1.393-20.996,6.445-22.293,17.431l-1.884,15.955l28.718-21.317 l-37.91,42.278h-46.432c-6.571,0-11.898,5.328-11.898,11.898c0,6.57,5.328,11.898,11.898,11.898h51.744 c3.381,0,6.601-1.438,8.859-3.956l41.456-46.234l-32.023,54.694c-5.28,9.018-14.374,8.169-18.293,8.167c-1.959,0-3.31,0-5.295,0 c-0.399,0.898,3.152-7.399-24.44,57.181c-0.548,1.284-0.907,2.642-1.06,4.031l-8.934,80.338 c-0.939,8.447,5.667,15.857,14.208,15.857c7.179,0,13.361-5.401,14.172-12.701l8.702-78.244l21.512-50.353l-14.121,50.463 c-1.158,3.756-0.718,7.823,1.218,11.243l40.949,72.345c3.885,6.864,12.596,9.276,19.459,5.392 C511.615,407.085,514.03,398.373,510.146,391.511z"/></g></g><g><g><circle cx="464.865" cy="128.702" r="29.491"/></g></g><g><g><path d="M142.923,206.051l-59.556-8.118l-39.135-18.451l13.626,2.292c-1.422-10.945-11.411-18.577-22.254-17.202l-18.182,2.305 C6.43,168.271-1.315,178.374,0.186,189.345l9.12,68.689l21.865,70.857l5.829,70.795c0.646,7.848,7.527,13.705,15.401,13.057 c7.859-0.647,13.705-7.542,13.058-15.401l-5.956-72.345c-0.084-1.031-0.281-2.05-0.585-3.039l-14.123-50.463l21.514,50.353 l8.702,78.244c0.873,7.86,7.96,13.486,15.768,12.612c7.838-0.871,13.483-7.931,12.612-15.768l-8.934-80.338 c-0.154-1.388-0.511-2.747-1.06-4.032l-27.336-61.43l-2.945-24.951l-29.029-25.179l40.79,19.231 c1.097,0.517,2.266,0.862,3.468,1.027l61.369,8.365c6.521,0.887,12.509-3.68,13.396-10.183 C153.994,212.936,149.435,206.939,142.923,206.051z"/></g></g></svg>`,
|
|
689
|
+
jungle: `<svg fill="#fff" version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 395 395" xml:space="preserve"><g><path d="M313.002,0H82C36.785,0,0,36.784,0,81.998v230.993C0,358.211,36.785,395,82,395h231.002 C358.216,395,395,358.211,395,312.991V81.998C395,36.784,358.216,0,313.002,0z M380,312.991C380,349.94,349.944,380,313.002,380H82 c-36.944,0-67-30.06-67-67.009V81.998C15,45.055,45.056,15,82,15h231.002C349.944,15,380,45.055,380,81.998V312.991z"/><path d="M305.336,107.5c-21.492,0-38.915,17.422-38.915,38.912c0,21.495,17.423,38.915,38.915,38.915 c21.49,0,38.911-17.42,38.911-38.915C344.247,124.922,326.826,107.5,305.336,107.5z"/><path d="M309.227,186.313c-10.602,0-21.818,7.267-21.818,7.267l-20.557-20.553c-2.876-2.876-3.857-3.915-6.746-3.915H145.701 H65.539v-0.193c0-2.149-1.742-3.891-3.892-3.891c-2.149,0-3.892,1.742-3.892,3.891v0.193h-7.003c-4.298,0-7.782,3.484-7.782,7.783 c0,4.298,3.484,7.783,7.782,7.783h87.166v9.081c0,4.298,3.484,7.783,7.782,7.783h36.863c-0.523,5.762,2.184,11.588,7.477,14.765 l53.325,31.996c2.468,1.48,5.238,2.218,8.009,2.218c2.905,0,5.809-0.813,8.355-2.433l14.475-9.209V287.5h70.042v-66.164 C344.247,201.992,328.567,186.313,309.227,186.313z M251.135,216.658L225.94,201.54h26.137l8.872,8.873L251.135,216.658z"/><path d="M167.491,165.612h45.528c4.298,0,7.782-3.484,7.782-7.783s-3.484-7.783-7.782-7.783h-45.528 c-4.298,0-7.782,3.484-7.782,7.783S163.193,165.612,167.491,165.612z"/></g></svg>`
|
|
685
690
|
};
|
|
686
691
|
%>
|
|
687
692
|
<div class="wrapper">
|
|
@@ -312,6 +312,7 @@
|
|
|
312
312
|
fail: `<svg viewBox="0 0 36 36"><path fill="#ff6961" d="M36 32a4 4 0 0 1-4 4H4a4 4 0 0 1-4-4V4a4 4 0 0 1 4-4h28a4 4 0 0 1 4 4v28z"></path><circle fill="#FFF" cx="27" cy="7" r="3"></circle><path fill="#FFF" d="M13.06 13.06l2.367-2.366l3.859 1.158l-2.635 2.847a10.018 10.018 0 0 1 4.392 3.379l5.017-5.017a1.5 1.5 0 0 0-.63-2.497l-9.999-3a1.495 1.495 0 0 0-1.492.376l-3 3a1.5 1.5 0 1 0 2.121 2.12zm16.065 4.949a1.496 1.496 0 0 0-1.262-.503l-6.786.617a9.966 9.966 0 0 1 1.464 2.879l3.548-.322l-1.554 6.995a1.499 1.499 0 1 0 2.928.65l2-9a1.5 1.5 0 0 0-.338-1.316zM13 16a8 8 0 1 0 0 16a8 8 0 0 0 0-16zm0 14a6 6 0 1 1 .002-12.002A6 6 0 0 1 13 30z"></path></svg>`,
|
|
313
313
|
stomped: `<svg viewBox="-1 0 19 19"><path d="M16.417 9.579A7.917 7.917 0 1 1 8.5 1.662a7.917 7.917 0 0 1 7.917 7.917zm-2.458 2.96a.396.396 0 0 0-.396-.397h-.667a1.527 1.527 0 0 0-1.249-1.114.777.777 0 0 0 .014-.145V9.378a.794.794 0 0 0-.792-.792H8.201a2.984 2.984 0 0 0-1.682-.516l-.11.002V7.42h2.997a.396.396 0 1 0 0-.792H6.41v-1.3a.396.396 0 0 0-.396-.397H4.891a.396.396 0 0 0 0 .792h.727V8.21a2.997 2.997 0 1 0 3.836 3.466h.71a1.526 1.526 0 1 0 2.732 1.26h.667a.396.396 0 0 0 .396-.397zM8.078 9.507a2.205 2.205 0 1 1-1.559-.646 2.19 2.19 0 0 1 1.559.646zm4.078 3.03a.734.734 0 1 1-.733-.734.735.735 0 0 1 .733.733z"/></svg>`,
|
|
314
314
|
tie: `<svg fill="#fff" viewBox="0 0 512.001 512.001"><g><g><path d="M120.988,239.868c-4.496,10.625-5.122,20.183-5.157,20.811c-0.267,4.607,3.243,8.547,7.849,8.829 c4.618,0.29,8.574-3.228,8.873-7.833c0.265-4.771,2.339-13.092,5.884-19.44C137.421,242.113,141.397,242.649,120.988,239.868z"/></g></g><g><g><path d="M391.178,255.418c-0.211,8.054-2.458,17.62-6.74,28.398c-1.708,4.299,0.393,9.168,4.692,10.875 c4.293,1.708,9.167-0.39,10.875-4.692c5.103-12.842,7.74-24.392,7.943-34.581H391.178z"/></g></g><g><g><path d="M164.769,210.51c1.046,3.339,1.397,6.953,0.893,10.65c-0.293,2.146-0.857,4.188-1.648,6.1c0,0,51.266,3.416,198.065,3.949 c-0.086-6.331,2.19-12.199,6.244-16.732C217.627,214.046,164.769,210.51,164.769,210.51z"/></g></g><g><g><circle cx="37.179" cy="128.669" r="29.491"/></g></g><g><g><path d="M510.146,391.511l-37.916-66.985c14.35-49.173,20.678-68.137,20.678-68.137l8.949-67.014 c1.502-10.977-6.248-21.075-17.235-22.468l-18.183-2.305c-10.984-1.393-20.996,6.445-22.293,17.431l-1.884,15.955l28.718-21.317 l-37.91,42.278h-46.432c-6.571,0-11.898,5.328-11.898,11.898c0,6.57,5.328,11.898,11.898,11.898h51.744 c3.381,0,6.601-1.438,8.859-3.956l41.456-46.234l-32.023,54.694c-5.28,9.018-14.374,8.169-18.293,8.167c-1.959,0-3.31,0-5.295,0 c-0.399,0.898,3.152-7.399-24.44,57.181c-0.548,1.284-0.907,2.642-1.06,4.031l-8.934,80.338 c-0.939,8.447,5.667,15.857,14.208,15.857c7.179,0,13.361-5.401,14.172-12.701l8.702-78.244l21.512-50.353l-14.121,50.463 c-1.158,3.756-0.718,7.823,1.218,11.243l40.949,72.345c3.885,6.864,12.596,9.276,19.459,5.392 C511.615,407.085,514.03,398.373,510.146,391.511z"/></g></g><g><g><circle cx="464.865" cy="128.702" r="29.491"/></g></g><g><g><path d="M142.923,206.051l-59.556-8.118l-39.135-18.451l13.626,2.292c-1.422-10.945-11.411-18.577-22.254-17.202l-18.182,2.305 C6.43,168.271-1.315,178.374,0.186,189.345l9.12,68.689l21.865,70.857l5.829,70.795c0.646,7.848,7.527,13.705,15.401,13.057 c7.859-0.647,13.705-7.542,13.058-15.401l-5.956-72.345c-0.084-1.031-0.281-2.05-0.585-3.039l-14.123-50.463l21.514,50.353 l8.702,78.244c0.873,7.86,7.96,13.486,15.768,12.612c7.838-0.871,13.483-7.931,12.612-15.768l-8.934-80.338 c-0.154-1.388-0.511-2.747-1.06-4.032l-27.336-61.43l-2.945-24.951l-29.029-25.179l40.79,19.231 c1.097,0.517,2.266,0.862,3.468,1.027l61.369,8.365c6.521,0.887,12.509-3.68,13.396-10.183 C153.994,212.936,149.435,206.939,142.923,206.051z"/></g></g></svg>`,
|
|
315
|
+
jungle: `<svg fill="#fff" version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 395 395" xml:space="preserve"><g><path d="M313.002,0H82C36.785,0,0,36.784,0,81.998v230.993C0,358.211,36.785,395,82,395h231.002 C358.216,395,395,358.211,395,312.991V81.998C395,36.784,358.216,0,313.002,0z M380,312.991C380,349.94,349.944,380,313.002,380H82 c-36.944,0-67-30.06-67-67.009V81.998C15,45.055,45.056,15,82,15h231.002C349.944,15,380,45.055,380,81.998V312.991z"/><path d="M305.336,107.5c-21.492,0-38.915,17.422-38.915,38.912c0,21.495,17.423,38.915,38.915,38.915 c21.49,0,38.911-17.42,38.911-38.915C344.247,124.922,326.826,107.5,305.336,107.5z"/><path d="M309.227,186.313c-10.602,0-21.818,7.267-21.818,7.267l-20.557-20.553c-2.876-2.876-3.857-3.915-6.746-3.915H145.701 H65.539v-0.193c0-2.149-1.742-3.891-3.892-3.891c-2.149,0-3.892,1.742-3.892,3.891v0.193h-7.003c-4.298,0-7.782,3.484-7.782,7.783 c0,4.298,3.484,7.783,7.782,7.783h87.166v9.081c0,4.298,3.484,7.783,7.782,7.783h36.863c-0.523,5.762,2.184,11.588,7.477,14.765 l53.325,31.996c2.468,1.48,5.238,2.218,8.009,2.218c2.905,0,5.809-0.813,8.355-2.433l14.475-9.209V287.5h70.042v-66.164 C344.247,201.992,328.567,186.313,309.227,186.313z M251.135,216.658L225.94,201.54h26.137l8.872,8.873L251.135,216.658z"/><path d="M167.491,165.612h45.528c4.298,0,7.782-3.484,7.782-7.783s-3.484-7.783-7.782-7.783h-45.528 c-4.298,0-7.782,3.484-7.782,7.783S163.193,165.612,167.491,165.612z"/></g></svg>`
|
|
315
316
|
};
|
|
316
317
|
const outcomeCounts = {
|
|
317
318
|
victory: 0,
|
|
@@ -356,13 +357,11 @@
|
|
|
356
357
|
};
|
|
357
358
|
|
|
358
359
|
let laneKey = "mid"; // 默认中路
|
|
359
|
-
if (innerPlayer.lane === "SAFE_LANE")
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
}
|
|
360
|
+
if (innerPlayer.lane === "SAFE_LANE") laneKey = innerPlayer.isRadiant ? "bottom" : "top";
|
|
361
|
+
else if (innerPlayer.lane === "OFF_LANE") laneKey = innerPlayer.isRadiant ? "top" : "bottom";
|
|
362
|
+
if (innerPlayer.lane === "JUNGLE") match.laneResult = "jungle";
|
|
363
|
+
else match.laneResult = laneResult[laneKey][innerPlayer.isRadiant ? "radiant" : "dire"];
|
|
364
364
|
|
|
365
|
-
match.laneResult = laneResult[laneKey][innerPlayer.isRadiant ? "radiant" : "dire"];
|
|
366
365
|
if (match.laneResult in outcomeCounts) {
|
|
367
366
|
outcomeCounts[match.laneResult]++;
|
|
368
367
|
}
|