mirror of
https://github.com/Suiranoil/SkinRestorer.git
synced 2026-01-16 04:42:12 +00:00
31 lines
660 B
TOML
31 lines
660 B
TOML
modLoader = "javafml"
|
|
loaderVersion = "${neoforge_loader_version_range}"
|
|
license = "${license}"
|
|
issueTrackerURL = "${mod_issues}"
|
|
|
|
[[mods]]
|
|
modId = "${mod_id}"
|
|
version = "${version}"
|
|
displayName = "${mod_name}"
|
|
authors = "${mod_author}"
|
|
logoFile = "assets/${mod_id}/icon.png"
|
|
displayURL = "${mod_homepage}"
|
|
description = "${description}"
|
|
|
|
[[mixins]]
|
|
config = "${mod_id}.mixins.json"
|
|
|
|
[[dependencies.${mod_id}]]
|
|
modId = "neoforge"
|
|
mandatory = true
|
|
versionRange = "[${neoforge_version},)"
|
|
ordering = "NONE"
|
|
side = "BOTH"
|
|
|
|
[[dependencies.${mod_id}]]
|
|
modId = "minecraft"
|
|
mandatory = true
|
|
versionRange = "${minecraft_version_range}"
|
|
ordering = "NONE"
|
|
side = "BOTH"
|