buff mars greenhouses so they output the same amount of logs as earth trees

This commit is contained in:
Pyritie 2026-01-21 22:22:40 +00:00
parent 6c9418949f
commit 0c146a673f
3 changed files with 14 additions and 5 deletions

View file

@ -13,12 +13,14 @@
- Other recipe and tag unifications for consistency, like all cobbles should landslide, all slabs should be craftable the same way, etc
### Changes
- Fixed balancing issues with the Aquaponics Loop. @Redeix
- Mars log electric greenhouse recipes now output the same amount of logs as earth log recipes @Pyritie
### Bug fixes
- Fixed a config bug causing waves to deposit shells etc with 100% chance. @Mqrius
- Fixed a bug preventing the Pisciculture Fishery and Hydroponics Facility from overclocking. @Redeix
- Fixed not being able to make glass tubes out of glass dust (#2795) @thederpysockdude123
- Fixed roads losing their movement speed bonus (#2790) @Pyritie
- Fixed water wheels misbehaving again (#2791) @Pyritie
- Fixed not being able to cast steel or higher tier materials into ceramic molds (#2789, #2794) @Pyritie
### Translation updates
- Spanish @NikoNeko17

View file

@ -504,22 +504,22 @@ const registerTFGGreenhouseRecipes = (event) => {
// Mars Wood
generateGreenHouseRecipe(event, 'ad_astra:mars', '8x tfg:saplings/strophar', [
'64x ad_astra:strophar_stem', '4x tfg:saplings/strophar', '16x ad_astra:strophar_cap', '16x ad_astra:strophar_cap'
'64x ad_astra:strophar_stem', '4x tfg:saplings/strophar', '32x ad_astra:strophar_stem', '16x ad_astra:strophar_cap'
], 1);
generateGreenHouseRecipe(event, 'ad_astra:mars', '8x tfg:saplings/aeronos', [
'64x ad_astra:aeronos_stem', '4x tfg:saplings/aeronos', '16x ad_astra:aeronos_cap', '16x ad_astra:aeronos_cap'
'64x ad_astra:aeronos_stem', '4x tfg:saplings/aeronos', '32x ad_astra:aeronos_stem', '16x ad_astra:aeronos_cap'
], 1);
generateGreenHouseRecipe(event, 'ad_astra:mars', '8x tfg:saplings/glacian', [
'64x ad_astra:glacian_log', '4x tfg:saplings/glacian', '16x species:alphacene_moss_block', '16x species:alphacene_moss_block'
'64x ad_astra:glacian_log', '4x tfg:saplings/glacian', '32x ad_astra:glacian_log', '16x species:alphacene_moss_block'
], 1);
generateGreenHouseRecipe(event, 'ad_astra:mars', '8x tfg:saplings/alphacene', [
'64x species:alphacene_mushroom_block', '4x tfg:saplings/alphacene', '16x minecraft:mushroom_stem', '16x minecraft:mushroom_stem'
], 1);
generateGreenHouseRecipe(event, 'ad_astra:mars', '8x tfg:saplings/warped', [
'64x beneath:wood/log/warped', '4x tfg:saplings/warped', '16x minecraft:warped_wart_block', '16x minecraft:warped_wart_block'
'64x beneath:wood/log/warped', '4x tfg:saplings/warped', '32x beneath:wood/log/warped', '16x minecraft:warped_wart_block'
], 1);
generateGreenHouseRecipe(event, 'ad_astra:mars', '8x tfg:saplings/crimson', [
'64x beneath:wood/log/crimson', '4x tfg:saplings/crimson', '16x minecraft:nether_wart_block', '16x minecraft:nether_wart_block'
'64x beneath:wood/log/crimson', '4x tfg:saplings/crimson', '32x beneath:wood/log/crimson', '16x minecraft:nether_wart_block'
], 1);
// Mars Plants

View file

@ -107,6 +107,13 @@ function registerTFGMarsItemTags(event) {
event.add('tfg:charnia', 'betterend:charnia_light_blue')
event.add('tfg:charnia', 'betterend:charnia_purple')
event.add('tfg:charnia', 'betterend:charnia_red')
event.add('tfg:mars_plants', 'minecraft:weeping_vines')
event.add('tfc:compost_greens_low', 'beneath:wood/leaves/crimson')
event.add('tfc:compost_greens_low', 'beneath:wood/leaves/warped')
event.add('tfc:compost_greens_low', 'tfg:glacian_leaves')
event.add('tfc:compost_greens_low', '#tfg:mars_plants')
}
function registerTFGMarsBlockTags(event) {