-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathneoforge.mods.toml
57 lines (49 loc) · 2.1 KB
/
neoforge.mods.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
# The overall format is standard TOML format, v0.5.0.
# The name of the mod loader type to load - for regular FML @Mod mods it should be javafml
modLoader="javafml" #mandatory
# A version range to match for said mod loader - for regular FML @Mod it will be the forge version
loaderVersion="${loader_version_range}" #mandatory
license="${mod_license}"
issueTrackerURL="https://github.com/Sinhika/SimpleOres2/issues"
[[mods]]
modId="${mod_id}"
version="${version}"
displayName="${mod_name}"
logoFile="simple_ores.png"
updateJSONURL="https://raw.githubusercontent.com/Sinhika/SimpleOres2/1.20/update.json"
displayURL="http://minecraft.curseforge.com/projects/simpleores"
credits="AleXndrTheGr8st (original mod), Sinhika (maintenance, ports), Paint_Ninja (initial 1.15 port), Thombias (new textures), BeckonCall (new 1.17.1 textures)."
authors="${mod_authors}"
# The description of the mod. This is a simple multiline text string that is used for display purposes in the mod list.
description='''
A simple ore mod, featuring 5 balanced ores: Copper, Tin, Mythril, Adamantium and Onyx.
All except Onyx can be found in the overworld, while Onyx can be found only in the Nether.
Each ore has its own unique properties, armor and tool sets, and more.
Additional Credits: Emirhangg (Turkish translation), AzazEL3095 (Castillian Spanish),
Wanadi & IamKahina (Brazillian Portuguese), El-Limbo (Argentinian Spanish), fearheaven (French),
burunduk (Ukrainian), Ruukas97 (Danish), yaodaosang(Simplified Chinese), Unknown (Spanish, Traditional Chinese)
'''
[[dependencies.${mod_id}]]
modId="neoforge"
type="required"
versionRange="${neo_version_range}"
ordering="NONE"
side="BOTH"
[[dependencies.${mod_id}]]
modId="minecraft"
type="required"
versionRange="${minecraft_version_range}"
ordering="NONE"
side="BOTH"
[[dependencies.${mod_id}]]
modId="simplecorelib"
type="required"
versionRange="${simplecore_range}"
ordering="NONE"
side="BOTH"
[[dependencies.${mod_id}]]
modId="bucketlib"
type="required"
versionRange="${buckletlib_range}"
ordering="AFTER"
side="BOTH"