26ed99fda6
Build and deploy / Build (push) Has been cancelled
Build and deploy / Update Contributors (push) Has been cancelled
Build and deploy / Deploy (push) Has been cancelled
74 lines
1.8 KiB
Go
74 lines
1.8 KiB
Go
package block
|
|
|
|
import (
|
|
"github.com/df-mc/dragonfly/server/block/cube"
|
|
"github.com/df-mc/dragonfly/server/item"
|
|
"github.com/df-mc/dragonfly/server/world"
|
|
"github.com/go-gl/mathgl/mgl64"
|
|
"math/rand/v2"
|
|
)
|
|
|
|
// DeadBush is a transparent block in the form of an aesthetic plant.
|
|
type DeadBush struct {
|
|
empty
|
|
replaceable
|
|
transparent
|
|
sourceWaterDisplacer
|
|
}
|
|
|
|
// NeighbourUpdateTick ...
|
|
func (d DeadBush) NeighbourUpdateTick(pos, _ cube.Pos, tx *world.Tx) {
|
|
if !supportsVegetation(d, tx.Block(pos.Side(cube.FaceDown))) {
|
|
breakBlock(d, pos, tx)
|
|
}
|
|
}
|
|
|
|
// UseOnBlock ...
|
|
func (d DeadBush) UseOnBlock(pos cube.Pos, face cube.Face, _ mgl64.Vec3, tx *world.Tx, user item.User, ctx *item.UseContext) bool {
|
|
pos, _, used := firstReplaceable(tx, pos, face, d)
|
|
if !used || !supportsVegetation(d, tx.Block(pos.Side(cube.FaceDown))) {
|
|
return false
|
|
}
|
|
|
|
place(tx, pos, d, user, ctx)
|
|
return placed(ctx)
|
|
}
|
|
|
|
// SideClosed ...
|
|
func (d DeadBush) SideClosed(cube.Pos, cube.Pos, *world.Tx) bool {
|
|
return false
|
|
}
|
|
|
|
// HasLiquidDrops ...
|
|
func (d DeadBush) HasLiquidDrops() bool {
|
|
return true
|
|
}
|
|
|
|
// FlammabilityInfo ...
|
|
func (d DeadBush) FlammabilityInfo() FlammabilityInfo {
|
|
return newFlammabilityInfo(60, 100, true)
|
|
}
|
|
|
|
// BreakInfo ...
|
|
func (d DeadBush) BreakInfo() BreakInfo {
|
|
return newBreakInfo(0, alwaysHarvestable, nothingEffective, func(t item.Tool, enchantments []item.Enchantment) []item.Stack {
|
|
if t.ToolType() == item.TypeShears {
|
|
return []item.Stack{item.NewStack(d, 1)}
|
|
}
|
|
if amount := rand.IntN(3); amount != 0 {
|
|
return []item.Stack{item.NewStack(item.Stick{}, amount)}
|
|
}
|
|
return nil
|
|
})
|
|
}
|
|
|
|
// EncodeItem ...
|
|
func (d DeadBush) EncodeItem() (name string, meta int16) {
|
|
return "minecraft:deadbush", 0
|
|
}
|
|
|
|
// EncodeBlock ...
|
|
func (d DeadBush) EncodeBlock() (string, map[string]any) {
|
|
return "minecraft:deadbush", nil
|
|
}
|