more tree stuff

This commit is contained in:
Pyritie 2025-09-21 18:59:44 +01:00
parent 0be85a7db0
commit 2dffa5ebd2
4 changed files with 26 additions and 21 deletions

View file

@ -369,6 +369,7 @@ const registerAdAstraBlockTags = (event) => {
event.add('tfg:heightmap_ignore', 'tfg:glacian_log')
event.add('tfg:heightmap_ignore', 'tfg:glacian_wood')
event.add('tfg:heightmap_ignore', 'tfg:glacian_leaves')
event.add('tfg:heightmap_ignore', 'betterend:glacian_hymenophore')
event.add('tfg:heightmap_ignore', 'species:alphacene_moss_block')
event.add('tfg:heightmap_ignore', 'minecraft:ice')

View file

@ -24,4 +24,8 @@ const registerSpeciesItemTags = (event) => {
event.add('species:goober_breed_items', '#forge:mushrooms')
event.add('species:cruncher_eats', '#tfc:foods/meat')
event.add('tfc:compost_greens', 'species:alphacene_mushroom_block')
event.add('tfc:compost_greens_low', 'species:alphacene_mushroom_growth')
event.add('tfc:compost_greens', 'species:alphacene_moss_block')
}

View file

@ -30,9 +30,9 @@ TFCEvents.worldgenData(event => {
'beneath:wood/log/crimson', // fallen log
'beneath:wood/fallen_leaves/crimson', // fallen leaves
[ // ground cover
'2 minecraft:crimson_fungus',
'3 beneath:wood/fallen_leaves/crimson',
'2 beneath:wood/twig/crimson',
'minecraft:crimson_fungus',
'beneath:wood/fallen_leaves/crimson',
'beneath:wood/twig/crimson',
'tfg:groundcover/wraptor_feather',
'tfg:groundcover/glider_feather'
],
@ -60,9 +60,9 @@ TFCEvents.worldgenData(event => {
'beneath:wood/log/warped',
'beneath:wood/fallen_leaves/warped',
[
'2 minecraft:warped_fungus',
'3 beneath:wood/fallen_leaves/warped',
'2 beneath:wood/twig/warped',
'minecraft:warped_fungus',
'beneath:wood/fallen_leaves/warped',
'beneath:wood/twig/warped',
'tfg:groundcover/wraptor_feather',
'tfg:groundcover/glider_feather'
],
@ -84,8 +84,8 @@ TFCEvents.worldgenData(event => {
null,
null,
[
"2 ad_astra:aeronos_mushroom",
'3 tfg:groundcover/aeronos_stick',
"ad_astra:aeronos_mushroom",
'tfg:groundcover/aeronos_stick',
'tfg:groundcover/wraptor_feather',
'tfg:groundcover/glider_feather'
],
@ -107,8 +107,8 @@ TFCEvents.worldgenData(event => {
null,
null,
[
"2 ad_astra:strophar_mushroom",
'3 tfg:groundcover/strophar_stick',
"ad_astra:strophar_mushroom",
'tfg:groundcover/strophar_stick',
'tfg:groundcover/wraptor_feather',
'tfg:groundcover/glider_feather'
],
@ -129,8 +129,8 @@ TFCEvents.worldgenData(event => {
null,
null,
[
"2 species:alphacene_mushroom",
'3 tfg:groundcover/alphacene_stick',
"species:alphacene_mushroom",
'tfg:groundcover/alphacene_stick',
'tfg:groundcover/wraptor_feather',
'tfg:groundcover/glider_feather'
],
@ -151,9 +151,9 @@ TFCEvents.worldgenData(event => {
null,
null,
[
"2 betterend:glacian_hymenophore[facing=up]",
"4 tfg:glacian_leaves_fallen",
'2 tfg:groundcover/glacian_stick'
//"betterend:glacian_hymenophore[facing=up]",
"tfg:glacian_leaves_fallen",
'tfg:groundcover/glacian_stick'
],
'tfg:mars/tree/glacian',
'tfg:mars/tree/glacian_dead',

View file

@ -289,7 +289,7 @@ const registerTFGCrops = (event) => {
event.create('tfg:saplings/crimson', 'tfc:sapling')
.features('tfg:mars/tree/crimson')
.tagBoth('minecraft:sapling')
.tagBoth('minecraft:saplings')
.tagBlock('tfg:do_not_destroy_in_space')
.growthDays(6)
.soundType('nether_wart')
@ -297,7 +297,7 @@ const registerTFGCrops = (event) => {
event.create('tfg:saplings/warped', 'tfc:sapling')
.features('tfg:mars/tree/warped')
.tagBoth('minecraft:sapling')
.tagBoth('minecraft:saplings')
.tagBlock('tfg:do_not_destroy_in_space')
.growthDays(6)
.soundType('nether_wart')
@ -305,7 +305,7 @@ const registerTFGCrops = (event) => {
event.create('tfg:saplings/alphacene', 'tfc:sapling')
.features('species:alphacene_mushroom')
.tagBoth('minecraft:sapling')
.tagBoth('minecraft:saplings')
.tagBlock('tfg:do_not_destroy_in_space')
.growthDays(3)
.soundType('nether_wart')
@ -313,7 +313,7 @@ const registerTFGCrops = (event) => {
event.create('tfg:saplings/strophar', 'tfc:sapling')
.features('tfg:mars/tree/strophar')
.tagBoth('minecraft:sapling')
.tagBoth('minecraft:saplings')
.tagBlock('tfg:do_not_destroy_in_space')
.growthDays(7)
.soundType('nether_wart')
@ -321,7 +321,7 @@ const registerTFGCrops = (event) => {
event.create('tfg:saplings/aeronos', 'tfc:sapling')
.features('tfg:mars/tree/aeronos')
.tagBoth('minecraft:sapling')
.tagBoth('minecraft:saplings')
.tagBlock('tfg:do_not_destroy_in_space')
.growthDays(9)
.soundType('nether_wart')
@ -329,7 +329,7 @@ const registerTFGCrops = (event) => {
event.create('tfg:saplings/glacian', 'tfc:sapling')
.features('tfg:mars/tree/glacian_mini')
.tagBoth('minecraft:sapling')
.tagBoth('minecraft:saplings')
.tagBlock('tfg:do_not_destroy_in_space')
.growthDays(9)
.soundType('nether_wart')