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
38 lines
728 B
Go
38 lines
728 B
Go
package item
|
|
|
|
import "github.com/df-mc/dragonfly/server/world"
|
|
|
|
// Beef is a food item obtained from cows. It can be cooked in a furnace, smoker, or campfire.
|
|
type Beef struct {
|
|
defaultFood
|
|
|
|
// Cooked is whether the beef is cooked.
|
|
Cooked bool
|
|
}
|
|
|
|
// Consume ...
|
|
func (b Beef) Consume(_ *world.Tx, c Consumer) Stack {
|
|
if b.Cooked {
|
|
c.Saturate(8, 12.8)
|
|
} else {
|
|
c.Saturate(3, 1.8)
|
|
}
|
|
return Stack{}
|
|
}
|
|
|
|
// SmeltInfo ...
|
|
func (b Beef) SmeltInfo() SmeltInfo {
|
|
if b.Cooked {
|
|
return SmeltInfo{}
|
|
}
|
|
return newFoodSmeltInfo(NewStack(Beef{Cooked: true}, 1), 0.35)
|
|
}
|
|
|
|
// EncodeItem ...
|
|
func (b Beef) EncodeItem() (name string, meta int16) {
|
|
if b.Cooked {
|
|
return "minecraft:cooked_beef", 0
|
|
}
|
|
return "minecraft:beef", 0
|
|
}
|