Skip to content

Commit 34f8488

Browse files
committed
add support for cold sweat
1 parent 11256d9 commit 34f8488

File tree

4 files changed

+71
-0
lines changed

4 files changed

+71
-0
lines changed

build.gradle.kts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ val curios_version: String by extra
1010
val caelus_version: String by extra
1111
val elytra_slot_version: String by extra
1212
val jei_version: String by extra
13+
val cold_sweat_version: String by extra
1314

1415
plugins {
1516
id("com.possible-triangle.gradle") version ("0.2.8")
@@ -89,6 +90,7 @@ dependencies {
8990
modImplementation("top.theillusivec4.curios:curios-neoforge:${curios_version}+${mc_version}")
9091
modRuntimeOnly("com.illusivesoulworks.caelus:caelus-neoforge:${caelus_version}+${mc_version}")
9192
modRuntimeOnly("maven.modrinth:mSQF1NpT:${elytra_slot_version}")
93+
modRuntimeOnly("maven.modrinth:uXhSmPjd:${cold_sweat_version}")
9294
}
9395

9496
modCompileOnly("com.possible-triangle:flightlib-api:${flightlib_version}")

gradle.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ kotlin_forge_version=5.8.0
2323
curios_version=9.2.2
2424
caelus_version=7.0.1
2525
elytra_slot_version=RX6A02W1
26+
cold_sweat_version=QA0zGYkj
2627

2728
repository=pssbletrngle/createjetpack
2829
modrinth_project_id=UbFnAd4l
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"replace": false,
3+
"values": [
4+
"create_jetpack:netherite_jetpack"
5+
]
6+
}
Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
{
2+
"required_mods": [
3+
"create"
4+
],
5+
"type": "armor",
6+
"item": {
7+
"items": [
8+
"create_jetpack:netherite_jetpack"
9+
]
10+
},
11+
"insulation": {
12+
"heat": 0,
13+
"cold": 0
14+
},
15+
"entity": {
16+
"equipment": {
17+
"feet": {
18+
"items": [
19+
"create:netherite_diving_boots",
20+
"minecraft:netherite_boots"
21+
]
22+
},
23+
"head": {
24+
"items": [
25+
"create:netherite_diving_helmet"
26+
]
27+
},
28+
"chest": {
29+
"items": [
30+
"create_jetpack:netherite_jetpack"
31+
],
32+
"components": {
33+
"create:banktank_air": "1-9999"
34+
}
35+
},
36+
"legs": {
37+
"items": [
38+
"minecraft:netherite_leggings"
39+
]
40+
}
41+
}
42+
},
43+
"attributes": {
44+
"cold_sweat:heat_dampening": [
45+
{
46+
"name": "cs:netherite_diving_set_bonus",
47+
"amount": 1.0,
48+
"operation": "add_value"
49+
}
50+
],
51+
"cold_sweat:cold_dampening": [
52+
{
53+
"name": "cs:netherite_diving_set_bonus",
54+
"amount": 0.5,
55+
"operation": "add_value"
56+
}
57+
]
58+
},
59+
"immune_temp_modifiers": {
60+
"cold_sweat:water": 1.0
61+
}
62+
}

0 commit comments

Comments
 (0)