diff options
author | Linnea Gräf <nea@nea.moe> | 2024-04-01 17:48:53 +0200 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2024-04-01 17:48:53 +0200 |
commit | 0fe5e487922a6ff50b9c415b9384157fbd64b2b5 (patch) | |
tree | e62cb4b9abea80d144d95a7bd2e0114088944587 /src/main/resources | |
download | potato-crimes-0fe5e487922a6ff50b9c415b9384157fbd64b2b5.tar.gz potato-crimes-0fe5e487922a6ff50b9c415b9384157fbd64b2b5.tar.bz2 potato-crimes-0fe5e487922a6ff50b9c415b9384157fbd64b2b5.zip |
Initial commit
Diffstat (limited to 'src/main/resources')
-rw-r--r-- | src/main/resources/assets/potato-crime/icon.png | bin | 0 -> 5913 bytes | |||
-rw-r--r-- | src/main/resources/fabric.mod.json | 53 | ||||
-rw-r--r-- | src/main/resources/potato-crime.mixins.json | 11 |
3 files changed, 64 insertions, 0 deletions
diff --git a/src/main/resources/assets/potato-crime/icon.png b/src/main/resources/assets/potato-crime/icon.png Binary files differnew file mode 100644 index 0000000..2b4adc3 --- /dev/null +++ b/src/main/resources/assets/potato-crime/icon.png 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 |