up3
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
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
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user