Adding stuff related to tree saps + minor fixes (#1531)
* tree juice changes * fixed texture stretch * glacian wool * Update CHANGELOG.md Signed-off-by: GameStar <56610486+BlueBoat29@users.noreply.github.com> * oops * Update glacian_wool.png --------- Signed-off-by: GameStar <56610486+BlueBoat29@users.noreply.github.com>
This commit is contained in:
parent
b42479cd34
commit
d6b0715c52
9 changed files with 32 additions and 1 deletions
|
|
@ -4,6 +4,7 @@
|
||||||
### Changes
|
### Changes
|
||||||
- Added links from quests directly to field guide entries (#854) @Zippity
|
- Added links from quests directly to field guide entries (#854) @Zippity
|
||||||
- Added a second EBF recipe but from LV furnaces @Pyritie
|
- Added a second EBF recipe but from LV furnaces @Pyritie
|
||||||
|
- Added GT machine recipes for maple/birch saps (#1524) @BlueBoat29
|
||||||
### Bug fixes
|
### Bug fixes
|
||||||
- Fixed chain conveyors not connecting (#1520) @BlueBoat29
|
- Fixed chain conveyors not connecting (#1520) @BlueBoat29
|
||||||
- Fixed a crash when opening a world with a railgun logistics monitor (#1526) @Redeix
|
- Fixed a crash when opening a world with a railgun logistics monitor (#1526) @Redeix
|
||||||
|
|
|
||||||
|
|
@ -528,6 +528,7 @@
|
||||||
"item.tfg.universal_compost_browns": "Brown Universal Compost",
|
"item.tfg.universal_compost_browns": "Brown Universal Compost",
|
||||||
"item.tfg.universal_compost_greens": "Green Universal Compost",
|
"item.tfg.universal_compost_greens": "Green Universal Compost",
|
||||||
"item.tfg.etching_diamond_tip": "Etching Diamond Tip",
|
"item.tfg.etching_diamond_tip": "Etching Diamond Tip",
|
||||||
|
"item.tfg.glacian_wool": "Glacian Ram Wool",
|
||||||
"material.tfg.latex": "Latex",
|
"material.tfg.latex": "Latex",
|
||||||
"material.tfg.vulcanized_latex": "Vulcanized Latex",
|
"material.tfg.vulcanized_latex": "Vulcanized Latex",
|
||||||
"material.tfg.fluix": "Fluix",
|
"material.tfg.fluix": "Fluix",
|
||||||
|
|
|
||||||
6
kubejs/assets/tfg/models/item/glacian_wool.json
Normal file
6
kubejs/assets/tfg/models/item/glacian_wool.json
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"parent": "item/generated",
|
||||||
|
"textures": {
|
||||||
|
"layer0": "tfg:item/glacian_wool"
|
||||||
|
}
|
||||||
|
}
|
||||||
Binary file not shown.
|
Before Width: | Height: | Size: 5.5 KiB After Width: | Height: | Size: 5.8 KiB |
BIN
kubejs/assets/tfg/textures/item/glacian_wool.png
Normal file
BIN
kubejs/assets/tfg/textures/item/glacian_wool.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 5.7 KiB |
|
|
@ -269,7 +269,7 @@ const registerAdAstraRecipes = (event) => {
|
||||||
.itemInputs(
|
.itemInputs(
|
||||||
'gtceu:carbon_fiber_mesh',
|
'gtceu:carbon_fiber_mesh',
|
||||||
'#forge:aerogels',
|
'#forge:aerogels',
|
||||||
'tfc:wool'//replace with glacian wool
|
'tfg:glacian_wool'
|
||||||
)
|
)
|
||||||
.itemOutputs('2x tfg:better_space_suit_fabric')
|
.itemOutputs('2x tfg:better_space_suit_fabric')
|
||||||
.duration(20 * 5)
|
.duration(20 * 5)
|
||||||
|
|
|
||||||
|
|
@ -246,6 +246,21 @@ const registerAFCRecipes = (event) => {
|
||||||
|
|
||||||
//#endregion
|
//#endregion
|
||||||
|
|
||||||
|
//region gt sap processing
|
||||||
|
event.recipes.gtceu.fluid_heater('maple_sap_condense')
|
||||||
|
.inputFluids(Fluid.of('afc:maple_sap', 4000))
|
||||||
|
.outputFluids(Fluid.of('afc:maple_syrup', 100))
|
||||||
|
.duration(20*25)
|
||||||
|
.EUt(GTValues.VA[GTValues.ULV])
|
||||||
|
event.recipes.gtceu.fluid_heater('birch_sap_condense')
|
||||||
|
.inputFluids(Fluid.of('afc:birch_sap', 8000))
|
||||||
|
.outputFluids(Fluid.of('afc:birch_syrup', 100))
|
||||||
|
.duration(20*35)
|
||||||
|
.EUt(GTValues.VA[GTValues.ULV])
|
||||||
|
|
||||||
|
|
||||||
|
//endregion
|
||||||
|
|
||||||
event.recipes.gtceu.fluid_solidifier('maple_syrup')
|
event.recipes.gtceu.fluid_solidifier('maple_syrup')
|
||||||
.inputFluids(Fluid.of('afc:maple_syrup', 100))
|
.inputFluids(Fluid.of('afc:maple_syrup', 100))
|
||||||
.itemOutputs('afc:maple_sugar')
|
.itemOutputs('afc:maple_sugar')
|
||||||
|
|
|
||||||
|
|
@ -44,6 +44,13 @@ function registerTFGMiscellaneousRecipes(event) {
|
||||||
.itemOutput('tfg:conifer_rosin')
|
.itemOutput('tfg:conifer_rosin')
|
||||||
.id('tfg:pot/conifer_pitch_to_rosin')
|
.id('tfg:pot/conifer_pitch_to_rosin')
|
||||||
|
|
||||||
|
event.recipes.gtceu.fluid_solidifier('tfg:pitch_to_rosin')
|
||||||
|
.inputFluids(Fluid.of('tfg:conifer_pitch', 1000))
|
||||||
|
.itemInputs('tfc:powder/charcoal')
|
||||||
|
.itemOutputs('tfg:conifer_rosin')
|
||||||
|
.duration(20*24)
|
||||||
|
.EUt(GTValues.VA[GTValues.LV])
|
||||||
|
|
||||||
// Decorative Vases
|
// Decorative Vases
|
||||||
global.MINECRAFT_DYE_NAMES.forEach(color => {
|
global.MINECRAFT_DYE_NAMES.forEach(color => {
|
||||||
event.recipes.gtceu.chemical_bath(`tfg:chemical_bath/dyeing/decorative_vase/unfired/${color}`)
|
event.recipes.gtceu.chemical_bath(`tfg:chemical_bath/dyeing/decorative_vase/unfired/${color}`)
|
||||||
|
|
|
||||||
|
|
@ -368,6 +368,7 @@ const registerTFGItems = (event) => {
|
||||||
event.create('tfg:elite_power_thruster')
|
event.create('tfg:elite_power_thruster')
|
||||||
|
|
||||||
event.create('tfg:better_space_suit_fabric')
|
event.create('tfg:better_space_suit_fabric')
|
||||||
|
event.create('tfg:glacian_wool')
|
||||||
//endregion
|
//endregion
|
||||||
|
|
||||||
//#region Universal compost items
|
//#region Universal compost items
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue