@sjtdev/koishi-plugin-dota2tracker 2.2.1 → 2.2.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/README.md +39 -0
- package/changelog.md +728 -0
- package/dist/index.js +1 -0
- package/lib/index.js +452 -199
- package/package.json +8 -3
- package/template/match/match_2/original.ejs +10 -1
- package/template/match/match_2+/charts.ejs +29 -5
- package/template/match/match_2+/extra.css +15 -3
- package/template/match/match_2+/lane_outcome.ejs +21 -7
- package/readme.md +0 -70
package/README.md
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# @sjtdev/koishi-plugin-dota2tracker
|
|
2
|
+
|
|
3
|
+
[](https://github.com/sjtdev/koishi-plugin-dota2tracker/releases/latest)
|
|
4
|
+
[](https://www.npmjs.com/package/@sjtdev/koishi-plugin-dota2tracker)
|
|
5
|
+
|
|
6
|
+
中文 | [English](README_EN.md)
|
|
7
|
+
|
|
8
|
+
**一个 Koishi DOTA2 插件,提供自动对局追踪、数据查询和图片战报生成等功能。**
|
|
9
|
+
|
|
10
|
+
### [**前往查看 ≫ 完整文档**](https://sjtdev.github.io/koishi-plugin-dota2tracker/)
|
|
11
|
+
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+

|
|
15
|
+
*(此图片基于一场高分局比赛数据使用`match_2+`模板生成,详情请见 [文档:对局信息模板#match_2+](https://sjtdev.github.io/koishi-plugin-dota2tracker/template-match.html#match-2-1))*
|
|
16
|
+
|
|
17
|
+
## ✨ 核心功能
|
|
18
|
+
* **对局追踪**:自动追踪群组/频道内已绑定玩家的最新 DOTA2 对局,并在结束后推送图文战报。
|
|
19
|
+
* **段位追踪**:自动追踪群组/频道内已绑定玩家的段位信息,在段位变动后推送通知。
|
|
20
|
+
* **数据查询**:提供 `查询玩家`、`查询比赛`、`查询英雄`、`查询物品` 等一系列指令。(使用`DOTA2指南`获取插件使用帮助)
|
|
21
|
+
|
|
22
|
+
*(更多功能请查看文档)*
|
|
23
|
+
|
|
24
|
+
## 📦 安装
|
|
25
|
+
在 Koishi 插件市场搜索 `@sjtdev/dota2tracker` 并安装。
|
|
26
|
+
|
|
27
|
+
## 📖 使用
|
|
28
|
+
插件需要配置 Stratz API Token 才能使用。
|
|
29
|
+
|
|
30
|
+
所有详细的功能展示、配置项说明、指令列表等全部插件相关内容,请查阅[**完整使用文档**](https://sjtdev.github.io/koishi-plugin-dota2tracker/)。
|
|
31
|
+
|
|
32
|
+
---
|
|
33
|
+
|
|
34
|
+
## 💡 灵感来源 & 鸣谢
|
|
35
|
+
* 感谢 [SonodaHanami](https://github.com/SonodaHanami) 大佬的 [Steam_watcher](https://github.com/SonodaHanami/Steam_watcher) 项目。
|
|
36
|
+
* 也受到了 [koishi-plugin-dota2track(npm)](https://www.npmjs.com/package/koishi-plugin-dota2track) 的启发。
|
|
37
|
+
|
|
38
|
+
## 📄 许可证
|
|
39
|
+
MIT License © 2023-2025 [sjtdev](https://github.com/sjtdev)
|