Skip to content

Commit d6b0715

Browse files
authored
Adding stuff related to tree saps + minor fixes (#1531)
* tree juice changes * fixed texture stretch * glacian wool * Update CHANGELOG.md Signed-off-by: GameStar <[email protected]> * oops * Update glacian_wool.png --------- Signed-off-by: GameStar <[email protected]>
1 parent b42479c commit d6b0715

File tree

9 files changed

+32
-1
lines changed

9 files changed

+32
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
### Changes
55
- Added links from quests directly to field guide entries (#854) @Zippity
66
- Added a second EBF recipe but from LV furnaces @Pyritie
7+
- Added GT machine recipes for maple/birch saps (#1524) @BlueBoat29
78
### Bug fixes
89
- Fixed chain conveyors not connecting (#1520) @BlueBoat29
910
- Fixed a crash when opening a world with a railgun logistics monitor (#1526) @Redeix

kubejs/assets/tfg/lang/en_us.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -528,6 +528,7 @@
528528
"item.tfg.universal_compost_browns": "Brown Universal Compost",
529529
"item.tfg.universal_compost_greens": "Green Universal Compost",
530530
"item.tfg.etching_diamond_tip": "Etching Diamond Tip",
531+
"item.tfg.glacian_wool": "Glacian Ram Wool",
531532
"material.tfg.latex": "Latex",
532533
"material.tfg.vulcanized_latex": "Vulcanized Latex",
533534
"material.tfg.fluix": "Fluix",
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"parent": "item/generated",
3+
"textures": {
4+
"layer0": "tfg:item/glacian_wool"
5+
}
6+
}
250 Bytes
Loading
5.67 KB
Loading

kubejs/server_scripts/ad_astra/recipes.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ const registerAdAstraRecipes = (event) => {
269269
.itemInputs(
270270
'gtceu:carbon_fiber_mesh',
271271
'#forge:aerogels',
272-
'tfc:wool'//replace with glacian wool
272+
'tfg:glacian_wool'
273273
)
274274
.itemOutputs('2x tfg:better_space_suit_fabric')
275275
.duration(20 * 5)

kubejs/server_scripts/afc/recipes.js

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,21 @@ const registerAFCRecipes = (event) => {
246246

247247
//#endregion
248248

249+
//region gt sap processing
250+
event.recipes.gtceu.fluid_heater('maple_sap_condense')
251+
.inputFluids(Fluid.of('afc:maple_sap', 4000))
252+
.outputFluids(Fluid.of('afc:maple_syrup', 100))
253+
.duration(20*25)
254+
.EUt(GTValues.VA[GTValues.ULV])
255+
event.recipes.gtceu.fluid_heater('birch_sap_condense')
256+
.inputFluids(Fluid.of('afc:birch_sap', 8000))
257+
.outputFluids(Fluid.of('afc:birch_syrup', 100))
258+
.duration(20*35)
259+
.EUt(GTValues.VA[GTValues.ULV])
260+
261+
262+
//endregion
263+
249264
event.recipes.gtceu.fluid_solidifier('maple_syrup')
250265
.inputFluids(Fluid.of('afc:maple_syrup', 100))
251266
.itemOutputs('afc:maple_sugar')

kubejs/server_scripts/tfg/recipes.miscellaneous.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,13 @@ function registerTFGMiscellaneousRecipes(event) {
4343
event.recipes.tfc.pot('tfc:powder/charcoal', Fluid.of('tfg:conifer_pitch', 1000), 1200, 300)
4444
.itemOutput('tfg:conifer_rosin')
4545
.id('tfg:pot/conifer_pitch_to_rosin')
46+
47+
event.recipes.gtceu.fluid_solidifier('tfg:pitch_to_rosin')
48+
.inputFluids(Fluid.of('tfg:conifer_pitch', 1000))
49+
.itemInputs('tfc:powder/charcoal')
50+
.itemOutputs('tfg:conifer_rosin')
51+
.duration(20*24)
52+
.EUt(GTValues.VA[GTValues.LV])
4653

4754
// Decorative Vases
4855
global.MINECRAFT_DYE_NAMES.forEach(color => {

kubejs/startup_scripts/tfg/items.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -368,6 +368,7 @@ const registerTFGItems = (event) => {
368368
event.create('tfg:elite_power_thruster')
369369

370370
event.create('tfg:better_space_suit_fabric')
371+
event.create('tfg:glacian_wool')
371372
//endregion
372373

373374
//#region Universal compost items

0 commit comments

Comments
 (0)