diff options
Diffstat (limited to 'src/main/resources')
-rw-r--r-- | src/main/resources/assets/funny-teleporters/icon.png | bin | 0 -> 4352 bytes | |||
-rw-r--r-- | src/main/resources/fabric.mod.json | 41 | ||||
-rw-r--r-- | src/main/resources/funny-teleporters.mixins.json | 11 |
3 files changed, 52 insertions, 0 deletions
diff --git a/src/main/resources/assets/funny-teleporters/icon.png b/src/main/resources/assets/funny-teleporters/icon.png Binary files differnew file mode 100644 index 0000000..71d4949 --- /dev/null +++ b/src/main/resources/assets/funny-teleporters/icon.png diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json new file mode 100644 index 0000000..4f92431 --- /dev/null +++ b/src/main/resources/fabric.mod.json @@ -0,0 +1,41 @@ +{ + "schemaVersion": 1, + "id": "funny-teleporters", + "version": "${version}", + "name": "Funny Teleporters", + "description": "This is an example description! Tell everyone what your mod is about!", + "authors": [ + "Me!" + ], + "contact": { + "homepage": "https://fabricmc.net/", + "sources": "https://github.com/FabricMC/fabric-example-mod" + }, + "license": "CC0-1.0", + "icon": "assets/funny-teleporters/icon.png", + "environment": "*", + "entrypoints": { + "main": [ + "moe.nea.funnyteleporters.FunnyTeleporters" + ], + "client": [ + "moe.nea.funnyteleporters.FunnyTeleportersClient" + ] + }, + "mixins": [ + "funny-teleporters.mixins.json", + { + "config": "funny-teleporters.client.mixins.json", + "environment": "client" + } + ], + "depends": { + "fabricloader": ">=0.16.9", + "minecraft": "~1.21", + "java": ">=21", + "fabric-api": "*" + }, + "suggests": { + "another-mod": "*" + } +}
\ No newline at end of file diff --git a/src/main/resources/funny-teleporters.mixins.json b/src/main/resources/funny-teleporters.mixins.json new file mode 100644 index 0000000..1b0964e --- /dev/null +++ b/src/main/resources/funny-teleporters.mixins.json @@ -0,0 +1,11 @@ +{ + "required": true, + "package": "moe.nea.funnyteleporters.mixin", + "compatibilityLevel": "JAVA_21", + "mixins": [ + "ExampleMixin" + ], + "injectors": { + "defaultRequire": 1 + } +}
\ No newline at end of file |