11 lines
No EOL
293 B
JavaScript
11 lines
No EOL
293 B
JavaScript
const registerTFGBlocks = (event) => {
|
|
|
|
event.create('tfg:artificial_end_portal_frame')
|
|
.stoneSoundType()
|
|
.tagBlock('minecraft:mineable/pickaxe')
|
|
.requiresTool(true)
|
|
.fullBlock(true)
|
|
.item(item => {
|
|
item.modelJson({ parent: 'minecraft:block/end_portal_frame' })
|
|
})
|
|
} |