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
41 lines
1005 B
Go
41 lines
1005 B
Go
package block
|
|
|
|
import (
|
|
"github.com/df-mc/dragonfly/server/item"
|
|
"github.com/df-mc/dragonfly/server/world"
|
|
)
|
|
|
|
// Concrete is a solid block which comes in the 16 regular dye colors, created by placing concrete powder
|
|
// adjacent to water.
|
|
type Concrete struct {
|
|
solid
|
|
bassDrum
|
|
|
|
// Colour is the colour of the concrete block.
|
|
Colour item.Colour
|
|
}
|
|
|
|
// BreakInfo ...
|
|
func (c Concrete) BreakInfo() BreakInfo {
|
|
return newBreakInfo(1.8, pickaxeHarvestable, pickaxeEffective, oneOf(c))
|
|
}
|
|
|
|
// EncodeItem ...
|
|
func (c Concrete) EncodeItem() (name string, meta int16) {
|
|
return "minecraft:" + c.Colour.String() + "_concrete", 0
|
|
}
|
|
|
|
// EncodeBlock ...
|
|
func (c Concrete) EncodeBlock() (name string, properties map[string]any) {
|
|
return "minecraft:" + c.Colour.String() + "_concrete", nil
|
|
}
|
|
|
|
// allConcrete returns concrete blocks with all possible colours.
|
|
func allConcrete() []world.Block {
|
|
b := make([]world.Block, 0, 16)
|
|
for _, c := range item.Colours() {
|
|
b = append(b, Concrete{Colour: c})
|
|
}
|
|
return b
|
|
}
|