mirror of
https://github.com/TheWhiteDog9487/RandomTeleporter.git
synced 2026-04-04 08:35:34 +08:00
0.1.1
游戏版本1.19.1,功能全部完成
This commit is contained in:
BIN
src/main/resources/assets/randomteleporter/icon.png
Normal file
BIN
src/main/resources/assets/randomteleporter/icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 453 B |
@@ -0,0 +1,3 @@
|
||||
{
|
||||
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"info.twd.rtp.success": "已将玩家%s传送到%d %d %d",
|
||||
"error.twd.rtp.not_player": "执行命令的不是玩家",
|
||||
"warning.twd.rtp.retry": "重试次数过大,为避免死循环将在本次传送中取消距离保护"
|
||||
}
|
||||
47
src/main/resources/fabric.mod.json
Normal file
47
src/main/resources/fabric.mod.json
Normal file
@@ -0,0 +1,47 @@
|
||||
{
|
||||
"schemaVersion": 1,
|
||||
"id": "randomteleporter",
|
||||
"version": "${version}",
|
||||
"name": "RandomTeleporter",
|
||||
"description": "增加了两个用于随机传送的命令",
|
||||
"authors": [
|
||||
"TheWhiteDog9487"
|
||||
],
|
||||
"contact": {
|
||||
"homepage": "https://modrinth.com/mod/randomteleporter",
|
||||
"sources": "https://github.com/TheWhiteDog9487/RandomTeleporter"
|
||||
},
|
||||
"license": "WTFPL",
|
||||
"icon": "assets/randomteleporter/icon.png",
|
||||
"environment": "server",
|
||||
"entrypoints": {
|
||||
"main": [
|
||||
"xyz.thewhitedog9487.RandomTeleporter"
|
||||
],
|
||||
"client": [
|
||||
"xyz.thewhitedog9487.RandomTeleporterClient"
|
||||
]
|
||||
},
|
||||
"mixins": [
|
||||
"randomteleporter.mixins.json",
|
||||
{
|
||||
"config": "randomteleporter.client.mixins.json",
|
||||
"environment": "client"
|
||||
}
|
||||
],
|
||||
"depends": {
|
||||
"fabricloader": ">=0.14.24",
|
||||
"minecraft": "~1.19.1",
|
||||
"java": ">=17",
|
||||
"fabric": "*"
|
||||
},
|
||||
"suggests": {
|
||||
"another-mod": "*"
|
||||
},
|
||||
"custom": {
|
||||
"modmenu": {
|
||||
"links": {
|
||||
"twd-sasf.bilibili": "https://space.bilibili.com/401746666",
|
||||
"twd-sasf.blog": "www.thewhitedog9487.xyz"},
|
||||
"update_checker": true}}
|
||||
}
|
||||
11
src/main/resources/randomteleporter.mixins.json
Normal file
11
src/main/resources/randomteleporter.mixins.json
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"required": false,
|
||||
"package": "xyz.thewhitedog9487.mixin",
|
||||
"compatibilityLevel": "JAVA_17",
|
||||
"mixins": [
|
||||
|
||||
],
|
||||
"injectors": {
|
||||
"defaultRequire": 1
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user