diff options
author | 2023-09-05 23:22:33 -0400 | |
---|---|---|
committer | 2023-09-05 23:22:33 -0400 | |
commit | 40432e083b11271cf3148b9c38156cf759436699 (patch) | |
tree | 592dc434b38dc2fba42b66943d9db7328bc63c0f /src/main/resources | |
download | meteor-trashy-addon-40432e083b11271cf3148b9c38156cf759436699.tar.xz |
Initial code dump.
Diffstat (limited to 'src/main/resources')
-rw-r--r-- | src/main/resources/addon.mixins.json | 9 | ||||
-rw-r--r-- | src/main/resources/assets/template/icon.png | bin | 0 -> 2137 bytes | |||
-rw-r--r-- | src/main/resources/fabric.mod.json | 31 |
3 files changed, 40 insertions, 0 deletions
diff --git a/src/main/resources/addon.mixins.json b/src/main/resources/addon.mixins.json new file mode 100644 index 0000000..7fbd83d --- /dev/null +++ b/src/main/resources/addon.mixins.json @@ -0,0 +1,9 @@ +{ + "required": true, + "package": "org.chrisoft.trashyaddon.mixin", + "compatibilityLevel": "JAVA_17", + "client": [], + "injectors": { + "defaultRequire": 1 + } +} diff --git a/src/main/resources/assets/template/icon.png b/src/main/resources/assets/template/icon.png Binary files differnew file mode 100644 index 0000000..3fb2e7f --- /dev/null +++ b/src/main/resources/assets/template/icon.png diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json new file mode 100644 index 0000000..68f8dd0 --- /dev/null +++ b/src/main/resources/fabric.mod.json @@ -0,0 +1,31 @@ +{ + "schemaVersion": 1, + "id": "meteor-trashy-addon", + "version": "${version}", + "name": "Meteor Trashy Addon", + "description": "A trashy collection of meteor addons", + "authors": [ + "Chris Xiong" + ], + "contact": { + "repo": "https://github.com/MeteorDevelopment/meteor-addon-template" + }, + "icon": "assets/template/icon.png", + "environment": "client", + "entrypoints": { + "meteor": [ + "org.chrisoft.trashyaddon.Addon" + ] + }, + "mixins": [ + "addon.mixins.json" + ], + "custom": { + "meteor-client:color": "225,25,25" + }, + "depends": { + "java": ">=17", + "minecraft": ">=${mc_version}", + "meteor-client": "*" + } +} |