mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2025-03-31 00:37:44 +02:00
40 lines
No EOL
2 KiB
TOML
40 lines
No EOL
2 KiB
TOML
modLoader="javafml"
|
|
loaderVersion="[25,)"
|
|
issueTrackerURL="http://github.com/MineLittlePony/MineLittlePony/issues/"
|
|
|
|
# A list of mods - how many allowed here is determined by the individual mod loader
|
|
[[mods]] #mandatory
|
|
modId="minelittlepony"
|
|
version="${file.jarVersion}"
|
|
displayName="MineLittlePony"
|
|
#updateJSONURL="http://myurl.me/" #optional
|
|
displayURL="http://minelittlepony-mod.com/"
|
|
#logoFile="examplemod.png" #optional
|
|
credits="Thanks for this example mod goes to Java" #optional
|
|
authors="Love, Cheese and small house plants" #optional
|
|
description='''
|
|
This is a long form description of the mod. You can write whatever you want here
|
|
|
|
Have some lorem ipsum.
|
|
|
|
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed mollis lacinia magna. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Sed sagittis luctus odio eu tempus. Interdum et malesuada fames ac ante ipsum primis in faucibus. Pellentesque volutpat ligula eget lacus auctor sagittis. In hac habitasse platea dictumst. Nunc gravida elit vitae sem vehicula efficitur. Donec mattis ipsum et arcu lobortis, eleifend sagittis sem rutrum. Cras pharetra quam eget posuere fermentum. Sed id tincidunt justo. Lorem ipsum dolor sit amet, consectetur adipiscing elit.
|
|
'''
|
|
# A dependency - use the . to indicate dependency for a specific modid. Dependencies are optional.
|
|
[[dependencies.examplemod]] #optional
|
|
# the modid of the dependency
|
|
modId="forge" #mandatory
|
|
# Does this dependency have to exist - if not, ordering below must be specified
|
|
mandatory=true #mandatory
|
|
# The version range of the dependency
|
|
versionRange="[90,)" #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"
|
|
# Here's another dependency
|
|
[[dependencies.examplemod]]
|
|
modId="minecraft"
|
|
mandatory=true
|
|
versionRange="[1.13.2]"
|
|
ordering="NONE"
|
|
side="BOTH" |