-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Thermal Expansion compatibility on 1.19.2
- Loading branch information
Showing
133 changed files
with
3,092 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,22 @@ | ||
org.gradle.jvmargs=-Xmx4G | ||
org.gradle.daemon=false | ||
|
||
floralis=6.7.0 | ||
forge=43.1.55 | ||
floralis=6.8.0 | ||
forge=43.2.0 | ||
minecraft=1.19.2 | ||
parchment=2022.11.20 | ||
parchment=2022.11.27 | ||
|
||
cofhcore=4112121 | ||
create=4011414 | ||
immersiveengineering=3963698 | ||
industrialforegoing=4046524 | ||
jei=4087658 | ||
industrialforegoing=4131914 | ||
jei=4145222 | ||
mekanism=4041164 | ||
patchouli=4031402 | ||
thermalcultivation=4112131 | ||
thermalexpansion=4112130 | ||
thermalfoundation=4112137 | ||
thermalinnovation=4112132 | ||
thermalintegration=4112133 | ||
thermallocomotion=4112134 | ||
titanium=4015180 |
17 changes: 17 additions & 0 deletions
17
src/main/resources/data/thermal/recipes/catalyst/plant_fibers.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"type": "thermal:insolator_catalyst", | ||
"conditions": [ | ||
{ | ||
"type": "forge:mod_loaded", | ||
"modid": "thermal" | ||
} | ||
], | ||
"ingredient": { | ||
"item": "floralis:plant_fibers" | ||
}, | ||
"primary_mod": 1.5, | ||
"secondary_mod": 1.5, | ||
"energy_mod": 0.8, | ||
"min_chance": 0.1, | ||
"use_chance": 0.5 | ||
} |
18 changes: 18 additions & 0 deletions
18
src/main/resources/data/thermal/recipes/insolator/black_cactus.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"type": "thermal:insolator", | ||
"conditions": [ | ||
{ | ||
"type": "forge:mod_loaded", | ||
"modid": "thermal" | ||
} | ||
], | ||
"ingredient": { | ||
"item": "floralis:black_cactus" | ||
}, | ||
"result": [ | ||
{ | ||
"item": "floralis:black_cactus", | ||
"chance": 2.0 | ||
} | ||
] | ||
} |
26 changes: 26 additions & 0 deletions
26
src/main/resources/data/thermal/recipes/insolator/black_cactus_seeds.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"type": "thermal:insolator", | ||
"conditions": [ | ||
{ | ||
"type": "forge:mod_loaded", | ||
"modid": "thermal" | ||
} | ||
], | ||
"ingredient": { | ||
"item": "floralis:black_cactus_seeds" | ||
}, | ||
"result": [ | ||
{ | ||
"item": "floralis:black_cactus_seeds", | ||
"chance": 1.0 | ||
}, | ||
{ | ||
"item": "floralis:black_petals", | ||
"chance": 1.0 | ||
}, | ||
{ | ||
"item": "floralis:plant_fibers", | ||
"chance": 1.0 | ||
} | ||
] | ||
} |
18 changes: 18 additions & 0 deletions
18
src/main/resources/data/thermal/recipes/insolator/black_flower.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"type": "thermal:insolator", | ||
"conditions": [ | ||
{ | ||
"type": "forge:mod_loaded", | ||
"modid": "thermal" | ||
} | ||
], | ||
"ingredient": { | ||
"item": "floralis:black_flower" | ||
}, | ||
"result": [ | ||
{ | ||
"item": "floralis:black_flower", | ||
"chance": 2.0 | ||
} | ||
] | ||
} |
26 changes: 26 additions & 0 deletions
26
src/main/resources/data/thermal/recipes/insolator/black_flower_seeds.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"type": "thermal:insolator", | ||
"conditions": [ | ||
{ | ||
"type": "forge:mod_loaded", | ||
"modid": "thermal" | ||
} | ||
], | ||
"ingredient": { | ||
"item": "floralis:black_flower_seeds" | ||
}, | ||
"result": [ | ||
{ | ||
"item": "floralis:black_flower_seeds", | ||
"chance": 1.0 | ||
}, | ||
{ | ||
"item": "floralis:black_petals", | ||
"chance": 1.0 | ||
}, | ||
{ | ||
"item": "floralis:plant_fibers", | ||
"chance": 1.0 | ||
} | ||
] | ||
} |
18 changes: 18 additions & 0 deletions
18
src/main/resources/data/thermal/recipes/insolator/blue_cactus.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"type": "thermal:insolator", | ||
"conditions": [ | ||
{ | ||
"type": "forge:mod_loaded", | ||
"modid": "thermal" | ||
} | ||
], | ||
"ingredient": { | ||
"item": "floralis:blue_cactus" | ||
}, | ||
"result": [ | ||
{ | ||
"item": "floralis:blue_cactus", | ||
"chance": 2.0 | ||
} | ||
] | ||
} |
26 changes: 26 additions & 0 deletions
26
src/main/resources/data/thermal/recipes/insolator/blue_cactus_seeds.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"type": "thermal:insolator", | ||
"conditions": [ | ||
{ | ||
"type": "forge:mod_loaded", | ||
"modid": "thermal" | ||
} | ||
], | ||
"ingredient": { | ||
"item": "floralis:blue_cactus_seeds" | ||
}, | ||
"result": [ | ||
{ | ||
"item": "floralis:blue_cactus_seeds", | ||
"chance": 1.0 | ||
}, | ||
{ | ||
"item": "floralis:blue_petals", | ||
"chance": 1.0 | ||
}, | ||
{ | ||
"item": "floralis:plant_fibers", | ||
"chance": 1.0 | ||
} | ||
] | ||
} |
18 changes: 18 additions & 0 deletions
18
src/main/resources/data/thermal/recipes/insolator/blue_flower.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"type": "thermal:insolator", | ||
"conditions": [ | ||
{ | ||
"type": "forge:mod_loaded", | ||
"modid": "thermal" | ||
} | ||
], | ||
"ingredient": { | ||
"item": "floralis:blue_flower" | ||
}, | ||
"result": [ | ||
{ | ||
"item": "floralis:blue_flower", | ||
"chance": 2.0 | ||
} | ||
] | ||
} |
26 changes: 26 additions & 0 deletions
26
src/main/resources/data/thermal/recipes/insolator/blue_flower_seeds.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"type": "thermal:insolator", | ||
"conditions": [ | ||
{ | ||
"type": "forge:mod_loaded", | ||
"modid": "thermal" | ||
} | ||
], | ||
"ingredient": { | ||
"item": "floralis:blue_flower_seeds" | ||
}, | ||
"result": [ | ||
{ | ||
"item": "floralis:blue_flower_seeds", | ||
"chance": 1.0 | ||
}, | ||
{ | ||
"item": "floralis:blue_petals", | ||
"chance": 1.0 | ||
}, | ||
{ | ||
"item": "floralis:plant_fibers", | ||
"chance": 1.0 | ||
} | ||
] | ||
} |
18 changes: 18 additions & 0 deletions
18
src/main/resources/data/thermal/recipes/insolator/brown_cactus.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"type": "thermal:insolator", | ||
"conditions": [ | ||
{ | ||
"type": "forge:mod_loaded", | ||
"modid": "thermal" | ||
} | ||
], | ||
"ingredient": { | ||
"item": "floralis:brown_cactus" | ||
}, | ||
"result": [ | ||
{ | ||
"item": "floralis:brown_cactus", | ||
"chance": 2.0 | ||
} | ||
] | ||
} |
26 changes: 26 additions & 0 deletions
26
src/main/resources/data/thermal/recipes/insolator/brown_cactus_seeds.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"type": "thermal:insolator", | ||
"conditions": [ | ||
{ | ||
"type": "forge:mod_loaded", | ||
"modid": "thermal" | ||
} | ||
], | ||
"ingredient": { | ||
"item": "floralis:brown_cactus_seeds" | ||
}, | ||
"result": [ | ||
{ | ||
"item": "floralis:brown_cactus_seeds", | ||
"chance": 1.0 | ||
}, | ||
{ | ||
"item": "floralis:brown_petals", | ||
"chance": 1.0 | ||
}, | ||
{ | ||
"item": "floralis:plant_fibers", | ||
"chance": 1.0 | ||
} | ||
] | ||
} |
18 changes: 18 additions & 0 deletions
18
src/main/resources/data/thermal/recipes/insolator/brown_flower.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"type": "thermal:insolator", | ||
"conditions": [ | ||
{ | ||
"type": "forge:mod_loaded", | ||
"modid": "thermal" | ||
} | ||
], | ||
"ingredient": { | ||
"item": "floralis:brown_flower" | ||
}, | ||
"result": [ | ||
{ | ||
"item": "floralis:brown_flower", | ||
"chance": 2.0 | ||
} | ||
] | ||
} |
26 changes: 26 additions & 0 deletions
26
src/main/resources/data/thermal/recipes/insolator/brown_flower_seeds.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"type": "thermal:insolator", | ||
"conditions": [ | ||
{ | ||
"type": "forge:mod_loaded", | ||
"modid": "thermal" | ||
} | ||
], | ||
"ingredient": { | ||
"item": "floralis:brown_flower_seeds" | ||
}, | ||
"result": [ | ||
{ | ||
"item": "floralis:brown_flower_seeds", | ||
"chance": 1.0 | ||
}, | ||
{ | ||
"item": "floralis:brown_petals", | ||
"chance": 1.0 | ||
}, | ||
{ | ||
"item": "floralis:plant_fibers", | ||
"chance": 1.0 | ||
} | ||
] | ||
} |
18 changes: 18 additions & 0 deletions
18
src/main/resources/data/thermal/recipes/insolator/cyan_cactus.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"type": "thermal:insolator", | ||
"conditions": [ | ||
{ | ||
"type": "forge:mod_loaded", | ||
"modid": "thermal" | ||
} | ||
], | ||
"ingredient": { | ||
"item": "floralis:cyan_cactus" | ||
}, | ||
"result": [ | ||
{ | ||
"item": "floralis:cyan_cactus", | ||
"chance": 2.0 | ||
} | ||
] | ||
} |
Oops, something went wrong.