Skip to content

Commit 3dbb282

Browse files
committed
2 parents 1dce4d7 + 140c553 commit 3dbb282

File tree

12 files changed

+68
-35
lines changed

12 files changed

+68
-35
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",

kubejs/assets/tfg/models/block/machines/hv_aqueous_accumulator.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
},
2828
"recipe_logic_status=waiting": {
2929
"model": {
30-
"parent": "tfg:block/casings/voltage/hv",
30+
"parent": "gtceu:block/casings/voltage/hv",
3131
"textures": {
3232
"overlay_front": "tfg:block/machines/aqueous_accumulator/overlay_front_active",
3333
"overlay_front_emissive": "tfg:block/machines/aqueous_accumulator/overlay_front_active_emissive",

kubejs/assets/tfg/models/block/machines/lv_aqueous_accumulator.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
},
2828
"recipe_logic_status=waiting": {
2929
"model": {
30-
"parent": "tfg:block/casings/voltage/lv",
30+
"parent": "gtceu:block/casings/voltage/lv",
3131
"textures": {
3232
"overlay_front": "tfg:block/machines/aqueous_accumulator/overlay_front_active",
3333
"overlay_front_emissive": "tfg:block/machines/aqueous_accumulator/overlay_front_active_emissive",
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
Lines changed: 34 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,37 @@
11
{
2-
"feature": "tfg:venus/terrain/lava_delta",
3-
"placement": [
4-
{
5-
"type": "minecraft:count",
6-
"count": 1
7-
},
8-
{
9-
"type": "minecraft:rarity_filter",
10-
"chance": 3
11-
},
12-
{
13-
"type": "minecraft:height_range",
14-
"height": {
15-
"type": "minecraft:uniform",
16-
"max_inclusive": {
17-
"absolute": 200
18-
},
19-
"min_inclusive": {
20-
"above_bottom": 54
21-
}
22-
}
23-
},
24-
{
25-
"type": "minecraft:heightmap",
26-
"heightmap": "WORLD_SURFACE"
27-
},
28-
{
29-
"type": "minecraft:in_square"
30-
},
31-
{
32-
"type": "minecraft:biome"
2+
"feature": "tfg:venus/terrain/lava_delta",
3+
"placement": [
4+
{
5+
"type": "minecraft:noise_based_count",
6+
"noise_to_count_ratio": 1,
7+
"noise_factor": 1,
8+
"noise_offset": 3
9+
},
10+
{
11+
"type": "minecraft:rarity_filter",
12+
"chance": 3
13+
},
14+
{
15+
"type": "minecraft:height_range",
16+
"height": {
17+
"type": "minecraft:uniform",
18+
"max_inclusive": {
19+
"absolute": 200
20+
},
21+
"min_inclusive": {
22+
"above_bottom": 54
3323
}
34-
]
24+
}
25+
},
26+
{
27+
"type": "minecraft:heightmap",
28+
"heightmap": "WORLD_SURFACE"
29+
},
30+
{
31+
"type": "minecraft:in_square"
32+
},
33+
{
34+
"type": "minecraft:biome"
35+
}
36+
]
3537
}

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')

0 commit comments

Comments
 (0)