040cc4bf16
override namespace - still needs to be reviewed and determined how this might work in detail. Signed-off-by: cpw <cpw+github@weeksfamily.ca>
66 lines
No EOL
2.3 KiB
TOML
66 lines
No EOL
2.3 KiB
TOML
# The name of the mod loader type to load
|
|
modLoader="javafml"
|
|
# A version range to match for said mod loader
|
|
loaderVersion="[2.0,)"
|
|
# A URL to query for updates
|
|
updateJSONURL="http://myurl.me/"
|
|
# A URL to refer people to when problems occur with this mod
|
|
issueTrackerURL="http://my.issue.tracker/"
|
|
# Extra mod loader property
|
|
randomScalaProperty="fishy"
|
|
# Arbitrary key-value property pairs available to mods
|
|
[properties]
|
|
key="value"
|
|
|
|
# A list of mods - how many allowed here is determined by the individual mod loader
|
|
[[mods]]
|
|
# The modid of the mod
|
|
modId="inventorysorter"
|
|
# The version number of the mod
|
|
version="1.1"
|
|
# A display name for the mod
|
|
displayName="Inventory Sorter"
|
|
# The description text for the mod (multi line!)
|
|
description='''
|
|
This is my mod, there may be
|
|
others, but this one is mine
|
|
'''
|
|
# Override the default resourcelocation namespace with this instead
|
|
# Currently not implemented
|
|
namespace="invsorter"
|
|
# A random extra property for a mod loader
|
|
randomExtraProperty="somevalue"
|
|
# Arbitrary key-value pairs
|
|
[modproperties.inventorysorter]
|
|
key="value"
|
|
# A list of dependencies
|
|
[[dependencies.inventorysorter]]
|
|
# the modid of the dependency
|
|
modid="forge"
|
|
# Does this dependency have to exist - if not, ordering below must be specified
|
|
mandatory=true
|
|
# The version range of the dependency
|
|
versionRange="[14.23.2.0,)"
|
|
# 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.inventorysorter]]
|
|
modid="minecraft"
|
|
mandatory=true
|
|
versionRange="[1.12.2]"
|
|
ordering="NONE"
|
|
side="BOTH"
|
|
|
|
# Here's another mod in this jar
|
|
[[mods]]
|
|
# Note that other mod types may want to add additional key-value pairs in here
|
|
modId="inventorysortertoo"
|
|
# ${file.jarVersion} will read the Implementation-Version of the jar file
|
|
version="${file.jarVersion}"
|
|
displayName="Inventory Sorter as well"
|
|
description='''
|
|
This is also my mod, there may be
|
|
others, but this one is mine
|
|
''' |