-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix send message wrong. version 0.1 completed
- Loading branch information
Showing
6 changed files
with
72 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,45 @@ | ||
# IngotFly | ||
在生存模式下,你可以飞行,但你需要花费一些宝石或锭 | ||
|
||
在生存模式下,你可以飞行,但你需要花费一些宝石或锭. | ||
|
||
这是一个超级简单超级小的fabric模组,由**MPT**团队制作 | ||
|
||
[MPT 官网](https://www.minept.top/) | ||
## rule | ||
用 H 按键打开一个菜单(UI用的是Minecraft自带的UI,所以比较丑),里面显示铁锭、金锭、铜锭、绿宝石、钻石和下界合金锭,并且其名字使用红字表示消耗一个这样的矿物可飞行多长时间 | ||
|
||
飞行时间: | ||
|
||
铁锭:3秒 | ||
|
||
金锭:5秒 | ||
|
||
铜锭:5秒 | ||
|
||
绿宝石:12秒 | ||
|
||
钻石:30秒 | ||
|
||
下界合金锭:2分钟 | ||
|
||
在成功换取飞行时间后,出现一声获取经验的钉声,在聊天栏中显示:换取成功!您的飞行时间还剩(飞行时间)秒~ | ||
|
||
在飞行时间快结束的时候在聊天栏发出警告:快降落!飞行时间快到了!还剩(飞行时间)秒! | ||
|
||
## Installing | ||
|
||
通过在releases中获取jar包 | ||
|
||
拖动到模组文件夹并在游戏内加载模组 | ||
|
||
## Bug | ||
|
||
暂时未发现bug | ||
|
||
## TIP | ||
|
||
写这个模组只是为了实现别人的需求 | ||
|
||
并不是为了水 commit 和 装逼 | ||
|
||
如果你觉得我的代码很 shit 或者有需要改进的地方 请给我的 qq 发送消息 1055965862 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,10 @@ | ||
{ | ||
"key.ingot_fly.gui": "打开 ingotFly 界面", | ||
"gui.ingot_fly.title": "ingotFly 界面", | ||
"key.ingot_fly.gui": "打开 IngotFly 界面", | ||
"gui.ingot_fly.title": "IngotFly 界面", | ||
"text.ingot_fly.message": "花费一个锭获取", | ||
"text.ingot_fly.time": "秒" | ||
"text.ingot_fly.time": "秒", | ||
"chat.text.fall": "快降落!飞行时间快到了!还剩", | ||
"chat.text.end": "飞行时间结束", | ||
"chat.text.flying": "玩家已经在飞行或可以飞行,无法再次使用道具!", | ||
"chat.text.capability": "获取飞行能力成功" | ||
} |