aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/META-INF/mods.toml
diff options
context:
space:
mode:
authorthedarkcolour <30441001+thedarkcolour@users.noreply.github.com>2019-11-03 13:59:32 -0800
committerthedarkcolour <30441001+thedarkcolour@users.noreply.github.com>2019-11-03 13:59:32 -0800
commit9333b91f5c4104e5c52e0af4d2a4aa80da87294b (patch)
treeb405a0009aa96eb76ce3b2514e914e799475334d /src/main/resources/META-INF/mods.toml
parent7955daf73c0b84c5044920e52523e1fa7491247f (diff)
downloadKotlinForForge-9333b91f5c4104e5c52e0af4d2a4aa80da87294b.tar.gz
KotlinForForge-9333b91f5c4104e5c52e0af4d2a4aa80da87294b.tar.bz2
KotlinForForge-9333b91f5c4104e5c52e0af4d2a4aa80da87294b.zip
Initial 1.14 release
Diffstat (limited to 'src/main/resources/META-INF/mods.toml')
-rw-r--r--src/main/resources/META-INF/mods.toml39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/main/resources/META-INF/mods.toml b/src/main/resources/META-INF/mods.toml
new file mode 100644
index 0000000..ff8cd97
--- /dev/null
+++ b/src/main/resources/META-INF/mods.toml
@@ -0,0 +1,39 @@
+modLoader="kotlinforforge" # IModLanguageProvider
+loaderVersion="[25,)" # IModLanguageProvider version
+
+issueTrackerURL="https://github.com/thedarkcolour/Future-MC/issues" # Issues page
+
+
+#displayURL="https://minecraft.curseforge.com/projects/kotlinforforge" #optional
+
+description='''
+Kotlin for Forge. Allows mods to use the Kotlin programming language.
+''' # A description
+
+# A dependency - use the . to indicate dependency for a specific modid. Dependencies are optional.
+[[dependencies.kotlinforforge]] #optional
+ modId="forge" #mandatory
+ mandatory=true #mandatory
+ versionRange="[25,)" #mandatory
+ # An ordering relationship for the dependency - BEFORE or AFTER required if the relationship is not mandatory
+ ordering="NONE"
+
+ side="BOTH"
+# Dependency
+[[dependencies.kotlinforforge]]
+ modId="minecraft"
+ mandatory=true
+ versionRange="[1.14.4]"
+ ordering="NONE"
+ side="BOTH"
+
+# --------------------------------------------------------- #
+# --------------------------------------------------------- #
+# --------------------------------------------------------- #
+
+[[mods]] #mandatory
+displayName="Kotlin for Forge" # Name of mod
+modId="kotlinforforge" # Modid
+version="1.0.0" # Version of kotlinforforge
+authors="TheDarkColour" # Author
+credits="Herobrine knows all." # Credits \ No newline at end of file