feat: add mod icons and descriptions
This commit is contained in:
parent
f34d13a0cc
commit
9b7c9df3a2
4 changed files with 16 additions and 19 deletions
BIN
fabric/src/main/resources/arrow.png
Normal file
BIN
fabric/src/main/resources/arrow.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 17 KiB |
|
@ -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": "*"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -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"
|
||||||
|
|
BIN
neoforge/src/main/resources/arrow.png
Normal file
BIN
neoforge/src/main/resources/arrow.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 17 KiB |
Loading…
Reference in a new issue