44 lines
1.0 KiB
Go
44 lines
1.0 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"
|
||
|
|
"time"
|
||
|
|
)
|
||
|
|
|
||
|
|
// CraftingTable is a utility block that allows the player to craft a variety of blocks and items.
|
||
|
|
type CraftingTable struct {
|
||
|
|
bass
|
||
|
|
solid
|
||
|
|
}
|
||
|
|
|
||
|
|
// EncodeItem ...
|
||
|
|
func (c CraftingTable) EncodeItem() (name string, meta int16) {
|
||
|
|
return "minecraft:crafting_table", 0
|
||
|
|
}
|
||
|
|
|
||
|
|
// EncodeBlock ...
|
||
|
|
func (c CraftingTable) EncodeBlock() (name string, properties map[string]interface{}) {
|
||
|
|
return "minecraft:crafting_table", nil
|
||
|
|
}
|
||
|
|
|
||
|
|
// BreakInfo ...
|
||
|
|
func (c CraftingTable) BreakInfo() BreakInfo {
|
||
|
|
return newBreakInfo(2.5, alwaysHarvestable, axeEffective, oneOf(c))
|
||
|
|
}
|
||
|
|
|
||
|
|
// FuelInfo ...
|
||
|
|
func (CraftingTable) FuelInfo() item.FuelInfo {
|
||
|
|
return newFuelInfo(time.Second * 15)
|
||
|
|
}
|
||
|
|
|
||
|
|
// Activate ...
|
||
|
|
func (c CraftingTable) Activate(pos cube.Pos, _ cube.Face, tx *world.Tx, u item.User, _ *item.UseContext) bool {
|
||
|
|
if opener, ok := u.(ContainerOpener); ok {
|
||
|
|
opener.OpenBlockContainer(pos, tx)
|
||
|
|
return true
|
||
|
|
}
|
||
|
|
return false
|
||
|
|
}
|