From 0fe5e487922a6ff50b9c415b9384157fbd64b2b5 Mon Sep 17 00:00:00 2001 From: Linnea Gräf Date: Mon, 1 Apr 2024 17:48:53 +0200 Subject: Initial commit --- src/main/resources/assets/potato-crime/icon.png | Bin 0 -> 5913 bytes src/main/resources/fabric.mod.json | 53 ++++++++++++++++++++++++ src/main/resources/potato-crime.mixins.json | 11 +++++ 3 files changed, 64 insertions(+) create mode 100644 src/main/resources/assets/potato-crime/icon.png create mode 100644 src/main/resources/fabric.mod.json create mode 100644 src/main/resources/potato-crime.mixins.json (limited to 'src/main/resources') diff --git a/src/main/resources/assets/potato-crime/icon.png b/src/main/resources/assets/potato-crime/icon.png new file mode 100644 index 0000000..2b4adc3 Binary files /dev/null and b/src/main/resources/assets/potato-crime/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..c82fa1e --- /dev/null +++ b/src/main/resources/fabric.mod.json @@ -0,0 +1,53 @@ +{ + "schemaVersion": 1, + "id": "potato-crime", + "version": "${version}", + "name": "Potato Crime", + "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/potato-crime/icon.png", + "environment": "*", + "entrypoints": { + "main": [ + { + "value": "moe.nea.potatocrime.PotatoCrime", + "adapter": "kotlin" + } + ], + "client": [ + { + "value": "moe.nea.potatocrime.PotatoCrimeClient", + "adapter": "kotlin" + } + ], + "fabric-datagen": [ + { + "value": "moe.nea.potatocrime.PotatoCrimeDataGenerator", + "adapter": "kotlin" + } + ] + }, + "mixins": [ + "potato-crime.mixins.json", + { + "config": "potato-crime.client.mixins.json", + "environment": "client" + } + ], + "depends": { + "fabricloader": ">=0.15.9", + "minecraft": "~1.20.4", + "java": ">=17", + "fabric-language-kotlin": ">=1.9.23" + }, + "suggests": { + "another-mod": "*" + } +} \ No newline at end of file diff --git a/src/main/resources/potato-crime.mixins.json b/src/main/resources/potato-crime.mixins.json new file mode 100644 index 0000000..ba5b256 --- /dev/null +++ b/src/main/resources/potato-crime.mixins.json @@ -0,0 +1,11 @@ +{ + "required": true, + "package": "moe.nea.potatocrime.mixin", + "compatibilityLevel": "JAVA_17", + "mixins": [ + "ExampleMixin" + ], + "injectors": { + "defaultRequire": 1 + } +} \ No newline at end of file -- cgit