Files
mc/server/item/tropical_fish.go
T

20 lines
394 B
Go
Raw Normal View History

2026-07-09 08:33:57 +08:00
package item
import "github.com/df-mc/dragonfly/server/world"
// TropicalFish is a food item that cannot be cooked.
type TropicalFish struct {
defaultFood
}
// Consume ...
func (TropicalFish) Consume(_ *world.Tx, c Consumer) Stack {
c.Saturate(1, 0.2)
return Stack{}
}
// EncodeItem ...
func (TropicalFish) EncodeItem() (name string, meta int16) {
return "minecraft:tropical_fish", 0
}