#how do i make a crosstexture block

8 messages · Page 1 of 1 (latest)

wintry falcon
#

i'm making a sweetberry bush replacement

empty thicketBOT
#

Once your ticket has been resolved, please close it with </ticket close:1054771505520717835> command!

wintry falcon
#

should look something like this

wintry falcon
#

feel free to ping me

hexed token
#

the model should be cross

wintry falcon
#

figured it out myself thx anyway

wintry falcon
#

StartupEvents.registry('block', event =>{

event.create('berry_bush_stage0')
.displayName('Berry Bush')
.soundType('cherry_leaves')
.requiresTool(false)
.hardness(0.2) // Set hardness (affects mining time)
.resistance(0.2) // Set resistance (to explosions, etc)
.suffocating(false)
.viewBlocking(false)
.opaque(false)
.renderType('cutout_mipped')
.waterlogged()
.notSolid()
.noDrops()
.noCollision()
.model('kubejs:block/berry_bush_stage0')
})