-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathexample_config.toml
57 lines (48 loc) · 1.8 KB
/
example_config.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
name = "My Beautiful Pack" # modpack name, recommended
author = "RozeFound" # modpack author, recommended
version = "0.0.9" # modpack version, required, will be prompted if not specified
description = "Cool pack, isn't it?" # optional
# Available url domains:
#
# cdn.modrinth.com
# gitlab.com
# github.com
# raw.githubusercontent.com
# Forbidden url domains:
#
# edge.forgecdn.net
# media.forgecdn.net
#
# Still can be used, but not recommended for public modpacks
[[Resource]]
# resource name, for fabric mods it's `name` field in fabric.mod.json
# For forge mods, it's `description` in pack.mcmeta
name = "BCLib"
filename = "bclib-0.4.0.jar"
url = "https://github.com/paulevsGitch/BCLib/releases/download/0.4.0/bclib-0.4.0.jar"
[[Resource]]
# For other files it's filename without extension, but for convinience you can specify what you want here
# Because to find the resource, it checks resource name OR filename
# But specifying both, name and filename is highly recommended for propper indentifying
name = "Complementary Shaders"
filename = "ComplementaryShaders_v4.1.zip"
url = "https://edge.forgecdn.net/files/3391/516/ComplementaryShaders_v4.1.zip"
# field action can contain "override", "remove", or "ignore"
[[Resource]]
filename = "Mod Menu Helper.zip"
action = "override" # force move resource to overrides
[[Resource]]
name = "Farsight Mod"
filename = "farsight.fabric-1.18-1.9.jar"
action = "remove" # deletes resource from pack completely
[[Resource]]
name = "YOSBR"
action = "ignore" # Shut up the warning
[[Resource]]
name = "Cull Less Leaves"
action = "ignore"
optional = true
[[File]]
name = "This file is useless.txt.or.not.txt.you can even leave it without extension"
action = "remove" # Only one action is available for files anyway
# The name is just a filename. What else did you expect?