mineflayer 3.13.1 → 3.16.0
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/.github/FUNDING.yml +3 -0
- package/.github/workflows/ci.yml +2 -0
- package/README.md +10 -6
- package/docs/FAQ.md +10 -2
- package/docs/README.md +10 -6
- package/docs/api.md +8 -0
- package/docs/history.md +17 -0
- package/docs/zh/CONTRIBUTING.md +93 -0
- package/docs/zh/FAQ.md +169 -0
- package/docs/zh/README_ZH_CN.md +32 -25
- package/docs/zh/_sidebar.md +9 -0
- package/docs/zh/api.md +2132 -0
- package/docs/zh/demos.md +18 -0
- package/docs/zh/history.md +914 -0
- package/docs/zh/index.html +38 -0
- package/docs/zh/tutorial.md +718 -0
- package/examples/attack.js +45 -0
- package/index.d.ts +21 -8
- package/lib/features.json +42 -27
- package/lib/loader.js +1 -1
- package/lib/plugins/blocks.js +70 -90
- package/lib/plugins/entities.js +12 -5
- package/lib/plugins/game.js +6 -1
- package/lib/version.js +2 -2
- package/package.json +6 -6
package/docs/zh/demos.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
## mineflayer-navigate
|
|
2
|
+
|
|
3
|
+
[navigate](https://github.com/andrewrk/mineflayer-navigate/) - 轻松使用A*寻路
|
|
4
|
+
|
|
5
|
+
<iframe type="text/html" width="640" height="360" src="http://www.youtube.com/embed/O6lQdmRz8eE" frameborder="0"></iframe>
|
|
6
|
+
|
|
7
|
+
## rbot
|
|
8
|
+
|
|
9
|
+
[rom1504/rbot](https://github.com/rom1504/rbot) 基于mineflayer的智能机器人
|
|
10
|
+
|
|
11
|
+
<iframe type="text/html" width="640" height="360" src="http://www.youtube.com/embed/0cQxg9uDnzA" frameborder="0"></iframe>
|
|
12
|
+
|
|
13
|
+
## chaoscraft
|
|
14
|
+
|
|
15
|
+
[Chaoscraft](https://github.com/schematical/chaoscraft) 基于genetic算法的Minecraft机器人
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
<iframe width="640" height="360" src="https://www.youtube.com/embed/videoseries?list=PLLkpLgU9B5xJ7Qy4kOyBJl5J6zsDIMceH" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
|