53 lines
2.1 KiB
TOML
53 lines
2.1 KiB
TOML
# There are several mandatory fields (#mandatory), and many more that are optional (#optional).
|
|
# The overall format is standard TOML format, v0.5.0.
|
|
# Note that there are a couple of TOML lists in this file.
|
|
# Find more information on toml format here: https://github.com/toml-lang/toml
|
|
|
|
# The name of the mod loader type to load - for regular FML @Mod mods it should be javafml
|
|
modLoader="javafml" #mandatory
|
|
|
|
# A version range to match for said mod loader - for regular FML @Mod it will be the minecraft version (without the 1.)
|
|
loaderVersion="[31,)" #mandatory
|
|
|
|
# A URL to query for updates for this mod. See the JSON update specification <here>
|
|
#updateJSONURL="" #optional
|
|
|
|
# A URL to refer people to when problems occur with this mod
|
|
issueTrackerURL="https://github.com/AppliedEnergistics/Applied-Energistics-2/issues" #optional
|
|
|
|
# A URL for the "homepage" for this mod, displayed in the mod UI
|
|
displayURL="https://github.com/AppliedEnergistics/Applied-Energistics-2" #optional
|
|
|
|
# A file name (in the root of the mod JAR) containing a logo for display
|
|
logoFile="logo.png"
|
|
|
|
# A text field displayed in the mod UI
|
|
#credits="Thanks for this example mod goes to Java" #optional
|
|
|
|
# A text field displayed in the mod UI
|
|
authors="TeamAppliedEnergistics" #optional
|
|
|
|
# A list of mods - how many allowed here is determined by the individual mod loader
|
|
[[mods]] #mandatory
|
|
|
|
# The modid of the mod
|
|
modId="appliedenergistics2" #mandatory
|
|
|
|
# The version number of the mod
|
|
version="${file.jarVersion}" #mandatory
|
|
|
|
# A display name for the mod
|
|
displayName="Applied Energistics 2" #mandatory
|
|
|
|
# The description text for the mod (multi line!) (#mandatory)
|
|
description="A Mod about Matter, Energy and using them to conquer the world.."
|
|
|
|
# A dependency - use the . to indicate dependency for a specific modid. Dependencies are optional.
|
|
[[dependencies.jei]]
|
|
modId="forge" #mandatory
|
|
mandatory=true #mandatory
|
|
versionRange="[31.0.0,)" #mandatory
|
|
# An ordering relationship for the dependency - BEFORE or AFTER required if the relationship is not mandatory
|
|
ordering="NONE"
|
|
# Side this dependency is applied on - BOTH, CLIENT or SERVER
|
|
side="BOTH" |