updated dimension marker for the beneath, new ones for other planets

This commit is contained in:
Pyritie 2025-06-17 01:01:33 +01:00
parent 3148d3ad66
commit a96bbf2b12
21 changed files with 233 additions and 6 deletions

View file

@ -1,5 +1,43 @@
function registerTFGSpaceBlocks(event) {
// Dimension markers
event.create('tfg:marker/moon')
.stoneSoundType()
.item(item => {
item.modelJson({ parent: 'tfg:block/marker/moon' })
})
.tagBlock('minecraft:mineable/pickaxe')
.fullBlock(true)
.opaque(true)
event.create('tfg:marker/mars')
.stoneSoundType()
.item(item => {
item.modelJson({ parent: 'tfg:block/marker/mars' })
})
.tagBlock('minecraft:mineable/pickaxe')
.fullBlock(true)
.opaque(true)
event.create('tfg:marker/venus')
.stoneSoundType()
.item(item => {
item.modelJson({ parent: 'tfg:block/marker/venus' })
})
.tagBlock('minecraft:mineable/pickaxe')
.fullBlock(true)
.opaque(true)
event.create('tfg:marker/mercury')
.stoneSoundType()
.item(item => {
item.modelJson({ parent: 'tfg:block/marker/mercury' })
})
.tagBlock('minecraft:mineable/pickaxe')
.fullBlock(true)
.opaque(true)
// Hardened stones
event.create('tfg:rock/hardened_moon_stone')