neuralgia/kubejs/startup_scripts/tfg/worldgen/blocks.beneath_deco.js
2025-12-01 23:39:42 +00:00

22 lines
No EOL
558 B
JavaScript

"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')
}