Skip to content

Commit b53ca96

Browse files
committed
Spotless
1 parent 8d47e07 commit b53ca96

File tree

92 files changed

+5403
-831
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+5403
-831
lines changed

dependencies.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,4 +125,8 @@ dependencies {
125125
modImplementation(forge.forestry)
126126
modImplementation(forge.gendustry)
127127
api(forge.gendustry)
128+
129+
// JourneyMap
130+
modCompileOnly(forge.journeymapApi)
131+
modRuntimeOnly(forge.journeymapForge)
128132
}

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ org.gradle.caching = true
66
# Mod Properties
77
mod_id = cosmiccore
88
mod_name = Cosmic Core
9-
mod_version = 0.12
9+
mod_version = 0.12.5
1010
mod_description = The Core of Cosmic Frontiers!
1111
mod_authors = Ghostipedia
1212
mod_license = Code : LGPL-3.0 , Assets: Refer to Github.

gradle/forge.versions.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,8 @@ botania = "6366547"
5555
ae2wtlib = "5217955"
5656
clothConfig = "5729105"
5757
embers = "6953702"
58+
journeymapApi = "1.20-1.9-SNAPSHOT"
59+
journeymapForge = "5789363"
5860

5961
malum = "1.20.1-1.6.7.1"
6062
lodestone = "1.20.1-1.6.4.1.256"
@@ -126,6 +128,8 @@ botania = { module = "curse.maven:botania-225643", version.ref
126128
ae2wtlib = { module = "curse.maven:applied-energistics-2-wireless-terminals-459929", version.ref = "ae2wtlib" }
127129
clothConfig = { module = "curse.maven:cloth-config-348521", version.ref = "clothConfig" }
128130
embers = { module = "curse.maven:embers-300777", version.ref = "embers" }
131+
journeymapApi = { module = "info.journeymap:journeymap-api", version.ref = "journeymapApi" }
132+
journeymapForge = { module = "curse.maven:journeymap-32274", version.ref = "journeymapForge" }
129133

130134
[bundles]
131135
jei = ["jei-common-api", "jei-forge-api", "jei-forge-impl"]

gradle/scripts/repositories.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,4 +117,8 @@ repositories {
117117
forRepository { maven { url = "https://repo.repsy.io/mvn/toma/public" } }
118118
filter { includeGroup("dev.toma.configuration")}
119119
}
120+
exclusiveContent { // JourneyMap
121+
forRepository { maven { url = "https://jm.gserv.me/repository/maven-public/" } }
122+
filter { includeGroup("info.journeymap") }
123+
}
120124
}
Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
{
2+
"variants": {
3+
"facing=east,upwards_facing=east": {
4+
"gtceu:z": 270,
5+
"model": "cosmiccore:block/machine/ore_extraction_drill_hv",
6+
"y": 90
7+
},
8+
"facing=east,upwards_facing=north": {
9+
"model": "cosmiccore:block/machine/ore_extraction_drill_hv",
10+
"y": 90
11+
},
12+
"facing=east,upwards_facing=south": {
13+
"gtceu:z": 180,
14+
"model": "cosmiccore:block/machine/ore_extraction_drill_hv",
15+
"y": 90
16+
},
17+
"facing=east,upwards_facing=west": {
18+
"gtceu:z": 90,
19+
"model": "cosmiccore:block/machine/ore_extraction_drill_hv",
20+
"y": 90
21+
},
22+
"facing=north,upwards_facing=east": {
23+
"gtceu:z": 270,
24+
"model": "cosmiccore:block/machine/ore_extraction_drill_hv"
25+
},
26+
"facing=north,upwards_facing=north": {
27+
"model": "cosmiccore:block/machine/ore_extraction_drill_hv"
28+
},
29+
"facing=north,upwards_facing=south": {
30+
"gtceu:z": 180,
31+
"model": "cosmiccore:block/machine/ore_extraction_drill_hv"
32+
},
33+
"facing=north,upwards_facing=west": {
34+
"gtceu:z": 90,
35+
"model": "cosmiccore:block/machine/ore_extraction_drill_hv"
36+
},
37+
"facing=south,upwards_facing=east": {
38+
"gtceu:z": 270,
39+
"model": "cosmiccore:block/machine/ore_extraction_drill_hv",
40+
"y": 180
41+
},
42+
"facing=south,upwards_facing=north": {
43+
"model": "cosmiccore:block/machine/ore_extraction_drill_hv",
44+
"y": 180
45+
},
46+
"facing=south,upwards_facing=south": {
47+
"gtceu:z": 180,
48+
"model": "cosmiccore:block/machine/ore_extraction_drill_hv",
49+
"y": 180
50+
},
51+
"facing=south,upwards_facing=west": {
52+
"gtceu:z": 90,
53+
"model": "cosmiccore:block/machine/ore_extraction_drill_hv",
54+
"y": 180
55+
},
56+
"facing=west,upwards_facing=east": {
57+
"gtceu:z": 270,
58+
"model": "cosmiccore:block/machine/ore_extraction_drill_hv",
59+
"y": 270
60+
},
61+
"facing=west,upwards_facing=north": {
62+
"model": "cosmiccore:block/machine/ore_extraction_drill_hv",
63+
"y": 270
64+
},
65+
"facing=west,upwards_facing=south": {
66+
"gtceu:z": 180,
67+
"model": "cosmiccore:block/machine/ore_extraction_drill_hv",
68+
"y": 270
69+
},
70+
"facing=west,upwards_facing=west": {
71+
"gtceu:z": 90,
72+
"model": "cosmiccore:block/machine/ore_extraction_drill_hv",
73+
"y": 270
74+
}
75+
}
76+
}
Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
{
2+
"variants": {
3+
"facing=east,upwards_facing=east": {
4+
"gtceu:z": 270,
5+
"model": "cosmiccore:block/machine/ore_extraction_drill_iv",
6+
"y": 90
7+
},
8+
"facing=east,upwards_facing=north": {
9+
"model": "cosmiccore:block/machine/ore_extraction_drill_iv",
10+
"y": 90
11+
},
12+
"facing=east,upwards_facing=south": {
13+
"gtceu:z": 180,
14+
"model": "cosmiccore:block/machine/ore_extraction_drill_iv",
15+
"y": 90
16+
},
17+
"facing=east,upwards_facing=west": {
18+
"gtceu:z": 90,
19+
"model": "cosmiccore:block/machine/ore_extraction_drill_iv",
20+
"y": 90
21+
},
22+
"facing=north,upwards_facing=east": {
23+
"gtceu:z": 270,
24+
"model": "cosmiccore:block/machine/ore_extraction_drill_iv"
25+
},
26+
"facing=north,upwards_facing=north": {
27+
"model": "cosmiccore:block/machine/ore_extraction_drill_iv"
28+
},
29+
"facing=north,upwards_facing=south": {
30+
"gtceu:z": 180,
31+
"model": "cosmiccore:block/machine/ore_extraction_drill_iv"
32+
},
33+
"facing=north,upwards_facing=west": {
34+
"gtceu:z": 90,
35+
"model": "cosmiccore:block/machine/ore_extraction_drill_iv"
36+
},
37+
"facing=south,upwards_facing=east": {
38+
"gtceu:z": 270,
39+
"model": "cosmiccore:block/machine/ore_extraction_drill_iv",
40+
"y": 180
41+
},
42+
"facing=south,upwards_facing=north": {
43+
"model": "cosmiccore:block/machine/ore_extraction_drill_iv",
44+
"y": 180
45+
},
46+
"facing=south,upwards_facing=south": {
47+
"gtceu:z": 180,
48+
"model": "cosmiccore:block/machine/ore_extraction_drill_iv",
49+
"y": 180
50+
},
51+
"facing=south,upwards_facing=west": {
52+
"gtceu:z": 90,
53+
"model": "cosmiccore:block/machine/ore_extraction_drill_iv",
54+
"y": 180
55+
},
56+
"facing=west,upwards_facing=east": {
57+
"gtceu:z": 270,
58+
"model": "cosmiccore:block/machine/ore_extraction_drill_iv",
59+
"y": 270
60+
},
61+
"facing=west,upwards_facing=north": {
62+
"model": "cosmiccore:block/machine/ore_extraction_drill_iv",
63+
"y": 270
64+
},
65+
"facing=west,upwards_facing=south": {
66+
"gtceu:z": 180,
67+
"model": "cosmiccore:block/machine/ore_extraction_drill_iv",
68+
"y": 270
69+
},
70+
"facing=west,upwards_facing=west": {
71+
"gtceu:z": 90,
72+
"model": "cosmiccore:block/machine/ore_extraction_drill_iv",
73+
"y": 270
74+
}
75+
}
76+
}
Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
{
2+
"variants": {
3+
"facing=east,upwards_facing=east": {
4+
"gtceu:z": 270,
5+
"model": "cosmiccore:block/machine/ore_extraction_drill_lv",
6+
"y": 90
7+
},
8+
"facing=east,upwards_facing=north": {
9+
"model": "cosmiccore:block/machine/ore_extraction_drill_lv",
10+
"y": 90
11+
},
12+
"facing=east,upwards_facing=south": {
13+
"gtceu:z": 180,
14+
"model": "cosmiccore:block/machine/ore_extraction_drill_lv",
15+
"y": 90
16+
},
17+
"facing=east,upwards_facing=west": {
18+
"gtceu:z": 90,
19+
"model": "cosmiccore:block/machine/ore_extraction_drill_lv",
20+
"y": 90
21+
},
22+
"facing=north,upwards_facing=east": {
23+
"gtceu:z": 270,
24+
"model": "cosmiccore:block/machine/ore_extraction_drill_lv"
25+
},
26+
"facing=north,upwards_facing=north": {
27+
"model": "cosmiccore:block/machine/ore_extraction_drill_lv"
28+
},
29+
"facing=north,upwards_facing=south": {
30+
"gtceu:z": 180,
31+
"model": "cosmiccore:block/machine/ore_extraction_drill_lv"
32+
},
33+
"facing=north,upwards_facing=west": {
34+
"gtceu:z": 90,
35+
"model": "cosmiccore:block/machine/ore_extraction_drill_lv"
36+
},
37+
"facing=south,upwards_facing=east": {
38+
"gtceu:z": 270,
39+
"model": "cosmiccore:block/machine/ore_extraction_drill_lv",
40+
"y": 180
41+
},
42+
"facing=south,upwards_facing=north": {
43+
"model": "cosmiccore:block/machine/ore_extraction_drill_lv",
44+
"y": 180
45+
},
46+
"facing=south,upwards_facing=south": {
47+
"gtceu:z": 180,
48+
"model": "cosmiccore:block/machine/ore_extraction_drill_lv",
49+
"y": 180
50+
},
51+
"facing=south,upwards_facing=west": {
52+
"gtceu:z": 90,
53+
"model": "cosmiccore:block/machine/ore_extraction_drill_lv",
54+
"y": 180
55+
},
56+
"facing=west,upwards_facing=east": {
57+
"gtceu:z": 270,
58+
"model": "cosmiccore:block/machine/ore_extraction_drill_lv",
59+
"y": 270
60+
},
61+
"facing=west,upwards_facing=north": {
62+
"model": "cosmiccore:block/machine/ore_extraction_drill_lv",
63+
"y": 270
64+
},
65+
"facing=west,upwards_facing=south": {
66+
"gtceu:z": 180,
67+
"model": "cosmiccore:block/machine/ore_extraction_drill_lv",
68+
"y": 270
69+
},
70+
"facing=west,upwards_facing=west": {
71+
"gtceu:z": 90,
72+
"model": "cosmiccore:block/machine/ore_extraction_drill_lv",
73+
"y": 270
74+
}
75+
}
76+
}
Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
{
2+
"variants": {
3+
"facing=east,upwards_facing=east": {
4+
"gtceu:z": 270,
5+
"model": "cosmiccore:block/machine/ore_extraction_drill_zpm",
6+
"y": 90
7+
},
8+
"facing=east,upwards_facing=north": {
9+
"model": "cosmiccore:block/machine/ore_extraction_drill_zpm",
10+
"y": 90
11+
},
12+
"facing=east,upwards_facing=south": {
13+
"gtceu:z": 180,
14+
"model": "cosmiccore:block/machine/ore_extraction_drill_zpm",
15+
"y": 90
16+
},
17+
"facing=east,upwards_facing=west": {
18+
"gtceu:z": 90,
19+
"model": "cosmiccore:block/machine/ore_extraction_drill_zpm",
20+
"y": 90
21+
},
22+
"facing=north,upwards_facing=east": {
23+
"gtceu:z": 270,
24+
"model": "cosmiccore:block/machine/ore_extraction_drill_zpm"
25+
},
26+
"facing=north,upwards_facing=north": {
27+
"model": "cosmiccore:block/machine/ore_extraction_drill_zpm"
28+
},
29+
"facing=north,upwards_facing=south": {
30+
"gtceu:z": 180,
31+
"model": "cosmiccore:block/machine/ore_extraction_drill_zpm"
32+
},
33+
"facing=north,upwards_facing=west": {
34+
"gtceu:z": 90,
35+
"model": "cosmiccore:block/machine/ore_extraction_drill_zpm"
36+
},
37+
"facing=south,upwards_facing=east": {
38+
"gtceu:z": 270,
39+
"model": "cosmiccore:block/machine/ore_extraction_drill_zpm",
40+
"y": 180
41+
},
42+
"facing=south,upwards_facing=north": {
43+
"model": "cosmiccore:block/machine/ore_extraction_drill_zpm",
44+
"y": 180
45+
},
46+
"facing=south,upwards_facing=south": {
47+
"gtceu:z": 180,
48+
"model": "cosmiccore:block/machine/ore_extraction_drill_zpm",
49+
"y": 180
50+
},
51+
"facing=south,upwards_facing=west": {
52+
"gtceu:z": 90,
53+
"model": "cosmiccore:block/machine/ore_extraction_drill_zpm",
54+
"y": 180
55+
},
56+
"facing=west,upwards_facing=east": {
57+
"gtceu:z": 270,
58+
"model": "cosmiccore:block/machine/ore_extraction_drill_zpm",
59+
"y": 270
60+
},
61+
"facing=west,upwards_facing=north": {
62+
"model": "cosmiccore:block/machine/ore_extraction_drill_zpm",
63+
"y": 270
64+
},
65+
"facing=west,upwards_facing=south": {
66+
"gtceu:z": 180,
67+
"model": "cosmiccore:block/machine/ore_extraction_drill_zpm",
68+
"y": 270
69+
},
70+
"facing=west,upwards_facing=west": {
71+
"gtceu:z": 90,
72+
"model": "cosmiccore:block/machine/ore_extraction_drill_zpm",
73+
"y": 270
74+
}
75+
}
76+
}

0 commit comments

Comments
 (0)