4447ee8ec4
Add issues url to the mod Add water hunting to avians
57 lines
1.6 KiB
TOML
Executable File
57 lines
1.6 KiB
TOML
Executable File
modLoader = "javafml" #mandatory
|
|
loaderVersion = "${neoforge_loader_version_range}" #mandatory
|
|
license = "${license}" # Review your options at https://choosealicense.com/.
|
|
issueTrackerURL= "${issue_url}" #optional
|
|
|
|
[[mods]] #mandatory
|
|
modId = "${mod_id}" #mandatory
|
|
version = "${version}" #mandatory
|
|
displayName = "${mod_name}" #mandatory
|
|
#updateJSONURL="https://change.me.example.invalid/updates.json" #optional (see https://docs.neoforged.net/docs/misc/updatechecker/)
|
|
#displayURL="https://change.me.to.your.mods.homepage.example.invalid/" #optional (displayed in the mod UI)
|
|
logoFile = "${mod_id}.png" #optional
|
|
credits = "${credits}" #optional
|
|
authors = "${mod_author}" #optional
|
|
description = '''${description}''' #mandatory (Supports multiline text)
|
|
[features.${mod_id}]
|
|
javaVersion = "[${java_version},)"
|
|
[[mixins]]
|
|
config = "${mod_id}.mixins.json"
|
|
[[mixins]]
|
|
config = "${mod_id}.neoforge.mixins.json"
|
|
|
|
[[dependencies.${ mod_id }]] #optional
|
|
modId = "neoforge"
|
|
type = "required"
|
|
versionRange = "${neoforge_version_range}"
|
|
ordering = "NONE"
|
|
side = "BOTH"
|
|
|
|
[[dependencies.${ mod_id }]]
|
|
modId = "minecraft"
|
|
type = "required"
|
|
versionRange = "${minecraft_version_range}"
|
|
ordering = "NONE"
|
|
side = "BOTH"
|
|
|
|
[[dependencies.${ mod_id }]]
|
|
modId="architectury"
|
|
mandatory=true
|
|
versionRange="[${architectury_version},)"
|
|
ordering="NONE"
|
|
side="BOTH"
|
|
|
|
[[dependencies.${ mod_id }]]
|
|
modId="cloth_config"
|
|
mandatory=true
|
|
versionRange="[${cloth_config_version_1_21_1},)"
|
|
ordering="NONE"
|
|
side="CLIENT"
|
|
|
|
[[dependencies.${ mod_id }]]
|
|
modId="geckolib"
|
|
mandatory=true
|
|
versionRange="[${geckolib_version},)"
|
|
ordering="NONE"
|
|
side="BOTH"
|