github.com/df-mc/dragonfly@v0.9.13/server/item/glistering_melon_slice.go (about)

     1  package item
     2  
     3  // GlisteringMelonSlice is an inedible item used for brewing potions of healing. It is also one of the many potion
     4  // ingredients that can be used to make mundane potions.
     5  type GlisteringMelonSlice struct{}
     6  
     7  // EncodeItem ...
     8  func (GlisteringMelonSlice) EncodeItem() (name string, meta int16) {
     9  	return "minecraft:glistering_melon_slice", 0
    10  }