buffed EGH sapling amount

This commit is contained in:
Pyritie 2025-08-14 20:35:38 +01:00
parent f0466e53bd
commit 5ad5a6c892
4 changed files with 9 additions and 5 deletions

View file

@ -8,6 +8,7 @@
- Added backpacks, lunchboxes, and vessels to the toolbelt's blacklist @Pyritie
- Moon rabbits can eat chorus fruit now @Pyritie
- Added electric greenhouse recipes for mushrooms and bamboo (#1610) @Pyritie
- Increased amount of saplings that the electric greenhouse returns to be more in line with create-based tree farms @Pyritie
### Bug fixes
- Fixed moon mob spawning light levels, so now they need a light level of 0 instead of 11 (#1587) @NINAustinFett
- Fixed wrong output amount of mortaring soybean paste (#1607) @TomPlop
@ -16,6 +17,7 @@
- Finally fixed all the issues with upgrading the toolbelt - now you can safely dye and undye, upgrade with and without tools inside it, etc (#368) @Pyritie
- Fixed a dupe with certus quartz @Pyritie
- Moved the golden apple recipe over to the food processor so it respects food expiry data @Pyritie
- Removed some remaining swine-steel crafting recipes @Pyritie
## [0.10.9] - 10-08-2025
### Changes

View file

@ -70,10 +70,10 @@ const registerBeneathRecipes = (event) => {
generateGreenHouseRecipe(event, '8x minecraft:warped_fungus', 'tfg:semiheavy_ammoniacal_water', 16000,
'64x beneath:wood/log/warped', 'tfg:green_house/warped_fungus', 'ad_astra:mars', 8,
'16x minecraft:warped_wart_block', GTValues.VA[GTValues.MV])
'32x minecraft:warped_wart_block', GTValues.VA[GTValues.MV])
generateGreenHouseRecipe(event, '8x minecraft:crimson_fungus', 'tfg:semiheavy_ammoniacal_water', 16000,
'64x beneath:wood/log/crimson', 'tfg:green_house/crimson_fungus', 'ad_astra:mars', 8,
'16x minecraft:nether_wart_block', GTValues.VA[GTValues.MV])
'32x minecraft:nether_wart_block', GTValues.VA[GTValues.MV])
Ingredient.of('#beneath:mushrooms').stacks.forEach(element => {
const itemId = element.id;

View file

@ -58,12 +58,12 @@ const registerTFCRecipes = (event) => {
// Дерево
global.TFC_WOOD_TYPES.forEach(wood => {
generateGreenHouseRecipe(event, `8x tfc:wood/sapling/${wood}`, '#tfc:any_fresh_water', 16000, `64x tfc:wood/log/${wood}`,
`tfg:greenhouse/${wood}`, 'minecraft:overworld', 16, `8x tfc:wood/sapling/${wood}`, GTValues.VH[GTValues.LV])
`tfg:greenhouse/${wood}`, 'minecraft:overworld', 16, `32x tfc:wood/sapling/${wood}`, GTValues.VH[GTValues.LV])
})
global.AFC_SAPLINGS.forEach(x => {
generateGreenHouseRecipe(event, `8x afc:wood/sapling/${x.sapling}`, '#tfc:any_fresh_water', 16000, `64x ${x.log}`,
`tfg:greenhouse/${x.sapling}`, 'minecraft:overworld', 16, `8x afc:wood/sapling/${x.sapling}`, GTValues.VH[GTValues.LV])
`tfg:greenhouse/${x.sapling}`, 'minecraft:overworld', 16, `32x afc:wood/sapling/${x.sapling}`, GTValues.VH[GTValues.LV])
})
// Семена фруктов
@ -90,7 +90,7 @@ const registerTFCRecipes = (event) => {
const recipeId = `greenhouse_${itemId.replace(':', '_')}`;
generateGreenHouseRecipe(event, itemId, '#tfc:any_fresh_water', 8000, `8x ${itemId}`,
recipeId, null, 8, `8x ${itemId}`, GTValues.VH[GTValues.LV]);
recipeId, null, 8, `16x ${itemId}`, GTValues.VH[GTValues.LV]);
});
//#endregion

View file

@ -106,6 +106,7 @@ function registerTFGSpaceRecipes(event) {
.itemOutputs('64x minecraft:chorus_fruit')
.chancedOutput('8x tfg:lunar_chorus_flower', 750, 0)
.chancedOutput('8x tfg:lunar_chorus_flower', 500, 0)
.chancedOutput('8x tfg:lunar_chorus_flower', 750, 0)
.duration(36000) // 30 mins
.circuit(1)
.EUt(GTValues.VA[GTValues.MV])
@ -117,6 +118,7 @@ function registerTFGSpaceRecipes(event) {
.itemOutputs('64x minecraft:chorus_fruit')
.chancedOutput('8x tfg:lunar_chorus_flower', 4000, 0)
.chancedOutput('8x tfg:lunar_chorus_flower', 3000, 0)
.chancedOutput('8x tfg:lunar_chorus_flower', 4000, 0)
.duration(12000) // 10 mins
.circuit(2)
.EUt(GTValues.VA[GTValues.MV])