* bare bones

* snow piled tag

* added climate restriction to quicksand, added powder snow up north

* better tagging

* langs

* assets

* missed feature in deep desert

* remove waves from mars

* climate tweaks

* icicles and dry ice stuff

* langs
This commit is contained in:
Pyritie 2025-09-30 18:15:35 +01:00 committed by GitHub
parent ca46b12ebe
commit 16ae9167a8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
35 changed files with 235 additions and 65 deletions

View file

@ -66,12 +66,12 @@ function registerBetterEndBlocks(event) {
// 1 block tall waterlogged
createPlant(event, 'charnia_orange', 'mars')
createPlant(event, 'charnia_cyan', 'mars')
createPlant(event, 'charnia_green', 'mars')
createPlant(event, 'charnia_light_blue', 'mars')
createPlant(event, 'charnia_purple', 'mars')
createPlant(event, 'charnia_red', 'mars')
createWaterPlant(event, 'charnia_orange', 'mars')
createWaterPlant(event, 'charnia_cyan', 'mars')
createWaterPlant(event, 'charnia_green', 'mars')
createWaterPlant(event, 'charnia_light_blue', 'mars')
createWaterPlant(event, 'charnia_purple', 'mars')
createWaterPlant(event, 'charnia_red', 'mars')
// Water surface
@ -83,6 +83,7 @@ function registerBetterEndBlocks(event) {
.tagItem('forge:mushrooms')
.tagBlock('tfg:do_not_destroy_in_space')
.tagBlock('minecraft:replaceable')
.tagBlock('tfc:can_be_ice_piled')
event.create('betterend:lacugrove', 'tfg:floating_decorative_plant')
.xz_offset(false)
@ -92,6 +93,7 @@ function registerBetterEndBlocks(event) {
.tagItem('tfg:mars_plants')
.tagBlock('tfg:do_not_destroy_in_space')
.tagBlock('minecraft:replaceable')
.tagBlock('tfc:can_be_ice_piled')
// Mosses / Can go on sides of blocks
@ -222,4 +224,18 @@ function createPlant(event, id, planet) {
.tagItem(`tfg:${planet}_plants`)
.tagBlock('minecraft:replaceable')
.tagBlock('tfg:do_not_destroy_in_space')
.tagBlock('tfc:can_be_snow_piled')
}
/**
* @param {any} event
* @param {string} id
* @param {string} planet
*/
function createWaterPlant(event, id, planet) {
return event.create(`betterend:${id}`, 'tfg:decorative_plant')
.tagItem(`tfg:${planet}_plants`)
.tagBlock('minecraft:replaceable')
.tagBlock('tfg:do_not_destroy_in_space')
.tagBlock('tfc:can_be_ice_piled')
}