Files
mc/server/item/dragon_breath.go
T

10 lines
241 B
Go
Raw Normal View History

2026-07-09 08:33:57 +08:00
package item
// DragonBreath is a brewing item that is used solely to make lingering potions.
type DragonBreath struct{}
// EncodeItem ...
func (DragonBreath) EncodeItem() (name string, meta int16) {
return "minecraft:dragon_breath", 0
}