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

     1  package item
     2  
     3  // NetheriteIngot is a rare mineral crafted with 4 pieces of netherite scrap and 4 gold ingots.
     4  type NetheriteIngot struct{}
     5  
     6  // EncodeItem ...
     7  func (NetheriteIngot) EncodeItem() (name string, meta int16) {
     8  	return "minecraft:netherite_ingot", 0
     9  }
    10  
    11  // PayableForBeacon ...
    12  func (NetheriteIngot) PayableForBeacon() bool {
    13  	return true
    14  }