Skip to content

Commit 58d14e5

Browse files
committed
mod metadata
1 parent 95d3eb7 commit 58d14e5

File tree

2 files changed

+46
-0
lines changed

2 files changed

+46
-0
lines changed

src/main/resources/pack.mcmeta

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"pack": {
3+
"description": "Resources for GregTech Storage Drawers",
4+
"pack_format": 15,
5+
"_comment": "pack_format 15 is the current format for Minecraft 1.20.1. Be aware may have changed by the time you use this template!"
6+
}
7+
}
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
modLoader = "javafml"
2+
loaderVersion = "[${forge_version},)"
3+
issueTrackerURL = "${mod_issue_tracker}"
4+
license = "${mod_license}"
5+
6+
[[mods]]
7+
modId = "${mod_id}"
8+
version = "${version}"
9+
displayName = "${mod_name}"
10+
authors = "${mod_authors}"
11+
description = "${mod_description}"
12+
13+
[[dependencies.${mod_id}]]
14+
modId = "forge"
15+
mandatory = true
16+
versionRange = "[${forge_version},)"
17+
ordering = "NONE"
18+
side = "BOTH"
19+
20+
[[dependencies.${mod_id}]]
21+
modId = "minecraft"
22+
mandatory = true
23+
versionRange = "[${minecraft_version}]"
24+
ordering = "NONE"
25+
side = "BOTH"
26+
27+
[[dependencies.${mod_id}]]
28+
modId="gtceu"
29+
mandatory=true
30+
versionRange="[${gtceu_version},)"
31+
ordering="AFTER"
32+
side="BOTH"
33+
34+
[[dependencies.${mod_id}]]
35+
modId = "storagedrawers"
36+
mandatory = true
37+
versionRange = "[12.5,13)"
38+
ordering = "AFTER"
39+
side = "BOTH"

0 commit comments

Comments
 (0)