feat: add mod icons and descriptions

This commit is contained in:
newt 2024-08-31 23:52:01 +01:00
parent f34d13a0cc
commit 9b7c9df3a2
4 changed files with 16 additions and 19 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

View file

@ -3,16 +3,23 @@
"id": "projectileding",
"version": "${version}",
"name": "ProjectileDing",
"description": "This is an example description! Tell everyone what your mod is about!",
"description": "Plays the ENTITY_ARROW_HIT_PLAYER sound effect whenever you hit a living entity with an arrow.",
"authors": [
"Me!"
{
"name": "newt",
"contact": {
"homepage": "https://newty.dev",
"email": "hi@newty.dev"
}
}
],
"contact": {
"homepage": "https://fabricmc.net/",
"sources": "https://github.com/FabricMC/fabric-example-mod"
"homepage": "https://modrinth.com/mod/projectile-ding",
"sources": "https://git.newty.dev/amethyst/projectile-ding",
"issues": "https://git.newty.dev/amethyst/projectile-ding/issues"
},
"license": "OQL",
"icon": "assets/projectileding/icon.png",
"icon": "arrow.png",
"environment": "*",
"entrypoints": {
"main": [
@ -26,8 +33,5 @@
"fabricloader": ">=0.16.3",
"minecraft": "~1.21",
"java": ">=21"
},
"suggests": {
"another-mod": "*"
}
}

View file

@ -1,17 +1,17 @@
modLoader = "javafml"
loaderVersion = "[4,)"
#issueTrackerURL = ""
issueTrackerURL = "https://git.newty.dev/amethyst/projectile-ding/issues"
license = "OQL"
[[mods]]
modId = "projectileding"
version = "${version}"
displayName = "ProjectileDing"
authors = "Me!"
authors = "newt <hi@newty.dev>"
description = '''
This is an example description! Tell everyone what your mod is about!
Plays the ENTITY_ARROW_HIT_PLAYER sound effect whenever you hit a living entity with an arrow.
'''
#logoFile = ""
logoFile = "arrow.png"
[[dependencies.projectileding]]
modId = "neoforge"
@ -27,12 +27,5 @@ versionRange = "[1.21,)"
ordering = "NONE"
side = "BOTH"
[[dependencies.projectileding]]
modId = "architectury"
type = "required"
versionRange = "[13.0.2,)"
ordering = "AFTER"
side = "BOTH"
[[mixins]]
config = "projectileding.mixins.json"

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB