big tidying of startup scripts!

This commit is contained in:
Pyritie 2025-12-01 23:39:42 +00:00
parent bda35f7f6c
commit 0916fd2e21
50 changed files with 2767 additions and 2841 deletions

View file

@ -0,0 +1,22 @@
"use strict";
function registerTFGWorldGenBeneathDecoBlocks(event) {
event.create('tfg:mushroom_roots', 'tfg:decorative_plant')
.soundType('nether_wart')
.tagItem('tfc:plants')
event.create('tfg:mushroom_sprouts', 'tfg:decorative_plant')
.soundType('nether_wart')
.tagItem('tfc:plants')
event.create('tfg:charred_log')
.fullBlock(true)
.woodSoundType()
.property(BlockProperties.AXIS)
.tagBoth('minecraft:mineable/axe')
.tagBoth('tfc:logs_that_log')
.tagBoth('afc:logs_that_log')
.tagBoth('minecraft:logs')
.mapColor('black')
}