-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
lilypuree
committed
Jan 25, 2024
1 parent
bb95a94
commit c7e2847
Showing
2 changed files
with
36 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,7 +36,10 @@ | |
}, | ||
"custom": { | ||
"mc-publish": { | ||
"loaders": ["fabric"] | ||
"loaders": ["fabric"], | ||
"dependencies": [ | ||
"[email protected](optional){modrinth:d6MhxwRo}{curseforge:662413}" | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,47 @@ | ||
modLoader="javafml" | ||
loaderVersion="${forge_loader_version_range}" | ||
license="${mod_license}" | ||
modLoader = "javafml" | ||
loaderVersion = "${forge_loader_version_range}" | ||
license = "${mod_license}" | ||
|
||
# A URL to refer people to when problems occur with this mod | ||
#issueTrackerURL="http://my.issue.tracker/" #optional | ||
# A list of mods - how many allowed here is determined by the individual mod loader | ||
[[mods]] #mandatory | ||
modId="${mod_id}" #mandatory | ||
version="${version}" #mandatory | ||
displayName="${mod_name}" #mandatory | ||
modId = "${mod_id}" #mandatory | ||
version = "${version}" #mandatory | ||
displayName = "${mod_name}" #mandatory | ||
# A URL to query for updates for this mod. See the JSON update specification <here> | ||
#updateJSONURL="http://myurl.me/" #optional | ||
# A URL for the "homepage" for this mod, displayed in the mod UI | ||
#displayURL="http://example.com/" #optional | ||
# A file name (in the root of the mod JAR) containing a logo for display | ||
logoFile="logo.png" #optional | ||
credits="Thanks for stohun for the amazing models" #optional | ||
authors="${mod_author}" #optional | ||
description='''${mod_description}''' | ||
logoFile = "logo.png" #optional | ||
credits = "Thanks for stohun for the amazing models" #optional | ||
authors = "${mod_author}" #optional | ||
description = '''${mod_description}''' | ||
|
||
[[dependencies.${mod_id}]] #optional | ||
modId="forge" #mandatory | ||
mandatory=true #mandatory | ||
versionRange="${forge_version_range}" #mandatory | ||
ordering="NONE" | ||
side="BOTH" | ||
[[dependencies.${ mod_id }]] #optional | ||
modId = "forge" #mandatory | ||
mandatory = true #mandatory | ||
versionRange = "${forge_version_range}" #mandatory | ||
ordering = "NONE" | ||
side = "BOTH" | ||
|
||
[[dependencies.${mod_id}]] | ||
modId="minecraft" | ||
mandatory=true | ||
versionRange="${minecraft_version_range}" | ||
ordering="NONE" | ||
side="BOTH" | ||
[[dependencies.${ mod_id }]] | ||
modId = "minecraft" | ||
mandatory = true | ||
versionRange = "${minecraft_version_range}" | ||
ordering = "NONE" | ||
side = "BOTH" | ||
|
||
[[dependencies.${mod_id}]] | ||
modId="soulfired" | ||
mandatory=false | ||
versionRange="[3.2.1.0,)" | ||
ordering="NONE" | ||
side="BOTH" | ||
[[dependencies.${ mod_id }]] | ||
modId = "soulfired" | ||
mandatory = false | ||
versionRange = "[3.2.1.0,)" | ||
ordering = "NONE" | ||
side = "BOTH" | ||
|
||
[mc-publish] | ||
loaders = ['forge', 'neoforge'] | ||
loaders = ['forge', 'neoforge'] | ||
dependencies = [ | ||
"[email protected](optional){modrinth:d6MhxwRo}{curseforge:662413}" | ||
] |