From 40432e083b11271cf3148b9c38156cf759436699 Mon Sep 17 00:00:00 2001 From: Chris Xiong Date: Tue, 5 Sep 2023 23:22:33 -0400 Subject: Initial code dump. --- src/main/resources/addon.mixins.json | 9 ++++++++ src/main/resources/assets/template/icon.png | Bin 0 -> 2137 bytes src/main/resources/fabric.mod.json | 31 ++++++++++++++++++++++++++++ 3 files changed, 40 insertions(+) create mode 100644 src/main/resources/addon.mixins.json create mode 100644 src/main/resources/assets/template/icon.png create mode 100644 src/main/resources/fabric.mod.json (limited to 'src/main/resources') 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 new file mode 100644 index 0000000..3fb2e7f Binary files /dev/null and b/src/main/resources/assets/template/icon.png differ 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": "*" + } +} -- cgit v1.2.3