Initial commit

This commit is contained in:
Gæmer
2025-07-22 11:58:09 +02:00
commit 91c0137f61
21 changed files with 822 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
{
"schemaVersion": 1,
"id": "scorched-earth",
"version": "${version}",
"name": "Scorched Earth",
"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/scorched-earth/icon.png",
"environment": "*",
"entrypoints": {
"main": [
"com.smithy.scorchedearth.ScorchedEarth"
],
"client": [
"com.smithy.scorchedearth.ScorchedEarthClient"
],
"fabric-datagen": [
"com.smithy.scorchedearth.ScorchedEarthDataGenerator"
]
},
"mixins": [
"scorched-earth.mixins.json",
{
"config": "scorched-earth.client.mixins.json",
"environment": "client"
}
],
"depends": {
"fabricloader": ">=0.16.14",
"minecraft": "~1.20.1",
"java": ">=17",
"fabric-api": "*"
},
"suggests": {
"another-mod": "*"
}
}