generated from oier/create-forge-addon-template
47 lines
1.9 KiB
TOML
47 lines
1.9 KiB
TOML
modLoader="javafml" #mandatory
|
|
loaderVersion="[47,)" #mandatory This is typically bumped every Minecraft version by Forge. See our download page for lists of versions.
|
|
license="MIT"
|
|
[[mods]] #mandatory
|
|
modId="create_mechanical_template" #mandatory
|
|
version="${file.jarVersion}" #mandatory
|
|
displayName="Create Mechanical Template" #mandatory
|
|
#updateJSONURL="https://change.me.example.invalid/updates.json" #optional
|
|
# A URL for the "homepage" for this mod, displayed in the mod UI
|
|
#displayURL="https://change.me.to.your.mods.homepage.example.invalid/" #optional
|
|
# A file name (in the root of the mod JAR) containing a logo for display
|
|
logoFile="logo.png" #optional
|
|
# A text field displayed in the mod UI
|
|
credits="Thanks to the Creators of Create" #optional
|
|
# A text field displayed in the mod UI
|
|
authors="oierbravo" #optional
|
|
# The description text for the mod (multi line!) (#mandatory)
|
|
description='''
|
|
Description
|
|
'''
|
|
# A dependency - use the . to indicate dependency for a specific modid. Dependencies are optional.
|
|
[[dependencies.create_mechanical_template]] #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="[43,)" #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.create_mechanical_template]]
|
|
modId="minecraft"
|
|
mandatory=true
|
|
# This version range declares a minimum of the current minecraft version up to but not including the next major version
|
|
versionRange="[1.20.1,1.21)"
|
|
ordering="NONE"
|
|
side="BOTH"
|
|
[[dependencies.create_mechanical_template]]
|
|
modId = "create"
|
|
mandatory = true
|
|
versionRange="[0.5.1.h,)"
|
|
ordering = "AFTER"
|
|
side = "BOTH"
|