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", "id": "projectileding",
"version": "${version}", "version": "${version}",
"name": "ProjectileDing", "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": [ "authors": [
"Me!" {
"name": "newt",
"contact": {
"homepage": "https://newty.dev",
"email": "hi@newty.dev"
}
}
], ],
"contact": { "contact": {
"homepage": "https://fabricmc.net/", "homepage": "https://modrinth.com/mod/projectile-ding",
"sources": "https://github.com/FabricMC/fabric-example-mod" "sources": "https://git.newty.dev/amethyst/projectile-ding",
"issues": "https://git.newty.dev/amethyst/projectile-ding/issues"
}, },
"license": "OQL", "license": "OQL",
"icon": "assets/projectileding/icon.png", "icon": "arrow.png",
"environment": "*", "environment": "*",
"entrypoints": { "entrypoints": {
"main": [ "main": [
@ -26,8 +33,5 @@
"fabricloader": ">=0.16.3", "fabricloader": ">=0.16.3",
"minecraft": "~1.21", "minecraft": "~1.21",
"java": ">=21" "java": ">=21"
},
"suggests": {
"another-mod": "*"
} }
} }

View file

@ -1,17 +1,17 @@
modLoader = "javafml" modLoader = "javafml"
loaderVersion = "[4,)" loaderVersion = "[4,)"
#issueTrackerURL = "" issueTrackerURL = "https://git.newty.dev/amethyst/projectile-ding/issues"
license = "OQL" license = "OQL"
[[mods]] [[mods]]
modId = "projectileding" modId = "projectileding"
version = "${version}" version = "${version}"
displayName = "ProjectileDing" displayName = "ProjectileDing"
authors = "Me!" authors = "newt <hi@newty.dev>"
description = ''' 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]] [[dependencies.projectileding]]
modId = "neoforge" modId = "neoforge"
@ -27,12 +27,5 @@ versionRange = "[1.21,)"
ordering = "NONE" ordering = "NONE"
side = "BOTH" side = "BOTH"
[[dependencies.projectileding]]
modId = "architectury"
type = "required"
versionRange = "[13.0.2,)"
ordering = "AFTER"
side = "BOTH"
[[mixins]] [[mixins]]
config = "projectileding.mixins.json" config = "projectileding.mixins.json"

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB