From dd26b5f3aa8108c3026080c734878e541c4cd05c Mon Sep 17 00:00:00 2001 From: SoniEx2 Date: Fri, 27 Aug 2021 15:53:46 -0300 Subject: [Project] UwU Mode A client-side mod for Minecraft that adds uwu~ to chat messages, and can be enabled/disabled with commands. --- src/main/resources/fabric.mod.json | 35 ++++++++++++++++++++++++++++++++++ src/main/resources/uwumode.mixins.json | 13 +++++++++++++ 2 files changed, 48 insertions(+) create mode 100644 src/main/resources/fabric.mod.json create mode 100644 src/main/resources/uwumode.mixins.json (limited to 'src/main/resources') diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json new file mode 100644 index 0000000..485459c --- /dev/null +++ b/src/main/resources/fabric.mod.json @@ -0,0 +1,35 @@ +{ + "schemaVersion": 1, + "id": "uwumode", + "version": "${version}", + + "name": "UwU Mode", + "description": "Makes your messages end in uwu, with consent.", + "authors": [ + "SoniEx2" + ], + "contact": { + "homepage": "https://autistic.space/", + "sources": "https://soniex2.autistic.space/git-repos/uwumode.git" + }, + + "license": "AGPL-3.0-or-later", + + "environment": "*", + "entrypoints": { + "client": [ + "space.autistic.uwumode.UwuModeKt::init" + ] + }, + "mixins": [ + "uwumode.mixins.json" + ], + "depends": { + "fabricloader": ">=0.8.7", + "fabric": "*", + "fabric-language-kotlin": "*", + "minecraft": "1.17.x" + }, + "suggests": { + } +} diff --git a/src/main/resources/uwumode.mixins.json b/src/main/resources/uwumode.mixins.json new file mode 100644 index 0000000..4eb19dc --- /dev/null +++ b/src/main/resources/uwumode.mixins.json @@ -0,0 +1,13 @@ +{ + "required": true, + "package": "space.autistic.uwumode.mixin", + "compatibilityLevel": "JAVA_8", + "mixins": [ + ], + "client": [ + "UwuMixin" + ], + "injectors": { + "defaultRequire": 1 + } +} -- cgit 1.4.1