diff --git a/fabric/src/main/resources/arrow.png b/fabric/src/main/resources/arrow.png new file mode 100644 index 0000000..e427ea4 Binary files /dev/null and b/fabric/src/main/resources/arrow.png differ diff --git a/fabric/src/main/resources/fabric.mod.json b/fabric/src/main/resources/fabric.mod.json index 12f3da3..424741a 100644 --- a/fabric/src/main/resources/fabric.mod.json +++ b/fabric/src/main/resources/fabric.mod.json @@ -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": "*" } } diff --git a/neoforge/src/main/resources/META-INF/neoforge.mods.toml b/neoforge/src/main/resources/META-INF/neoforge.mods.toml index 9103110..48f0100 100644 --- a/neoforge/src/main/resources/META-INF/neoforge.mods.toml +++ b/neoforge/src/main/resources/META-INF/neoforge.mods.toml @@ -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 " 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" diff --git a/neoforge/src/main/resources/arrow.png b/neoforge/src/main/resources/arrow.png new file mode 100644 index 0000000..e427ea4 Binary files /dev/null and b/neoforge/src/main/resources/arrow.png differ