koishi-plugin-mcdle 0.0.1
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/lib/data.d.ts +53 -0
- package/lib/index.d.ts +42 -0
- package/lib/index.js +15168 -0
- package/package.json +44 -0
- package/readme.md +44 -0
package/package.json
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "koishi-plugin-mcdle",
|
|
3
|
+
"description": "Koishi 的 Minecraft 猜词游戏插件。根据 Minecraft 物品、生物和方块的属性特征,猜测正确的名称。",
|
|
4
|
+
"version": "0.0.1",
|
|
5
|
+
"main": "lib/index.js",
|
|
6
|
+
"typings": "lib/index.d.ts",
|
|
7
|
+
"files": [
|
|
8
|
+
"lib",
|
|
9
|
+
"dist"
|
|
10
|
+
],
|
|
11
|
+
"koishi": {
|
|
12
|
+
"service": {
|
|
13
|
+
"required": [
|
|
14
|
+
"database"
|
|
15
|
+
]
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"license": "MIT OR Apache-2.0",
|
|
19
|
+
"author": "Nawyjx <3373167460@qq.com>",
|
|
20
|
+
"homepage": "https://www.npmjs.com/package/koishi-plugin-mcdle?activeTab=readme",
|
|
21
|
+
"repository": {
|
|
22
|
+
"type": "git",
|
|
23
|
+
"url": "git+https://github.com/araea/koishi-plugin-mcdle.git"
|
|
24
|
+
},
|
|
25
|
+
"keywords": [
|
|
26
|
+
"koishi",
|
|
27
|
+
"plugin",
|
|
28
|
+
"chatbot",
|
|
29
|
+
"mcdle",
|
|
30
|
+
"minecraft",
|
|
31
|
+
"game",
|
|
32
|
+
"guess",
|
|
33
|
+
"wordle",
|
|
34
|
+
"猜词",
|
|
35
|
+
"游戏",
|
|
36
|
+
"我的世界",
|
|
37
|
+
"物品",
|
|
38
|
+
"生物",
|
|
39
|
+
"方块"
|
|
40
|
+
],
|
|
41
|
+
"peerDependencies": {
|
|
42
|
+
"koishi": "^4.18.9"
|
|
43
|
+
}
|
|
44
|
+
}
|
package/readme.md
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# koishi-plugin-mcdle
|
|
2
|
+
|
|
3
|
+
[](https://github.com/araea/koishi-plugin-mcdle)
|
|
4
|
+
[](https://www.npmjs.com/package/koishi-plugin-mcdle)
|
|
5
|
+
|
|
6
|
+
Koishi 的 Minecraft 猜词游戏插件。根据 Minecraft 物品、生物和方块的属性特征,猜测正确的名称。
|
|
7
|
+
|
|
8
|
+
## 使用
|
|
9
|
+
|
|
10
|
+
1. 设置指令别名。
|
|
11
|
+
2. 发送 `mcdle` 查看帮助。
|
|
12
|
+
|
|
13
|
+
## 基本玩法
|
|
14
|
+
|
|
15
|
+
- **mcdle.猜 [名称]** - 开始游戏或进行猜测
|
|
16
|
+
- 系统随机选择**生物、物品或方块**作为答案
|
|
17
|
+
- 通过**颜色提示**判断接近程度:
|
|
18
|
+
|
|
19
|
+
| 符号 | 含义 |
|
|
20
|
+
|------|------|
|
|
21
|
+
| 🟩 绿色 | 字段完全匹配 |
|
|
22
|
+
| 🟨 黄色 | 部分匹配 |
|
|
23
|
+
| 🟥 红色 | 不匹配 |
|
|
24
|
+
| 🟥⬆️ | 答案更大 |
|
|
25
|
+
| 🟥⬇️ | 答案更小 |
|
|
26
|
+
|
|
27
|
+
## 致谢
|
|
28
|
+
|
|
29
|
+
* [Koishi](https://koishi.chat/)
|
|
30
|
+
* [MCDLE](https://www.mcdle.net/)
|
|
31
|
+
* [Minecraft Wiki](https://minecraft.wiki/w/Minecraft_Wiki)
|
|
32
|
+
* [@mikasa-akria](https://github.com/mikasa-akria)
|
|
33
|
+
|
|
34
|
+
## QQ 群
|
|
35
|
+
|
|
36
|
+
* 956758505
|
|
37
|
+
|
|
38
|
+
---
|
|
39
|
+
|
|
40
|
+
### License
|
|
41
|
+
|
|
42
|
+
_Licensed under either of [Apache License, Version 2.0](LICENSE-APACHE) or [MIT license](LICENSE-MIT) at your option._
|
|
43
|
+
|
|
44
|
+
_Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions._
|