update tfc + first stonetype

This commit is contained in:
SpeeeDCraft 2023-09-22 09:18:11 +07:00
parent 04c0437901
commit 95484fe67e
7 changed files with 375 additions and 359 deletions

View file

@ -1,6 +0,0 @@
// priority: 0
// Visit the wiki for more info - https://kubejs.com/
console.info('Hello, World! (Loaded startup scripts)')

View file

@ -0,0 +1,11 @@
// priority: 0
GTCEuStartupEvents.registry('gtceu:tag_prefix', event => {
event.create('tfc_claystone', 'ore')
.stateSupplier(() => Block.getBlock('tfc:rock/raw/claystone').defaultBlockState())
.sound(SoundType.STONE)
.unificationEnabled(true)
.materialIconType(GTMaterialIconType.ore)
.generationCondition(ItemGenerationCondition.hasOreProperty)
})