This commit is contained in:
kawaiizenbo 2022-12-05 19:44:23 -07:00
parent 48a71a2259
commit b595b49d36
14 changed files with 192 additions and 172 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 453 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

View file

@ -1,29 +1,29 @@
{
"schemaVersion": 1,
"id": "modid",
"id": "moonlight",
"version": "${version}",
"name": "Example Mod",
"description": "This is an example description! Tell everyone what your mod is about!",
"name": "Moonlight Meadows",
"description": "Utility mod with a focus on stability.",
"authors": [
"Me!"
"KawaiiZenbo"
],
"contact": {
"homepage": "https://fabricmc.net/",
"sources": "https://github.com/FabricMC/fabric-example-mod"
"homepage": "https://kawaiizenbo.me/",
"sources": "https://github.com/kawaiizenbo/MoonlightMeadows"
},
"license": "CC0-1.0",
"icon": "assets/modid/icon.png",
"license": "MIT",
"icon": "assets/moonlight/icon.png",
"environment": "*",
"entrypoints": {
"main": [
"net.fabricmc.example.ExampleMod"
"me.kawaiizenbo.moonlight.Moonlight"
]
},
"mixins": [
"modid.mixins.json"
"moonlight.mixins.json"
],
"depends": {
@ -31,8 +31,5 @@
"fabric-api": "*",
"minecraft": "~1.19",
"java": ">=17"
},
"suggests": {
"another-mod": "*"
}
}

View file

@ -1,12 +1,13 @@
{
"required": true,
"minVersion": "0.8",
"package": "net.fabricmc.example.mixin",
"package": "me.kawaiizenbo.moonlight.mixin",
"compatibilityLevel": "JAVA_17",
"mixins": [
],
"client": [
"ExampleMixin"
"TitleScreenMixin",
"MultiplayerScreenMixin"
],
"injectors": {
"defaultRequire": 1