up3
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
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
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
package item
|
||||
|
||||
import "github.com/sandertv/gophertunnel/minecraft/text"
|
||||
|
||||
// NetheriteIngot is a rare mineral crafted with 4 pieces of netherite scrap and 4 gold ingots.
|
||||
type NetheriteIngot struct{}
|
||||
|
||||
// EncodeItem ...
|
||||
func (NetheriteIngot) EncodeItem() (name string, meta int16) {
|
||||
return "minecraft:netherite_ingot", 0
|
||||
}
|
||||
|
||||
// TrimMaterial ...
|
||||
func (NetheriteIngot) TrimMaterial() string {
|
||||
return "netherite"
|
||||
}
|
||||
|
||||
// MaterialColour ...
|
||||
func (NetheriteIngot) MaterialColour() string {
|
||||
return text.Netherite
|
||||
}
|
||||
|
||||
// PayableForBeacon ...
|
||||
func (NetheriteIngot) PayableForBeacon() bool {
|
||||
return true
|
||||
}
|
||||
Reference in New Issue
Block a user