more glacian tree tweaks

This commit is contained in:
Pyritie 2025-09-21 18:12:45 +01:00
parent 6c7fce23ea
commit d49fe21c5f
8 changed files with 23 additions and 30 deletions

View file

@ -1,5 +1,5 @@
{ {
"type": "tfc:stacked_tree", "type": "afc:trunkless_stacked_tree",
"config": { "config": {
"layers": [ "layers": [
{ {
@ -34,7 +34,7 @@
], ],
"trunk": { "trunk": {
"state": { "state": {
"Name": "tfg:glacian_log" "Name": "tfg:glacian_wood"
}, },
"min_height": 0, "min_height": 0,
"max_height": 1, "max_height": 1,

View file

@ -1,5 +1,5 @@
{ {
"type": "tfc:stacked_tree", "type": "afc:trunkless_stacked_tree",
"config": { "config": {
"layers": [ "layers": [
{ {
@ -20,7 +20,7 @@
], ],
"trunk": { "trunk": {
"state": { "state": {
"Name": "tfg:glacian_log" "Name": "tfg:glacian_wood"
}, },
"min_height": 0, "min_height": 0,
"max_height": 1, "max_height": 1,

View file

@ -4,14 +4,6 @@
"structures": [ "structures": [
"tfg:trees/mossy_glowshroom_mini_1" "tfg:trees/mossy_glowshroom_mini_1"
], ],
"trunk": {
"state": {
"Name": "tfg:glacian_log"
},
"min_height": 0,
"max_height": 1,
"wide": true
},
"placement": { "placement": {
"width": 4, "width": 4,
"height": 10, "height": 10,

View file

@ -2,13 +2,9 @@
"feature": "tfg:mars/tree/glacian", "feature": "tfg:mars/tree/glacian",
"placement": [ "placement": [
{ {
"type": "minecraft:heightmap", "type": "tfc:flat_enough",
"heightmap": "OCEAN_FLOOR" "flatness": 0.8,
}, "radius": 4
{
"type": "minecraft:random_offset",
"xz_spread": 0,
"y_spread": -2
} }
] ]
} }

View file

@ -2,13 +2,9 @@
"feature": "tfg:mars/tree/glacian", "feature": "tfg:mars/tree/glacian",
"placement": [ "placement": [
{ {
"type": "minecraft:heightmap", "type": "tfc:flat_enough",
"heightmap": "OCEAN_FLOOR" "flatness": 0.8,
}, "radius": 4
{
"type": "minecraft:random_offset",
"xz_spread": 0,
"y_spread": -2
} }
] ]
} }

View file

@ -3,7 +3,7 @@
"placement": [ "placement": [
{ {
"type": "tfc:climate", "type": "tfc:climate",
"max_temperature": -85 "max_temperature": -87
}, },
{ {
"type": "minecraft:count", "type": "minecraft:count",

View file

@ -146,7 +146,7 @@ TFCEvents.worldgenData(event => {
climate.maxTemp(-82) climate.maxTemp(-82)
climate.fuzzy(true) climate.fuzzy(true)
}, },
'ad_astra:glacian_log', 'tfg:glacian_wood_stripped',
'tfg:glacian_leaves', 'tfg:glacian_leaves',
null, null,
null, null,
@ -159,7 +159,17 @@ TFCEvents.worldgenData(event => {
'tfg:mars/tree/glacian_dead', 'tfg:mars/tree/glacian_dead',
'tfg:mars/tree/glacian', 'tfg:mars/tree/glacian',
null, null, null, null, null, null, null, null, null, null, null, null,
placement => {} placement => {
placement.flatEnough(flatness => {
flatness.flatness(0.8)
flatness.radius(4)
})
placement.jsonPlacement({
"type": "minecraft:random_offset",
"xz_spread": 0,
"y_spread": -2
})
}
) )
}) })

View file

@ -128,7 +128,6 @@ function registerBetterEndBlocks(event) {
event.create('betterend:glacian_hymenophore', 'tfg:attached_decorative_plant') event.create('betterend:glacian_hymenophore', 'tfg:attached_decorative_plant')
.soundType('crop') .soundType('crop')
.allowVertical(true) .allowVertical(true)
.tagItem('tfg:mars_plants')
.tagBlock('minecraft:replaceable') .tagBlock('minecraft:replaceable')
.tagBlock('tfg:do_not_destroy_in_space') .tagBlock('tfg:do_not_destroy_in_space')